mirror of
https://gitlab.com/openlp/android.git
synced 2024-10-31 16:54:41 +00:00
53 lines
1.9 KiB
XML
53 lines
1.9 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
||
|
android:orientation="vertical"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="fill_parent"
|
||
|
android:weightSum="1">
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="294dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
||
|
android:text="@string/displayBlankSummary"
|
||
|
android:id="@+id/textView"
|
||
|
android:autoText="true"
|
||
|
android:textStyle="bold|italic"
|
||
|
android:textSize="40px"
|
||
|
android:height="45dp"/>
|
||
|
<Button
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/display.Reset"
|
||
|
android:id="@+id/buttonReset"
|
||
|
android:textSize="20sp"
|
||
|
android:height="40dp"
|
||
|
android:clickable="true"/>
|
||
|
<Button
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/display.Screen"
|
||
|
android:id="@+id/buttonScreen"
|
||
|
android:textSize="20sp"
|
||
|
android:height="40dp"
|
||
|
android:clickable="true"/>
|
||
|
<Button
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/display.Theme"
|
||
|
android:id="@+id/buttonTheme"
|
||
|
android:textSize="20sp"
|
||
|
android:height="40dp"
|
||
|
android:clickable="true"/>
|
||
|
<Button
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/display.Desktop"
|
||
|
android:id="@+id/buttonDesktop"
|
||
|
android:textSize="20sp"
|
||
|
android:height="40dp"
|
||
|
android:clickable="true"/>
|
||
|
|
||
|
</LinearLayout>
|