45 lines
1.6 KiB
XML
45 lines
1.6 KiB
XML
<?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="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:padding="16dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/icon"
|
|
android:layout_width="64dp"
|
|
android:layout_height="64dp"
|
|
android:layout_marginLeft="8dp"
|
|
android:layout_marginRight="16dp"
|
|
android:background="@drawable/shortcut_create_dialog_icon_bg"
|
|
android:padding="12dp"
|
|
android:src="@drawable/ic_add_white_48dp"/>
|
|
|
|
<android.support.design.widget.TextInputLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical">
|
|
|
|
<android.support.design.widget.TextInputEditText
|
|
android:id="@+id/name"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="@string/text_name"/>
|
|
|
|
</android.support.design.widget.TextInputLayout>
|
|
</LinearLayout>
|
|
|
|
<CheckBox
|
|
android:id="@+id/use_android_n_shortcut"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="20dp"
|
|
android:layout_marginTop="4dp"
|
|
android:text="@string/text_use_android_n_shortcut"/>
|
|
|
|
</LinearLayout> |