disapp/app/src/main/res/layout/state_dialog.xml
2023-07-19 23:43:04 +10:00

51 lines
2.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_margin="@dimen/activity_horizontal_margin">
<TextView
android:textColor="#000000"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/StateView"
android:text="@string/StateInfo"/>
<Button
android:id="@+id/StateXMPPBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="?android:attr/borderlessButtonStyle"
android:text="@string/StateXMPPBtn"/>
<Button
android:id="@+id/StateMatrixBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="?android:attr/borderlessButtonStyle"
android:text="@string/StateMatrixBtn"/>
<Button
android:id="@+id/StateSocialBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="?android:attr/borderlessButtonStyle"
android:text="@string/StateSocialBtn"/>
<Button
android:id="@+id/StateNewsBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="?android:attr/borderlessButtonStyle"
android:text="@string/StateNewsBtn"/>
<Button
android:id="@+id/StateRssBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="?android:attr/borderlessButtonStyle"
android:text="@string/StateRssBtn"
android:layout_marginBottom="@dimen/activity_vertical_margin"/>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>