2020-10-23 20:13:13 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:id="@+id/layoutReportingView"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:background="?attr/primaryBackgroundColor">
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
android:id="@+id/appbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:theme="@style/Widget.AppCompat.SearchView">
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/primaryBackgroundColor"
|
|
|
|
android:theme="@style/AppTheme.AppBarOverlay">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/close"
|
|
|
|
android:layout_width="@dimen/close_button_size"
|
|
|
|
android:layout_height="@dimen/close_button_size"
|
|
|
|
android:layout_marginRight="15dp"
|
|
|
|
android:layout_marginLeft="15dp"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:contentDescription="@string/close"
|
|
|
|
android:src="@drawable/ic_close" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/toolbarTitle"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:text="@string/settingsGeneralHeader"
|
|
|
|
android:textColor="?attr/primaryTextColor"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:textSize="20sp" />
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.MaterialToolbar>
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/setDefaultLinkHandler"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="15dp"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/generalDeepLinkDefaultScreen"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textSize="16sp"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:layout_marginStart="44dp"
|
|
|
|
android:layout_marginEnd="24dp"
|
|
|
|
android:text="@string/generalDeepLinkDefaultScreen"
|
|
|
|
android:textColor="?attr/primaryTextColor"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="5dp"
|
|
|
|
android:layout_marginBottom="5dp"
|
|
|
|
android:layout_marginStart="44dp"
|
|
|
|
android:layout_marginEnd="44dp"
|
|
|
|
android:text="@string/generalDeepLinkDefaultScreenHintText"
|
|
|
|
android:textSize="12sp"
|
|
|
|
android:textColor="?attr/hintColor" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/generalDeepLinkSelected"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textSize="14sp"
|
|
|
|
android:layout_marginStart="44dp"
|
|
|
|
android:layout_marginEnd="24dp"
|
|
|
|
android:text="@string/generalDeepLinkSelectedText"
|
|
|
|
android:textColor="?attr/selectedTextColor"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2020-10-29 14:13:19 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/homeScreenFrame"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="15dp"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/homeScreenHeaderSelector"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textSize="16sp"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:layout_marginStart="44dp"
|
|
|
|
android:layout_marginEnd="24dp"
|
|
|
|
android:text="@string/settingsHomeScreenHeaderText"
|
|
|
|
android:textColor="?attr/primaryTextColor"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/homeScreenSelected"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textSize="14sp"
|
|
|
|
android:layout_marginStart="44dp"
|
|
|
|
android:layout_marginEnd="24dp"
|
|
|
|
android:text="@string/settingsHomeScreenSelectedText"
|
|
|
|
android:textColor="?attr/selectedTextColor"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2020-10-23 20:13:13 +02:00
|
|
|
</LinearLayout>
|