1
0
mirror of https://github.com/wulkanowy/wulkanowy.git synced 2024-09-21 04:29:09 -05:00
wulkanowy-mirror/app/src/main/res/layout/activity_widget_configure.xml

31 lines
1.1 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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="280dp"
android:layout_height="wrap_content">
2019-08-26 13:54:20 -05:00
<TextView
2019-04-29 07:33:33 -05:00
android:id="@+id/widgetConfigureTitle"
android:layout_width="match_parent"
android:layout_height="64dp"
android:paddingStart="24dp"
android:paddingLeft="24dp"
android:paddingEnd="24dp"
android:paddingRight="24dp"
android:text="@string/account_title"
android:textSize="20sp"
android:textStyle="bold"
app:firstBaselineToTopHeight="40dp" />
<androidx.recyclerview.widget.RecyclerView
2019-04-29 07:33:33 -05:00
android:id="@+id/widgetConfigureRecycler"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2019-04-29 07:33:33 -05:00
android:layout_below="@id/widgetConfigureTitle"
android:layout_marginBottom="16dp"
android:overScrollMode="never"
tools:itemCount="3"
tools:listitem="@layout/item_account" />
</RelativeLayout>