46 lines
1.3 KiB
XML
46 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<cc.winboll.studio.libaes.views.ASupportToolbar
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/toolbar_height"
|
|
android:id="@+id/toolbar"
|
|
android:gravity="center_vertical"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:orientation="vertical"
|
|
android:layout_weight="1.0">
|
|
|
|
<Switch
|
|
android:id="@+id/switch_service_control"
|
|
android:layout_margin="16dp"
|
|
android:text="GPS服务开关"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"/>
|
|
|
|
<Button
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="16dp"
|
|
android:onClick="onPositions"
|
|
android:text="位置与任务管理"
|
|
android:id="@+id/btn_manage_positions"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<cc.winboll.studio.libaes.views.ADsBannerView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/adsbanner"
|
|
android:layout_alignParentBottom="true"/>
|
|
|
|
</LinearLayout>
|
|
|