2025-08-06 18:57:26 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2025-09-03 15:53:49 +08:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2025-08-06 18:57:26 +08:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
2025-09-03 15:53:49 +08:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
android:background="#555f75"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
tools:context=".Main.Setting.Fragment.FoundationFragment">
|
2025-08-06 18:57:26 +08:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:gravity="center"
|
2025-09-03 15:53:49 +08:00
|
|
|
android:text="维护中.."
|
|
|
|
|
android:background="#cdcdcd"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"/>
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.tabs.TabLayout
|
|
|
|
|
android:layout_marginTop="6dp"
|
|
|
|
|
android:layout_marginLeft="6dp"
|
|
|
|
|
android:id="@+id/tab_layout"
|
2025-08-06 18:57:26 +08:00
|
|
|
android:layout_width="match_parent"
|
2025-09-03 15:53:49 +08:00
|
|
|
android:layout_height="26dp"
|
|
|
|
|
android:background="#555f75"
|
|
|
|
|
app:tabIndicatorHeight="0dp"
|
|
|
|
|
app:tabRippleColor="@null"
|
|
|
|
|
app:tabBackground="@drawable/tab_background_selector"
|
|
|
|
|
app:tabTextColor="@drawable/tab_text_color_selector"
|
|
|
|
|
app:tabTextAppearance="@style/CustomTabTextAppearance"
|
|
|
|
|
android:contentDescription="载荷选择" />
|
|
|
|
|
|
|
|
|
|
<androidx.viewpager2.widget.ViewPager2
|
|
|
|
|
android:background="@drawable/ff112446_4round_bg"
|
|
|
|
|
android:layout_margin="6dp"
|
|
|
|
|
android:id="@+id/view_pager"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="0dp"
|
|
|
|
|
android:layout_weight="1" />
|
|
|
|
|
|
2025-08-06 18:57:26 +08:00
|
|
|
|
2025-09-03 15:53:49 +08:00
|
|
|
</LinearLayout>
|