AquaStream/app/src/main/res/layout/account_switch.xml

25 lines
985 B
XML
Raw Normal View History

2021-11-08 18:13:39 +00:00
<?xml version="1.0" encoding="utf-8"?>
2022-01-29 18:57:19 +00:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
2021-11-08 18:13:39 +00:00
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/account_list"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
android:background="?attr/primaryBlackBackground"
tools:listitem="@layout/account_single"
android:layout_width="match_parent"
android:layout_rowWeight="1"
2022-01-29 18:57:19 +00:00
android:layout_height="wrap_content" />
2021-11-08 18:13:39 +00:00
<TextView
android:id="@+id/account_add"
android:text="@string/add_account"
style="@style/SettingsItem">
2022-01-29 18:57:19 +00:00
<requestFocus />
2021-11-08 18:13:39 +00:00
</TextView>
</LinearLayout>