wedroid/app/src/main/res/layout/wlist_recyclerview_item.xml

28 lines
909 B
XML
Raw Normal View History

2019-12-29 18:06:12 +00:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2020-01-02 19:03:26 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
2019-12-29 18:06:12 +00:00
<TextView
android:id="@+id/wListTitle"
android:layout_width="match_parent"
2020-01-02 19:03:26 +00:00
android:layout_height="match_parent"
android:background="#BBDEFB"
android:orientation="horizontal"
android:textAlignment="center"
android:textSize="24sp"
android:textStyle="bold" />
<ListView
android:id="@+id/listViewCard"
android:layout_width="match_parent"
android:layout_height="match_parent" />
2020-01-03 22:23:48 +00:00
<Button
android:id="@+id/buttonAddCard"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/add_card_button" />
2019-12-29 18:06:12 +00:00
</LinearLayout>