aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/res/layout/create_conference_dialog.xml
diff options
context:
space:
mode:
authorDaniel Gultsch <daniel@gultsch.de>2016-09-18 20:09:39 +0200
committerDaniel Gultsch <daniel@gultsch.de>2016-09-18 20:09:39 +0200
commit6b904d4de1ab755277212d574bee618d7296cd2d (patch)
treee6097d19f260fa35d76277d6748720c4c3cb0d7c /src/main/res/layout/create_conference_dialog.xml
parent7bdd4166c02a88b1e5249056fabcf0e1833ab555 (diff)
use proper paddings in dialogs on android < 5
Diffstat (limited to 'src/main/res/layout/create_conference_dialog.xml')
-rw-r--r--src/main/res/layout/create_conference_dialog.xml16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/main/res/layout/create_conference_dialog.xml b/src/main/res/layout/create_conference_dialog.xml
index 8aae08a6..d81ed0f2 100644
--- a/src/main/res/layout/create_conference_dialog.xml
+++ b/src/main/res/layout/create_conference_dialog.xml
@@ -1,12 +1,12 @@
<?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="match_parent"
- android:orientation="vertical"
- android:paddingBottom="8dp"
- android:paddingLeft="24dp"
- android:paddingRight="24dp"
- android:paddingTop="16dp">
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical"
+ android:paddingBottom="?attr/dialog_vertical_padding"
+ android:paddingLeft="?attr/dialog_horizontal_padding"
+ android:paddingRight="?attr/dialog_horizontal_padding"
+ android:paddingTop="?attr/dialog_vertical_padding">
<TextView
android:id="@+id/your_account"
@@ -37,6 +37,6 @@
android:inputType="textAutoComplete"
android:textColor="?attr/color_text_primary"
android:textColorHint="?attr/color_text_secondary"
- android:textSize="?attr/TextSizeBody"/>
+ android:textSize="?attr/TextSizeBody" />
</LinearLayout>