aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/AndroidBootstrap/res/layout/bootstrap_edit_text.xml
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/AndroidBootstrap/res/layout/bootstrap_edit_text.xml')
-rw-r--r--libraries/AndroidBootstrap/res/layout/bootstrap_edit_text.xml14
1 files changed, 14 insertions, 0 deletions
diff --git a/libraries/AndroidBootstrap/res/layout/bootstrap_edit_text.xml b/libraries/AndroidBootstrap/res/layout/bootstrap_edit_text.xml
new file mode 100644
index 000000000..63b5b007a
--- /dev/null
+++ b/libraries/AndroidBootstrap/res/layout/bootstrap_edit_text.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:id="@+id/layout"
+ android:orientation="horizontal">
+ <EditText
+ android:id="@+id/txtText"
+ android:layout_height="fill_parent"
+ android:layout_width="fill_parent"
+ android:layout_gravity="center"
+ android:hint=""
+ />
+</LinearLayout>