mirror of
https://gitlab.com/openlp/android.git
synced 2024-12-22 03:42:48 +00:00
Fix blank dialog for fat fingers
This commit is contained in:
parent
11828d047e
commit
6237bde781
@ -87,6 +87,7 @@
|
||||
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/rs" />
|
||||
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/symbols" />
|
||||
<excludeFolder url="file://$MODULE_DIR$/build/outputs" />
|
||||
<excludeFolder url="file://$MODULE_DIR$/build/tmp" />
|
||||
</content>
|
||||
<orderEntry type="jdk" jdkName="Android API 22 Platform" jdkType="Android SDK" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
|
@ -10,7 +10,7 @@ android {
|
||||
applicationId "org.openlp.android2"
|
||||
minSdkVersion 15
|
||||
targetSdkVersion 22
|
||||
versionCode 4
|
||||
versionCode 5
|
||||
versionName "2.0"
|
||||
}
|
||||
android {
|
||||
|
@ -7,14 +7,16 @@
|
||||
android:layout_height="fill_parent"
|
||||
android:weightSum="1">
|
||||
<TextView
|
||||
android:layout_width="294dp"
|
||||
android:layout_width="314dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:text="@string/display_blank_summary"
|
||||
android:id="@+id/textView"
|
||||
android:textStyle="bold|italic"
|
||||
android:textSize="40px"
|
||||
android:height="45px"/>
|
||||
android:height="70px"
|
||||
android:layout_marginTop="10dp"
|
||||
android:layout_marginBottom="10dp" />
|
||||
<RadioButton
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
@ -22,7 +24,9 @@
|
||||
android:id="@+id/buttonReset"
|
||||
android:textSize="20sp"
|
||||
android:height="40dp"
|
||||
android:clickable="true"/>
|
||||
android:clickable="true"
|
||||
android:layout_marginTop="20dp"
|
||||
android:layout_marginBottom="20dp" />
|
||||
<RadioButton
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
@ -30,7 +34,9 @@
|
||||
android:id="@+id/buttonScreen"
|
||||
android:textSize="20sp"
|
||||
android:height="40dp"
|
||||
android:clickable="true"/>
|
||||
android:clickable="true"
|
||||
android:layout_marginTop="20dp"
|
||||
android:layout_marginBottom="20dp" />
|
||||
<RadioButton
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
@ -38,7 +44,9 @@
|
||||
android:id="@+id/buttonTheme"
|
||||
android:textSize="20sp"
|
||||
android:height="40dp"
|
||||
android:clickable="true"/>
|
||||
android:clickable="true"
|
||||
android:layout_marginTop="20dp"
|
||||
android:layout_marginBottom="20dp" />
|
||||
<RadioButton
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
@ -46,5 +54,7 @@
|
||||
android:id="@+id/buttonDesktop"
|
||||
android:textSize="20sp"
|
||||
android:height="40dp"
|
||||
android:clickable="true"/>
|
||||
android:clickable="true"
|
||||
android:layout_marginTop="20dp"
|
||||
android:layout_marginBottom="20dp" />
|
||||
</LinearLayout>
|
Loading…
Reference in New Issue
Block a user