2019-10-03 19:42:04 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="@dimen/activity_vertical_margin"
|
|
|
|
android:orientation="horizontal">
|
2019-11-15 16:32:25 +01:00
|
|
|
|
2019-10-03 19:42:04 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/account_acct"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="10dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:textSize="16sp" />
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.SwitchCompat
|
|
|
|
android:id="@+id/account_acct_live_notifications"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
</LinearLayout>
|