74 lines
No EOL
2.7 KiB
XML
74 lines
No EOL
2.7 KiB
XML
<?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="match_parent"
|
|
android:orientation="vertical" >
|
|
|
|
<ScrollView
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent" >
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="8dp"
|
|
android:layout_marginRight="8dp"
|
|
android:orientation="vertical" >
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="17dp"
|
|
android:layout_marginTop="5dp"
|
|
android:orientation="horizontal" >
|
|
|
|
<ToggleButton
|
|
android:id="@+id/collapse"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@null"
|
|
android:button="@drawable/expandable_category"
|
|
android:checked="true"
|
|
android:textOff=""
|
|
android:textOn=""
|
|
android:textSize="21sp" />
|
|
</LinearLayout>
|
|
|
|
<RadioGroup
|
|
android:id="@+id/stages"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="20dp"
|
|
android:orientation="vertical" >
|
|
</RadioGroup>
|
|
|
|
<TextView
|
|
android:id="@+id/tour_description"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="2dp"
|
|
android:layout_marginTop="2dp"
|
|
android:gravity="center_horizontal"
|
|
android:textSize="18sp" >
|
|
</TextView>
|
|
|
|
<ImageView
|
|
android:id="@+id/tour_image"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="8dp"
|
|
android:paddingRight="8dp"
|
|
android:paddingTop="4dp" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/tour_fulldescription"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="2dp"
|
|
android:layout_marginTop="2dp"
|
|
android:orientation="vertical" >
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</ScrollView>
|
|
|
|
</LinearLayout> |