79 lines
3.7 KiB
XML
79 lines
3.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layout>
|
|
<data>
|
|
<variable
|
|
name="viewModel"
|
|
type="com.tommasoberlose.anotherwidget.ui.viewmodels.IntegrationsViewModel" />
|
|
</data>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:background="@color/colorPrimaryDark"
|
|
tools:context="com.tommasoberlose.anotherwidget.ui.activities.IntegrationsActivity">
|
|
<com.google.android.material.card.MaterialCardView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:cardElevation="2dp"
|
|
app:cardCornerRadius="0dp"
|
|
android:id="@+id/toolbar"
|
|
app:cardBackgroundColor="@color/colorPrimary">
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="56dp"
|
|
android:gravity="center_vertical"
|
|
android:paddingLeft="8dp"
|
|
android:paddingRight="8dp">
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"
|
|
android:padding="10dp"
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
|
android:layout_centerVertical="true"
|
|
android:id="@+id/action_back"
|
|
android:layout_alignParentLeft="true"
|
|
app:tint="@color/colorPrimaryText"
|
|
android:src="@drawable/round_arrow_back" />
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_centerInParent="true"
|
|
android:text="@string/settings_title_integrations"
|
|
android:gravity="center"
|
|
style="@style/AnotherWidget.Main.Title"/>
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"
|
|
android:padding="10dp"
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
|
android:layout_centerVertical="true"
|
|
android:id="@+id/action_filter"
|
|
android:layout_alignParentRight="true"
|
|
android:visibility="gone"
|
|
app:tint="@color/colorPrimaryText"
|
|
android:src="@drawable/round_filter_list" />
|
|
</RelativeLayout>
|
|
</com.google.android.material.card.MaterialCardView>
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1">
|
|
<androidx.core.widget.ContentLoadingProgressBar
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:indeterminate="true"
|
|
android:indeterminateTint="@color/colorAccent"
|
|
android:layout_marginTop="-7dp"
|
|
android:id="@+id/loader"
|
|
style="@style/Widget.AppCompat.ProgressBar.Horizontal" />
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:id="@+id/list_view" />
|
|
</RelativeLayout>
|
|
</LinearLayout>
|
|
|
|
</layout> |