45 lines
1.5 KiB
XML
45 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:paddingLeft="@dimen/dialog_content_margin"
|
|
android:paddingRight="@dimen/dialog_content_margin">
|
|
|
|
<include layout="@layout/dashboard_settings_dialog_item"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
android:id="@+id/numberOfRowsTextView"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
tools:text="Number of rows %s"/>
|
|
|
|
<Space
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"/>
|
|
|
|
<Button
|
|
android:id="@+id/decrementButton"
|
|
style="@style/Widget.AppCompat.Button.Borderless"
|
|
android:layout_width="48dp"
|
|
android:layout_height="wrap_content"
|
|
android:padding="0dp"
|
|
android:text="-" />
|
|
|
|
<Button
|
|
android:id="@+id/incrementButton"
|
|
style="@style/Widget.AppCompat.Button.Borderless"
|
|
android:layout_width="48dp"
|
|
android:layout_height="wrap_content"
|
|
android:padding="0dp"
|
|
android:text="+" />
|
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|