summaryrefslogtreecommitdiff
path: root/src/ui/android
diff options
context:
space:
mode:
authorkrasimir <krasimir@chalmers.se>2017-04-11 12:54:23 +0000
committerkrasimir <krasimir@chalmers.se>2017-04-11 12:54:23 +0000
commit5251221339091d9103a6ecb67e629f7e3aac3d51 (patch)
tree485775c942ad5b55609c697a322f5e057c36a47a /src/ui/android
parentb789f90da9941f14756314dada80d1a52831df30 (diff)
forgot src/ui/android/res/layout/fragment_phrase_list.xml
Diffstat (limited to 'src/ui/android')
-rw-r--r--src/ui/android/res/layout/fragment_phrase_list.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/ui/android/res/layout/fragment_phrase_list.xml b/src/ui/android/res/layout/fragment_phrase_list.xml
new file mode 100644
index 000000000..1868da31c
--- /dev/null
+++ b/src/ui/android/res/layout/fragment_phrase_list.xml
@@ -0,0 +1,16 @@
+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:descendantFocusability="blocksDescendants"
+ tools:context="se.chalmers.phrasebook.gui.fragments.PhraseListFragment">
+
+ <ListView
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:id="@+id/phrase_listView"
+ android:layout_alignParentRight="true"
+ android:layout_alignParentTop="true"
+ />
+
+</FrameLayout>