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

31 lines
1.2 KiB
XML
Raw Normal View History

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"
xmlns:app="http://schemas.android.com/apk/res-auto"
2021-11-08 18:13:39 +00:00
android:foreground="?android:attr/selectableItemBackgroundBorderless"
android:orientation="horizontal"
2022-01-29 18:57:19 +00:00
android:layout_height="wrap_content"
android:layout_width="match_parent">
2021-11-08 18:13:39 +00:00
<androidx.cardview.widget.CardView
android:id="@+id/account_profile_picture_holder"
2021-11-08 18:13:39 +00:00
android:layout_marginStart="10dp"
app:cardCornerRadius="100dp"
android:layout_gravity="center_vertical"
android:layout_width="30dp"
android:layout_height="30dp">
2022-01-29 18:57:19 +00:00
2021-11-08 18:13:39 +00:00
<ImageView
android:id="@+id/account_profile_picture"
android:layout_width="match_parent"
android:layout_height="match_parent"
2022-01-29 18:57:19 +00:00
tools:ignore="ContentDescription" />
2021-11-08 18:13:39 +00:00
</androidx.cardview.widget.CardView>
<TextView
android:foreground="@null"
android:id="@+id/account_name"
tools:text="Account 1"
2022-01-29 18:57:19 +00:00
style="@style/SettingsItem" />
2021-11-08 18:13:39 +00:00
</LinearLayout>