tor-android/res/layout/layout_wizard_tips.xml

125 lines
4.7 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
2011-06-05 20:55:18 +00:00
2014-04-08 15:36:59 +00:00
<TableLayout android:id="@+id/TableLayout01" android:stretchColumns="*" android:layout_height="fill_parent" android:layout_width="wrap_content">
2011-06-05 20:55:18 +00:00
<TableRow android:layout_margin="10dip" android:id="@+id/TableRow01" android:layout_weight="1" android:layout_width="fill_parent" android:layout_height="fill_parent">
2011-06-05 20:55:18 +00:00
<ScrollView android:id="@+id/helpscrollview"
android:orientation="vertical"
android:layout_width="fill_parent"
2011-06-05 20:55:18 +00:00
android:layout_height="fill_parent"
android:layout_span="3">
<LinearLayout
2012-07-24 16:58:40 +00:00
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#575757"
android:orientation="vertical"
android:paddingRight="20dip" >
<TextView
android:id="@+id/WizardTextBody1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.31"
android:padding="20dip"
android:text="@string/wizard_tips_msg"
android:textColor="#ffffff"
android:textSize="8pt" >
</TextView>
2012-07-24 16:58:40 +00:00
<Button
android:id="@+id/WizardRootButtonInstallOrweb"
android:layout_width="fill_parent"
2012-07-24 16:58:40 +00:00
android:layout_height="wrap_content"
android:layout_gravity="left"
android:layout_marginTop="10px"
android:drawableLeft="@drawable/icon_orweb"
android:text="@string/wizard_tips_orweb" />
2012-07-24 16:58:40 +00:00
<Button
android:id="@+id/WizardRootButtonInstallGibberbot"
android:layout_width="fill_parent"
2012-07-24 16:58:40 +00:00
android:layout_height="wrap_content"
android:layout_gravity="left"
android:layout_marginTop="10px"
android:drawableLeft="@drawable/ic_chatsecure"
2012-07-24 16:58:40 +00:00
android:text="@string/wizard_tips_gibberbot" />
<Button
android:id="@+id/WizardRootButtonInstallDuckgo"
android:layout_width="fill_parent"
2012-07-24 16:58:40 +00:00
android:layout_height="wrap_content"
android:layout_gravity="left"
android:layout_marginTop="10px"
android:drawableLeft="@drawable/ic_duckduckgo"
2012-07-24 16:58:40 +00:00
android:text="@string/wizard_tips_duckgo" />
<Button
android:id="@+id/WizardRootButtonInstallFirefox"
android:layout_width="fill_parent"
2012-07-24 16:58:40 +00:00
android:layout_height="wrap_content"
android:layout_gravity="left"
android:layout_marginTop="10px"
android:drawableLeft="@drawable/icon_firefox"
android:text="@string/wizard_tips_firefox" />
<Button
android:id="@+id/WizardRootButtonInstallTwitter"
android:layout_width="fill_parent"
2012-07-24 16:58:40 +00:00
android:layout_height="wrap_content"
android:layout_gravity="left"
android:layout_marginTop="10px"
android:drawableLeft="@drawable/ic_twitter"
2012-07-24 16:58:40 +00:00
android:text="@string/wizard_tips_twitter" />
<Button
android:id="@+id/WizardRootButtonInstallStoryMaker"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="left"
android:layout_marginTop="10px"
android:drawableLeft="@drawable/icon_story_maker"
android:text="@string/wizard_tips_story_maker" />
2014-07-17 17:43:09 +00:00
<Button
android:id="@+id/WizardRootButtonInstallMartus"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="left"
android:layout_marginTop="10px"
android:drawableLeft="@drawable/icon_martus"
android:text="@string/wizard_tips_martus" />
2012-10-22 11:48:00 +00:00
<Button
android:id="@+id/WizardRootButtonGooglePlay"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="left"
android:layout_marginTop="10px"
android:drawableLeft="@drawable/ic_play"
android:text="@string/wizard_tips_play" />
2014-07-17 17:43:09 +00:00
2012-07-24 16:58:40 +00:00
</LinearLayout>
2011-06-05 20:55:18 +00:00
</ScrollView>
</TableRow>
2014-07-17 17:43:09 +00:00
<TableRow android:background="#000000" android:layout_marginTop="10dip" android:paddingTop="10dip" android:id="@+id/TableRow02" android:textColor="#00ff00" android:layout_width="fill_parent" android:layout_height="30px">
<Button android:text="@string/btn_back" android:id="@+id/btnWizard1" android:layout_weight="1" android:layout_width="fill_parent" android:layout_height="wrap_content"></Button>
<Button android:text="@string/btn_next" android:id="@+id/btnWizard2" android:layout_weight="1" android:layout_width="fill_parent" android:layout_height="wrap_content"></Button>
2011-06-05 20:55:18 +00:00
</TableRow>
</TableLayout>
</LinearLayout>
2011-06-05 20:55:18 +00:00