27 lines
967 B
XML
27 lines
967 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:background="#555f75"
|
||
|
|
android:orientation="vertical"
|
||
|
|
tools:context=".Main.Setting.Fragment.SecureFragment">
|
||
|
|
|
||
|
|
<com.google.android.material.tabs.TabLayout
|
||
|
|
android:layout_marginTop="8dp"
|
||
|
|
android:layout_marginLeft="8dp"
|
||
|
|
android:id="@+id/tab_layout"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:background="#555f75"
|
||
|
|
android:contentDescription="载荷选择" />
|
||
|
|
|
||
|
|
<androidx.viewpager2.widget.ViewPager2
|
||
|
|
android:layout_margin="10dp"
|
||
|
|
android:id="@+id/view_pager"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="0dp"
|
||
|
|
android:layout_weight="1" />
|
||
|
|
|
||
|
|
</LinearLayout>
|