<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<!--此处为二级标签View-->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="28dp"
android:paddingLeft="@dimen/rv_padding"
android:paddingRight="@dimen/rv_padding">
<com.junxin.zeropay.view.SecTab
android:id="@+id/daily_fragment_tab"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
<androidx.viewpager.widget.ViewPager
android:id="@+id/viewpager_daily_son"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
</LinearLayout>
<include
layout="@layout/common_wifi_layout"
android:visibility="gone" />
</RelativeLayout>
|