mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-12-17 14:12:00 +03:00
05586ccf47
Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
62 lines
2.3 KiB
XML
62 lines
2.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?><!--
|
|
|
|
Nextcloud Android client application
|
|
|
|
Copyright (C) 2020 Andy Scherzinger
|
|
Copyright (C) 2020 Tobias Kaminsky
|
|
Copyright (C) 2020 Nextcloud GmbH
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
-->
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="48dp">
|
|
|
|
<TextView
|
|
android:id="@+id/icon"
|
|
android:layout_width="48dp"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:textSize="25sp"
|
|
tools:text="📆" />
|
|
|
|
<TextView
|
|
android:id="@+id/name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center_vertical"
|
|
android:textAppearance="?android:attr/textAppearanceListItem"
|
|
tools:text="In a meeting" />
|
|
|
|
<TextView
|
|
android:id="@+id/divider"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_margin="@dimen/standard_half_margin"
|
|
android:gravity="center_vertical"
|
|
android:text="@string/divider"
|
|
android:textAppearance="?android:attr/textAppearanceListItem"
|
|
android:textColor="?android:attr/textColorSecondary" />
|
|
|
|
<TextView
|
|
android:id="@+id/clearAt"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center_vertical"
|
|
android:textAppearance="?android:attr/textAppearanceListItem"
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
tools:text="an hour" />
|
|
</LinearLayout>
|