mirror of
https://github.com/jfoucry/Pilldroid.git
synced 2024-11-22 04:29:22 +01:00
Add resources for CIP13 input dialog
This commit is contained in:
parent
8bb20e9ddf
commit
3fa9440b11
1 changed files with 22 additions and 0 deletions
22
app/src/main/res/layout/input_dialog.xml
Normal file
22
app/src/main/res/layout/input_dialog.xml
Normal file
|
@ -0,0 +1,22 @@
|
|||
<?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"
|
||||
android:padding="10dp">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:text="Enter Name"
|
||||
android:id="@+id/textView" />
|
||||
|
||||
<EditText
|
||||
android:id="@+id/edittext"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:hint="Enter text here.."
|
||||
android:padding="10dp" />
|
||||
</LinearLayout>
|
Loading…
Reference in a new issue