diff options
author | Arne Schwabe <arne@rfc2549.org> | 2012-05-08 16:34:47 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2012-05-08 16:34:47 +0200 |
commit | b187f57a026110ef0b0f1d6b6414c868922cab46 (patch) | |
tree | e717cc737e5c892790752cfa6c7dc96b761db60a /res/layout | |
parent | 271a9073948f1a47786ae40f5af6e58e7992a767 (diff) |
Add FAQ Dialog, will be filled with more Items later
Diffstat (limited to 'res/layout')
-rw-r--r-- | res/layout/faq.xml | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/res/layout/faq.xml b/res/layout/faq.xml new file mode 100644 index 00000000..195acad8 --- /dev/null +++ b/res/layout/faq.xml @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="utf-8"?> +<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="match_parent" > + + <LinearLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="vertical" > + + <TextView + style="@style/faqhead" + android:text="@string/tap_mode" /> + + <TextView + style="@style/faqitem" + android:text="@string/faq_tap_mode" /> + + <TextView + style="@style/faqhead" + android:text="@string/tap_mode" /> + + <TextView + style="@style/faqitem" + android:text="@string/tap_faq2" /> + + <TextView + style="@style/faqhead" + android:text="@string/tap_mode" /> + + <TextView + style="@style/faqitem" + android:text="@string/tap_faq3" /> + </LinearLayout> + +</ScrollView>
\ No newline at end of file |