69 lines
2.2 KiB
XML
69 lines
2.2 KiB
XML
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical" >
|
|
|
|
<RadioGroup
|
|
android:id="@+id/rg_routing_set"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="10dp">
|
|
|
|
<RadioButton
|
|
style="@style/rb_map_nav"
|
|
android:id="@+id/routing_set_default"
|
|
android:text="系统默认" />
|
|
|
|
<ImageView
|
|
android:layout_width="100dp"
|
|
android:layout_height="1dp"
|
|
android:layout_gravity="center_horizontal"
|
|
android:background="@drawable/shadow_line2" />
|
|
|
|
<RadioButton
|
|
android:id="@+id/routing_set_fast"
|
|
style="@style/rb_map_nav"
|
|
android:text="时间最短" />
|
|
|
|
<ImageView
|
|
android:layout_width="100dp"
|
|
android:layout_height="1dp"
|
|
android:layout_gravity="center_horizontal"
|
|
android:background="@drawable/shadow_line2" />
|
|
|
|
<RadioButton
|
|
android:id="@+id/routing_set_short"
|
|
style="@style/rb_map_nav"
|
|
android:text="距离最短" />
|
|
|
|
<ImageView
|
|
android:layout_width="100dp"
|
|
android:layout_height="1dp"
|
|
android:layout_gravity="center_horizontal"
|
|
android:background="@drawable/shadow_line2" />
|
|
|
|
<RadioButton
|
|
android:id="@+id/routing_set_avoidhwy"
|
|
style="@style/rb_map_nav"
|
|
android:text="规避高速"/>
|
|
|
|
<ImageView
|
|
android:layout_width="100dp"
|
|
android:layout_height="1dp"
|
|
android:layout_gravity="center_horizontal"
|
|
android:background="@drawable/shadow_line2" />
|
|
|
|
<RadioButton
|
|
android:id="@+id/routing_set_avoidtoll"
|
|
style="@style/rb_map_nav"
|
|
android:text="规避收费" />
|
|
|
|
<ImageView
|
|
android:layout_width="100dp"
|
|
android:layout_height="1dp"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginBottom="10dp"
|
|
android:background="@drawable/shadow_line2" />
|
|
</RadioGroup>
|
|
|
|
</LinearLayout> |