version
fix: update:基本界面完成
This commit is contained in:
144
app/src/main/res/layout/activity_home.xml
Normal file
144
app/src/main/res/layout/activity_home.xml
Normal file
@@ -0,0 +1,144 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layout 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"
|
||||
tools:context=".activity.home.HomeActivity">
|
||||
|
||||
<data>
|
||||
|
||||
<variable
|
||||
name="click"
|
||||
type="com.handuan.os.activity.home.HomeActivity.BtnClick" />
|
||||
</data>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/ll_main"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:background="@drawable/img_home_bg_0"
|
||||
android:orientation="vertical">
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/home"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="3dp"
|
||||
android:orientation="horizontal"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_time"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="9dp"
|
||||
android:text="22:00"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="8dp" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_marginRight="9dp"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/bluetooth_iv"
|
||||
android:layout_width="5dp"
|
||||
android:layout_height="7dp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_wifi"
|
||||
android:layout_width="11dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginLeft="3dp" />
|
||||
|
||||
<com.handuan.os.view.jxw.view.JxwBatteryCircular
|
||||
android:id="@+id/battery_view"
|
||||
android:layout_width="18dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginLeft="3dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/rl_grxx"
|
||||
android:layout_width="80dp"
|
||||
android:layout_height="31dp"
|
||||
android:layout_marginLeft="19dp"
|
||||
android:background="@drawable/bg_shape_txbg"
|
||||
android:onClick="onClick"
|
||||
android:orientation="horizontal"
|
||||
android:tag="@string/tag_args_xxgrzx"
|
||||
android:visibility="gone">
|
||||
|
||||
<com.handuan.os.view.jxw.util.CircleImageView
|
||||
android:id="@+id/head_image"
|
||||
android:layout_width="28dp"
|
||||
android:layout_height="28dp"
|
||||
android:layout_margin="2dp"
|
||||
android:src="@drawable/icon_tx1" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="31dp"
|
||||
android:orientation="vertical"
|
||||
android:paddingLeft="2dp">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_name"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="4dp"
|
||||
android:layout_marginRight="19dp"
|
||||
android:ellipsize="marquee"
|
||||
android:singleLine="true"
|
||||
android:text="小九"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_grade"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/tv_name"
|
||||
android:text="未注册"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="10dp"
|
||||
android:layout_marginLeft="2dp"
|
||||
android:background="@drawable/icon_home_qh" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</RelativeLayout>
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/rl_tab"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/home"
|
||||
app:layout_constraintTop_toBottomOf="@+id/home"
|
||||
tools:layout_editor_absoluteX="19dp" />
|
||||
|
||||
<com.handuan.os.view.jxw.widget.NoScrollViewPager
|
||||
android:id="@+id/subject_viewPager"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@+id/rl_tab" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</layout>
|
||||
@@ -23,11 +23,22 @@
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/constraintLayout2"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="64dp"
|
||||
android:layout_height="24dp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginStart="8dp"
|
||||
android:text="00:00"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="11sp"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
|
||||
13
app/src/main/res/layout/dialog_jiaoshui.xml
Normal file
13
app/src/main/res/layout/dialog_jiaoshui.xml
Normal file
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical">
|
||||
|
||||
<org.libpag.PAGView
|
||||
android:id="@+id/pag"
|
||||
android:layout_width="281dp"
|
||||
android:layout_height="188dp"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_marginLeft="47dp" />
|
||||
</RelativeLayout>
|
||||
54
app/src/main/res/layout/dialog_yw_apps.xml
Normal file
54
app/src/main/res/layout/dialog_yw_apps.xml
Normal file
@@ -0,0 +1,54 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="375dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:background="@drawable/bg_shape_ffffff_40"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="41dp">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerInParent="true"
|
||||
android:layout_marginTop="3dp"
|
||||
android:text="语文学习应用"
|
||||
android:textColor="#333333"
|
||||
android:textSize="12dp" />
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_gb"
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_alignParentRight="true"
|
||||
android:gravity="center">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="19dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_x" />
|
||||
</LinearLayout>
|
||||
</RelativeLayout>
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/rv_apps"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:layout_marginTop="9dp"
|
||||
android:layout_marginRight="12dp"
|
||||
android:layout_marginBottom="6dp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
421
app/src/main/res/layout/fg_content_ddyfz.xml
Normal file
421
app/src/main/res/layout/fg_content_ddyfz.xml
Normal file
@@ -0,0 +1,421 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/ll_zjx"
|
||||
android:layout_width="347dp"
|
||||
android:layout_height="300dp"
|
||||
android:background="@drawable/icon_xk_zjx_l"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="16dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tab_tbjzx"
|
||||
android:layout_width="109dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_tab_tbjzx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="7dp"
|
||||
android:text="AI同步精准学"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="11dp"
|
||||
android:visibility="gone" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_tab_tbjzx"
|
||||
android:layout_width="83dp"
|
||||
android:layout_height="27dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:background="@drawable/icon_yw_tbjzx" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tab_dyfx"
|
||||
android:layout_width="97dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_tab_dyfx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="7dp"
|
||||
android:text="AI单元复习"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="11dp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_tab_dyfx"
|
||||
android:layout_width="80dp"
|
||||
android:layout_height="27dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:background="@drawable/icon_yw_dyfx"
|
||||
android:visibility="gone" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tab_jdbk"
|
||||
android:layout_width="89dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_tab_jdbk"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="7dp"
|
||||
android:text="AI阶段备考"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="11dp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_tab_jdbk"
|
||||
android:layout_width="80dp"
|
||||
android:layout_height="27dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:background="@drawable/icon_yw_aijdbk"
|
||||
android:visibility="gone" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tbjzx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="50dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="144dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_xk_zz_tbfd"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_tbfd_zz" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="166dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_xk_wl_khl"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="0|道德与法治" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_dyfx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="50dp"
|
||||
android:orientation="horizontal"
|
||||
android:visibility="gone">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="144dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_wl_dnxfx_bg"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:layout_marginTop="52dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="10|道德与法治">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_zskj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="知识框架"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="2dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dyfx_x" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="11|道德与法治">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_zsdjj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="知识点精讲"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="2dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dyfx_x" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="12|道德与法治">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_xbbj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="学霸笔记"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="2dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dyfx_x" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="13|道德与法治">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_ztjj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="真题精讲"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="166dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_yw_aidyfxl_bg"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="9|道德与法治" />
|
||||
</LinearLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_jdbk"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="50dp"
|
||||
android:orientation="horizontal"
|
||||
android:visibility="gone">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_brdzj"
|
||||
android:layout_width="147dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginRight="12dp"
|
||||
android:background="@drawable/icon_wl_brdzj"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="5|道德与法治" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_aijdc"
|
||||
android:layout_width="162dp"
|
||||
android:layout_height="125dp"
|
||||
android:layout_marginBottom="12dp"
|
||||
android:layout_toRightOf="@+id/iv_brdzj"
|
||||
android:background="@drawable/icon_wl_aijdc"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="1|道德与法治" />
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/iv_qyj"
|
||||
android:layout_width="162dp"
|
||||
android:layout_height="100dp"
|
||||
android:layout_below="@+id/iv_aijdc"
|
||||
android:layout_toRightOf="@+id/iv_brdzj"
|
||||
android:background="@drawable/bg_shape_b6f3fa_40"
|
||||
android:orientation="vertical"
|
||||
android:paddingLeft="9dp">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="12dp"
|
||||
android:text="试卷中心"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12dp" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="2dp"
|
||||
android:text="真题来演练,提升超惊艳"
|
||||
android:textColor="#60ffffff"
|
||||
android:textSize="9dp" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="5dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="44dp"
|
||||
android:layout_height="39dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoSjzx"
|
||||
android:orientation="vertical"
|
||||
android:tag="1669|道德与法治">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="21dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_yw_qz" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="1dp"
|
||||
android:paddingRight="1dp"
|
||||
android:text="期中"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="44dp"
|
||||
android:layout_height="39dp"
|
||||
android:layout_marginHorizontal="6dp"
|
||||
android:layout_marginLeft="6dp"
|
||||
android:layout_marginRight="6dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoSjzx"
|
||||
android:orientation="vertical"
|
||||
android:tag="1670|道德与法治">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="21dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_yw_qm" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="1dp"
|
||||
android:text="期末"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="44dp"
|
||||
android:layout_height="39dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoSjzx"
|
||||
android:orientation="vertical"
|
||||
android:tag="1671|道德与法治">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="21dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_yw_mnk" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingRight="1dp"
|
||||
android:text="模拟考"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</RelativeLayout>
|
||||
</RelativeLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:orientation="vertical">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="116dp"
|
||||
android:layout_height="159dp"
|
||||
android:background="@drawable/icon_ddyfz_jpkc"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_xksp_ddyfz" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="116dp"
|
||||
android:layout_height="128dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:background="@drawable/icon_ls_ykyl"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_ykyl_ddyfz" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
504
app/src/main/res/layout/fg_content_dl.xml
Normal file
504
app/src/main/res/layout/fg_content_dl.xml
Normal file
@@ -0,0 +1,504 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/ll_zjx"
|
||||
android:layout_width="347dp"
|
||||
android:layout_height="300dp"
|
||||
android:background="@drawable/icon_xk_zjx_l"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="16dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tab_tbjzx"
|
||||
android:layout_width="109dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_tab_tbjzx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="7dp"
|
||||
android:text="AI同步精准学"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="11dp"
|
||||
android:visibility="gone" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_tab_tbjzx"
|
||||
android:layout_width="83dp"
|
||||
android:layout_height="27dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:background="@drawable/icon_yw_tbjzx" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tab_dyfx"
|
||||
android:layout_width="97dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_tab_dyfx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="7dp"
|
||||
android:text="AI单元复习"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="11dp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_tab_dyfx"
|
||||
android:layout_width="80dp"
|
||||
android:layout_height="27dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:background="@drawable/icon_yw_dyfx"
|
||||
android:visibility="gone" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tab_jdbk"
|
||||
android:layout_width="89dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_tab_jdbk"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="7dp"
|
||||
android:text="AI阶段备考"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="11dp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_tab_jdbk"
|
||||
android:layout_width="80dp"
|
||||
android:layout_height="27dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:background="@drawable/icon_yw_aijdbk"
|
||||
android:visibility="gone" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tbjzx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="50dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="144dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_xk_dl_tbfd"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_tbfd_dl" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="166dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_xk_wl_khl"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="0|地理" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_dyfx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="50dp"
|
||||
android:orientation="horizontal"
|
||||
android:visibility="gone">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="144dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_wl_dnxfx_bg"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:layout_marginTop="52dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="10|地理">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_zskj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="知识框架"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="2dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dyfx_x" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="11|地理">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_zsdjj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="知识点精讲"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="2dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dyfx_x" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="12|地理">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_xbbj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="学霸笔记"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="2dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dyfx_x" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="13|地理">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_ztjj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="真题精讲"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="166dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_yw_aidyfxl_bg"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="9|地理" />
|
||||
</LinearLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_jdbk"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="50dp"
|
||||
android:orientation="horizontal"
|
||||
android:visibility="gone">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_brdzj"
|
||||
android:layout_width="147dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginRight="12dp"
|
||||
android:background="@drawable/icon_wl_brdzj"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="5|地理" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_aijdc"
|
||||
android:layout_width="162dp"
|
||||
android:layout_height="125dp"
|
||||
android:layout_marginBottom="12dp"
|
||||
android:layout_toRightOf="@+id/iv_brdzj"
|
||||
android:background="@drawable/icon_wl_aijdc"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="1|地理" />
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/iv_qyj"
|
||||
android:layout_width="162dp"
|
||||
android:layout_height="100dp"
|
||||
android:layout_below="@+id/iv_aijdc"
|
||||
android:layout_toRightOf="@+id/iv_brdzj"
|
||||
android:background="@drawable/bg_shape_b6f3fa_40"
|
||||
android:orientation="vertical"
|
||||
android:paddingLeft="9dp">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="12dp"
|
||||
android:text="试卷中心"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12dp" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="2dp"
|
||||
android:text="真题来演练,提升超惊艳"
|
||||
android:textColor="#60ffffff"
|
||||
android:textSize="9dp" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="5dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="44dp"
|
||||
android:layout_height="39dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoSjzx"
|
||||
android:orientation="vertical"
|
||||
android:tag="1669|地理">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="21dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_yw_qz" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="1dp"
|
||||
android:paddingRight="1dp"
|
||||
android:text="期中"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="44dp"
|
||||
android:layout_height="39dp"
|
||||
android:layout_marginHorizontal="6dp"
|
||||
android:layout_marginLeft="6dp"
|
||||
android:layout_marginRight="6dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoSjzx"
|
||||
android:orientation="vertical"
|
||||
android:tag="1670|地理">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="21dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_yw_qm" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="1dp"
|
||||
android:text="期末"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="44dp"
|
||||
android:layout_height="39dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoSjzx"
|
||||
android:orientation="vertical"
|
||||
android:tag="1671|地理">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="21dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_yw_mnk" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingRight="1dp"
|
||||
android:text="模拟考"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</RelativeLayout>
|
||||
</RelativeLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:orientation="vertical">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="116dp"
|
||||
android:layout_height="86dp"
|
||||
android:background="@drawable/icon_dl_jpkc"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_xksp_dl" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="116dp"
|
||||
android:layout_height="86dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:background="@drawable/icon_dl_zxts"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_ztsp_hkdlzt" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="116dp"
|
||||
android:layout_height="103dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:background="@drawable/bg_shape_zjxx"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_apps"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:layout_marginRight="12dp"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:text="学习应用"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="11dp" />
|
||||
</RelativeLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="12dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center"
|
||||
android:onClick="onClick"
|
||||
android:orientation="vertical"
|
||||
android:tag="@string/tag_args_new_ztsp_hkdlzt">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_app_icon"
|
||||
android:layout_width="28dp"
|
||||
android:layout_height="28dp"
|
||||
android:background="@drawable/icon_dl_dlhkzx" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_app_name"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="5dp"
|
||||
android:gravity="center"
|
||||
android:text="地理会考专项"
|
||||
android:textColor="#90ffffff"
|
||||
android:textSize="8dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:gravity="center"
|
||||
android:onClick="onClick"
|
||||
android:orientation="vertical"
|
||||
android:tag="@string/tag_args_new_ykyl_dl">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="28dp"
|
||||
android:layout_height="28dp"
|
||||
android:background="@drawable/icon_dl_ykyl" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="5dp"
|
||||
android:gravity="center"
|
||||
android:text="一课一练"
|
||||
android:textColor="#90ffffff"
|
||||
android:textSize="8dp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
461
app/src/main/res/layout/fg_content_hx.xml
Normal file
461
app/src/main/res/layout/fg_content_hx.xml
Normal file
@@ -0,0 +1,461 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/ll_zjx"
|
||||
android:layout_width="347dp"
|
||||
android:layout_height="300dp"
|
||||
android:background="@drawable/icon_xk_zjx_l"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="16dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tab_tbjzx"
|
||||
android:layout_width="109dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_tab_tbjzx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="7dp"
|
||||
android:text="AI同步精准学"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="11dp"
|
||||
android:visibility="gone" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_tab_tbjzx"
|
||||
android:layout_width="83dp"
|
||||
android:layout_height="27dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:background="@drawable/icon_yw_tbjzx" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tab_dyfx"
|
||||
android:layout_width="97dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_tab_dyfx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="7dp"
|
||||
android:text="AI单元复习"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="11dp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_tab_dyfx"
|
||||
android:layout_width="80dp"
|
||||
android:layout_height="27dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:background="@drawable/icon_yw_dyfx"
|
||||
android:visibility="gone" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tab_jdbk"
|
||||
android:layout_width="89dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_tab_jdbk"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="7dp"
|
||||
android:text="AI阶段备考"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="11dp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_tab_jdbk"
|
||||
android:layout_width="80dp"
|
||||
android:layout_height="27dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:background="@drawable/icon_yw_aijdbk"
|
||||
android:visibility="gone" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tbjzx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="50dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="144dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_xk_hx_tbfd"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_tbfd_hx" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="166dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_xk_wl_khl"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="0|化学" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_dyfx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="50dp"
|
||||
android:orientation="horizontal"
|
||||
android:visibility="gone">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="144dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_wl_dnxfx_bg"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:layout_marginTop="52dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="10|化学">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_zskj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="知识框架"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="2dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dyfx_x" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="11|化学">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_zsdjj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="知识点精讲"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="2dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dyfx_x" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="12|化学">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_xbbj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="学霸笔记"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="2dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dyfx_x" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="13|化学">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_ztjj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="真题精讲"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="166dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_yw_aidyfxl_bg"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="9|化学" />
|
||||
</LinearLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_jdbk"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="50dp"
|
||||
android:orientation="horizontal"
|
||||
android:visibility="gone">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_brdzj"
|
||||
android:layout_width="147dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginRight="12dp"
|
||||
android:background="@drawable/icon_wl_brdzj"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="5|化学" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_aijdc"
|
||||
android:layout_width="162dp"
|
||||
android:layout_height="125dp"
|
||||
android:layout_marginBottom="12dp"
|
||||
android:layout_toRightOf="@+id/iv_brdzj"
|
||||
android:background="@drawable/icon_wl_aijdc"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="1|化学" />
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/iv_qyj"
|
||||
android:layout_width="162dp"
|
||||
android:layout_height="100dp"
|
||||
android:layout_below="@+id/iv_aijdc"
|
||||
android:layout_toRightOf="@+id/iv_brdzj"
|
||||
android:background="@drawable/bg_shape_b6f3fa_40"
|
||||
android:orientation="vertical"
|
||||
android:paddingLeft="9dp">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="12dp"
|
||||
android:text="试卷中心"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12dp" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="2dp"
|
||||
android:text="真题来演练,提升超惊艳"
|
||||
android:textColor="#60ffffff"
|
||||
android:textSize="9dp" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="5dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="44dp"
|
||||
android:layout_height="39dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoSjzx"
|
||||
android:orientation="vertical"
|
||||
android:tag="1669|化学">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="21dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_yw_qz" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="1dp"
|
||||
android:paddingRight="1dp"
|
||||
android:text="期中"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="44dp"
|
||||
android:layout_height="39dp"
|
||||
android:layout_marginLeft="6dp"
|
||||
android:layout_marginRight="6dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoSjzx"
|
||||
android:orientation="vertical"
|
||||
android:tag="1670|化学">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="21dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_yw_qm" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="1dp"
|
||||
android:text="期末"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="44dp"
|
||||
android:layout_height="39dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoSjzx"
|
||||
android:orientation="vertical"
|
||||
android:tag="1671|化学">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="21dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_yw_mnk" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingRight="1dp"
|
||||
android:text="模拟考"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</RelativeLayout>
|
||||
</RelativeLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:orientation="vertical">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="116dp"
|
||||
android:layout_height="86dp"
|
||||
android:background="@drawable/icon_hx_jpkc"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_xksp_hx" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="116dp"
|
||||
android:layout_height="86dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:background="@drawable/icon_hx_zxts"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_ztsp_zkhxzt" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="116dp"
|
||||
android:layout_height="103dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:background="@drawable/bg_shape_zjxx"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_apps"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:layout_marginRight="12dp"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:text="学习应用"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="11dp" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="19dp"
|
||||
android:layout_height="19dp"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:background="@drawable/icon_yw_zjxx_right" />
|
||||
</RelativeLayout>
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/rv_apps"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="14dp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
421
app/src/main/res/layout/fg_content_kx.xml
Normal file
421
app/src/main/res/layout/fg_content_kx.xml
Normal file
@@ -0,0 +1,421 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/ll_zjx"
|
||||
android:layout_width="347dp"
|
||||
android:layout_height="300dp"
|
||||
android:background="@drawable/icon_xk_zjx_l"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="16dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tab_tbjzx"
|
||||
android:layout_width="109dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_tab_tbjzx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="7dp"
|
||||
android:text="AI同步精准学"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="11dp"
|
||||
android:visibility="gone" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_tab_tbjzx"
|
||||
android:layout_width="83dp"
|
||||
android:layout_height="27dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:background="@drawable/icon_yw_tbjzx" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tab_dyfx"
|
||||
android:layout_width="97dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_tab_dyfx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="7dp"
|
||||
android:text="AI单元复习"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="11dp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_tab_dyfx"
|
||||
android:layout_width="80dp"
|
||||
android:layout_height="27dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:background="@drawable/icon_yw_dyfx"
|
||||
android:visibility="gone" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tab_jdbk"
|
||||
android:layout_width="89dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_tab_jdbk"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="7dp"
|
||||
android:text="AI阶段备考"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="11dp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_tab_jdbk"
|
||||
android:layout_width="80dp"
|
||||
android:layout_height="27dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:background="@drawable/icon_yw_aijdbk"
|
||||
android:visibility="gone" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tbjzx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="50dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="144dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_xk_kx_tbfd_1"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_tbfd_kx" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="166dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_xk_wl_khl"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="0|科学" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_dyfx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="50dp"
|
||||
android:orientation="horizontal"
|
||||
android:visibility="gone">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="144dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_wl_dnxfx_bg"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:layout_marginTop="52dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="10|科学">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_zskj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="知识框架"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="2dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dyfx_x" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="11|科学">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_zsdjj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="知识点精讲"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="2dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dyfx_x" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="12|科学">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_xbbj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="学霸笔记"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="2dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dyfx_x" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="13|科学">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_ztjj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="真题精讲"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="166dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_yw_aidyfxl_bg"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="9|科学" />
|
||||
</LinearLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_jdbk"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="50dp"
|
||||
android:orientation="horizontal"
|
||||
android:visibility="gone">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_brdzj"
|
||||
android:layout_width="147dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginRight="12dp"
|
||||
android:background="@drawable/icon_wl_brdzj"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="5|科学" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_aijdc"
|
||||
android:layout_width="162dp"
|
||||
android:layout_height="125dp"
|
||||
android:layout_marginBottom="12dp"
|
||||
android:layout_toRightOf="@+id/iv_brdzj"
|
||||
android:background="@drawable/icon_wl_aijdc"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="1|科学" />
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/iv_qyj"
|
||||
android:layout_width="162dp"
|
||||
android:layout_height="100dp"
|
||||
android:layout_below="@+id/iv_aijdc"
|
||||
android:layout_toRightOf="@+id/iv_brdzj"
|
||||
android:background="@drawable/bg_shape_b6f3fa_40"
|
||||
android:orientation="vertical"
|
||||
android:paddingLeft="9dp">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="12dp"
|
||||
android:text="试卷中心"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12dp" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="2dp"
|
||||
android:text="真题来演练,提升超惊艳"
|
||||
android:textColor="#60ffffff"
|
||||
android:textSize="9dp" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="5dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="44dp"
|
||||
android:layout_height="39dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoSjzx"
|
||||
android:orientation="vertical"
|
||||
android:tag="1669|科学">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="21dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_yw_qz" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="1dp"
|
||||
android:paddingRight="1dp"
|
||||
android:text="期中"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="44dp"
|
||||
android:layout_height="39dp"
|
||||
android:layout_marginHorizontal="6dp"
|
||||
android:layout_marginLeft="6dp"
|
||||
android:layout_marginRight="6dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoSjzx"
|
||||
android:orientation="vertical"
|
||||
android:tag="1670|科学">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="21dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_yw_qm" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="1dp"
|
||||
android:text="期末"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="44dp"
|
||||
android:layout_height="39dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoSjzx"
|
||||
android:orientation="vertical"
|
||||
android:tag="1671|科学">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="21dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_yw_mnk" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingRight="1dp"
|
||||
android:text="模拟考"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</RelativeLayout>
|
||||
</RelativeLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:orientation="vertical">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="116dp"
|
||||
android:layout_height="159dp"
|
||||
android:background="@drawable/icon_kx_jpkc"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_xksp_kx" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="116dp"
|
||||
android:layout_height="128dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:background="@drawable/icon_ls_ykyl"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_ykyl_kx" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
421
app/src/main/res/layout/fg_content_ls.xml
Normal file
421
app/src/main/res/layout/fg_content_ls.xml
Normal file
@@ -0,0 +1,421 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/ll_zjx"
|
||||
android:layout_width="347dp"
|
||||
android:layout_height="300dp"
|
||||
android:background="@drawable/icon_xk_zjx_l"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="16dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tab_tbjzx"
|
||||
android:layout_width="109dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_tab_tbjzx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="7dp"
|
||||
android:text="AI同步精准学"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="11dp"
|
||||
android:visibility="gone" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_tab_tbjzx"
|
||||
android:layout_width="83dp"
|
||||
android:layout_height="27dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:background="@drawable/icon_yw_tbjzx" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tab_dyfx"
|
||||
android:layout_width="97dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_tab_dyfx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="7dp"
|
||||
android:text="AI单元复习"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="11dp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_tab_dyfx"
|
||||
android:layout_width="80dp"
|
||||
android:layout_height="27dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:background="@drawable/icon_yw_dyfx"
|
||||
android:visibility="gone" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tab_jdbk"
|
||||
android:layout_width="89dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_tab_jdbk"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="7dp"
|
||||
android:text="AI阶段备考"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="11dp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_tab_jdbk"
|
||||
android:layout_width="80dp"
|
||||
android:layout_height="27dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:background="@drawable/icon_yw_aijdbk"
|
||||
android:visibility="gone" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tbjzx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="50dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="144dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_xk_ls_tbfd"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_tbfd_ls" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="166dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_xk_wl_khl"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="0|历史" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_dyfx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="50dp"
|
||||
android:orientation="horizontal"
|
||||
android:visibility="gone">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="144dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_wl_dnxfx_bg"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:layout_marginTop="52dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="10|历史">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_zskj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="知识框架"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="2dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dyfx_x" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="11|历史">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_zsdjj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="知识点精讲"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="2dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dyfx_x" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="12|历史">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_xbbj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="学霸笔记"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="2dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dyfx_x" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="13|历史">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_ztjj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="真题精讲"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="166dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_yw_aidyfxl_bg"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="9|历史" />
|
||||
</LinearLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_jdbk"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="50dp"
|
||||
android:orientation="horizontal"
|
||||
android:visibility="gone">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_brdzj"
|
||||
android:layout_width="147dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginRight="12dp"
|
||||
android:background="@drawable/icon_wl_brdzj"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="5|历史" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_aijdc"
|
||||
android:layout_width="162dp"
|
||||
android:layout_height="125dp"
|
||||
android:layout_marginBottom="12dp"
|
||||
android:layout_toRightOf="@+id/iv_brdzj"
|
||||
android:background="@drawable/icon_wl_aijdc"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="1|历史" />
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/iv_qyj"
|
||||
android:layout_width="162dp"
|
||||
android:layout_height="100dp"
|
||||
android:layout_below="@+id/iv_aijdc"
|
||||
android:layout_toRightOf="@+id/iv_brdzj"
|
||||
android:background="@drawable/bg_shape_b6f3fa_40"
|
||||
android:orientation="vertical"
|
||||
android:paddingLeft="9dp">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="12dp"
|
||||
android:text="试卷中心"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12dp" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="2dp"
|
||||
android:text="真题来演练,提升超惊艳"
|
||||
android:textColor="#60ffffff"
|
||||
android:textSize="9dp" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="5dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="44dp"
|
||||
android:layout_height="39dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoSjzx"
|
||||
android:orientation="vertical"
|
||||
android:tag="1669|历史">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="21dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_yw_qz" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="1dp"
|
||||
android:paddingRight="1dp"
|
||||
android:text="期中"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="44dp"
|
||||
android:layout_height="39dp"
|
||||
android:layout_marginHorizontal="6dp"
|
||||
android:layout_marginLeft="6dp"
|
||||
android:layout_marginRight="6dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoSjzx"
|
||||
android:orientation="vertical"
|
||||
android:tag="1670|历史">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="21dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_yw_qm" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="1dp"
|
||||
android:text="期末"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="44dp"
|
||||
android:layout_height="39dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoSjzx"
|
||||
android:orientation="vertical"
|
||||
android:tag="1671|历史">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="21dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_yw_mnk" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingRight="1dp"
|
||||
android:text="模拟考"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</RelativeLayout>
|
||||
</RelativeLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:orientation="vertical">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="116dp"
|
||||
android:layout_height="159dp"
|
||||
android:background="@drawable/icon_ls_jpkc"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_xksp_ls" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="116dp"
|
||||
android:layout_height="128dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:background="@drawable/icon_ls_ykyl"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_ykyl_ls" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
462
app/src/main/res/layout/fg_content_sw.xml
Normal file
462
app/src/main/res/layout/fg_content_sw.xml
Normal file
@@ -0,0 +1,462 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/ll_zjx"
|
||||
android:layout_width="347dp"
|
||||
android:layout_height="300dp"
|
||||
android:background="@drawable/icon_xk_zjx_l"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="16dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tab_tbjzx"
|
||||
android:layout_width="109dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_tab_tbjzx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="7dp"
|
||||
android:text="AI同步精准学"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="11dp"
|
||||
android:visibility="gone" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_tab_tbjzx"
|
||||
android:layout_width="83dp"
|
||||
android:layout_height="27dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:background="@drawable/icon_yw_tbjzx" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tab_dyfx"
|
||||
android:layout_width="97dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_tab_dyfx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="7dp"
|
||||
android:text="AI单元复习"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="11dp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_tab_dyfx"
|
||||
android:layout_width="80dp"
|
||||
android:layout_height="27dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:background="@drawable/icon_yw_dyfx"
|
||||
android:visibility="gone" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tab_jdbk"
|
||||
android:layout_width="89dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_tab_jdbk"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="7dp"
|
||||
android:text="AI阶段备考"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="11dp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_tab_jdbk"
|
||||
android:layout_width="80dp"
|
||||
android:layout_height="27dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:background="@drawable/icon_yw_aijdbk"
|
||||
android:visibility="gone" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tbjzx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="50dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="144dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_xk_sw_tbfd"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_tbfd_sw" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="166dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_xk_wl_khl"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="0|生物" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_dyfx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="50dp"
|
||||
android:orientation="horizontal"
|
||||
android:visibility="gone">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="144dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_wl_dnxfx_bg"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:layout_marginTop="52dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="10|生物">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_zskj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="知识框架"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="2dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dyfx_x" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="11|生物">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_zsdjj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="知识点精讲"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="2dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dyfx_x" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="12|生物">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_xbbj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="学霸笔记"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="2dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dyfx_x" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="13|生物">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_ztjj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="真题精讲"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="166dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_yw_aidyfxl_bg"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="9|生物" />
|
||||
</LinearLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_jdbk"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="50dp"
|
||||
android:orientation="horizontal"
|
||||
android:visibility="gone">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_brdzj"
|
||||
android:layout_width="147dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginRight="12dp"
|
||||
android:background="@drawable/icon_wl_brdzj"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="5|生物" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_aijdc"
|
||||
android:layout_width="162dp"
|
||||
android:layout_height="125dp"
|
||||
android:layout_marginBottom="12dp"
|
||||
android:layout_toRightOf="@+id/iv_brdzj"
|
||||
android:background="@drawable/icon_wl_aijdc"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="1|生物" />
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/iv_qyj"
|
||||
android:layout_width="162dp"
|
||||
android:layout_height="100dp"
|
||||
android:layout_below="@+id/iv_aijdc"
|
||||
android:layout_toRightOf="@+id/iv_brdzj"
|
||||
android:background="@drawable/bg_shape_b6f3fa_40"
|
||||
android:orientation="vertical"
|
||||
android:paddingLeft="9dp">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="12dp"
|
||||
android:text="试卷中心"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12dp" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="2dp"
|
||||
android:text="真题来演练,提升超惊艳"
|
||||
android:textColor="#60ffffff"
|
||||
android:textSize="9dp" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="5dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="44dp"
|
||||
android:layout_height="39dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoSjzx"
|
||||
android:orientation="vertical"
|
||||
android:tag="1669|生物">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="21dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_yw_qz" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="1dp"
|
||||
android:paddingRight="1dp"
|
||||
android:text="期中"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="44dp"
|
||||
android:layout_height="39dp"
|
||||
android:layout_marginHorizontal="6dp"
|
||||
android:layout_marginLeft="6dp"
|
||||
android:layout_marginRight="6dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoSjzx"
|
||||
android:orientation="vertical"
|
||||
android:tag="1670|生物">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="21dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_yw_qm" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="1dp"
|
||||
android:text="期末"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="44dp"
|
||||
android:layout_height="39dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoSjzx"
|
||||
android:orientation="vertical"
|
||||
android:tag="1671|生物">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="21dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_yw_mnk" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingRight="1dp"
|
||||
android:text="模拟考"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</RelativeLayout>
|
||||
</RelativeLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:orientation="vertical">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="116dp"
|
||||
android:layout_height="86dp"
|
||||
android:background="@drawable/icon_sw_jpkc"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_xksp_sw" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="116dp"
|
||||
android:layout_height="86dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:background="@drawable/icon_sw_zxts"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_ztsp_hkswzt" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="116dp"
|
||||
android:layout_height="103dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:background="@drawable/bg_shape_zjxx"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_apps"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:layout_marginRight="12dp"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:text="学习应用"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="11dp" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="19dp"
|
||||
android:layout_height="19dp"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:background="@drawable/icon_yw_zjxx_right" />
|
||||
</RelativeLayout>
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/rv_apps"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="14dp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
461
app/src/main/res/layout/fg_content_wl.xml
Normal file
461
app/src/main/res/layout/fg_content_wl.xml
Normal file
@@ -0,0 +1,461 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/ll_zjx"
|
||||
android:layout_width="347dp"
|
||||
android:layout_height="300dp"
|
||||
android:background="@drawable/icon_xk_zjx_l"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="16dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tab_tbjzx"
|
||||
android:layout_width="109dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_tab_tbjzx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="7dp"
|
||||
android:text="AI同步精准学"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="11dp"
|
||||
android:visibility="gone" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_tab_tbjzx"
|
||||
android:layout_width="83dp"
|
||||
android:layout_height="27dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:background="@drawable/icon_yw_tbjzx" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tab_dyfx"
|
||||
android:layout_width="97dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_tab_dyfx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="7dp"
|
||||
android:text="AI单元复习"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="11dp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_tab_dyfx"
|
||||
android:layout_width="80dp"
|
||||
android:layout_height="27dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:background="@drawable/icon_yw_dyfx"
|
||||
android:visibility="gone" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tab_jdbk"
|
||||
android:layout_width="89dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_tab_jdbk"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="7dp"
|
||||
android:text="AI阶段备考"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="11dp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_tab_jdbk"
|
||||
android:layout_width="80dp"
|
||||
android:layout_height="27dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:background="@drawable/icon_yw_aijdbk"
|
||||
android:visibility="gone" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tbjzx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="50dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="144dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_xk_wl_tbfd"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_tbfd_wl" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="166dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_xk_wl_khl"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="0|物理" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_dyfx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="50dp"
|
||||
android:orientation="horizontal"
|
||||
android:visibility="gone">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="144dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_wl_dnxfx_bg"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:layout_marginTop="52dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="10|物理">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_zskj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="知识框架"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="2dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dyfx_x" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="11|物理">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_zsdjj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="知识点精讲"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="2dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dyfx_x" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="12|物理">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_xbbj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="学霸笔记"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="2dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dyfx_x" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="13|物理">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_ztjj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="真题精讲"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="166dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_yw_aidyfxl_bg"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="9|物理" />
|
||||
</LinearLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_jdbk"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="50dp"
|
||||
android:orientation="horizontal"
|
||||
android:visibility="gone">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_brdzj"
|
||||
android:layout_width="147dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginRight="12dp"
|
||||
android:background="@drawable/icon_wl_brdzj"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="5|物理" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_aijdc"
|
||||
android:layout_width="162dp"
|
||||
android:layout_height="125dp"
|
||||
android:layout_marginBottom="12dp"
|
||||
android:layout_toRightOf="@+id/iv_brdzj"
|
||||
android:background="@drawable/icon_wl_aijdc"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="1|物理" />
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/iv_qyj"
|
||||
android:layout_width="162dp"
|
||||
android:layout_height="100dp"
|
||||
android:layout_below="@+id/iv_aijdc"
|
||||
android:layout_toRightOf="@+id/iv_brdzj"
|
||||
android:background="@drawable/bg_shape_b6f3fa_40"
|
||||
android:orientation="vertical"
|
||||
android:paddingLeft="9dp">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="12dp"
|
||||
android:text="试卷中心"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12dp" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="2dp"
|
||||
android:text="真题来演练,提升超惊艳"
|
||||
android:textColor="#60ffffff"
|
||||
android:textSize="9dp" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="5dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="44dp"
|
||||
android:layout_height="39dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoSjzx"
|
||||
android:orientation="vertical"
|
||||
android:tag="1669|物理">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="21dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_yw_qz" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="1dp"
|
||||
android:paddingRight="1dp"
|
||||
android:text="期中"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="44dp"
|
||||
android:layout_height="39dp"
|
||||
android:layout_marginLeft="6dp"
|
||||
android:layout_marginRight="6dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoSjzx"
|
||||
android:orientation="vertical"
|
||||
android:tag="1670|物理">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="21dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_yw_qm" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="1dp"
|
||||
android:text="期末"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="44dp"
|
||||
android:layout_height="39dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoSjzx"
|
||||
android:orientation="vertical"
|
||||
android:tag="1671|物理">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="21dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_yw_mnk" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingRight="1dp"
|
||||
android:text="模拟考"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</RelativeLayout>
|
||||
</RelativeLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:orientation="vertical">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="116dp"
|
||||
android:layout_height="86dp"
|
||||
android:background="@drawable/icon_wl_jpkc"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_xksp_wl" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="116dp"
|
||||
android:layout_height="86dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:background="@drawable/icon_wl_zxts"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_ztsp_zkwlzt" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="116dp"
|
||||
android:layout_height="103dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:background="@drawable/bg_shape_zjxx"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_apps"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:layout_marginRight="12dp"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:text="学习应用"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="11dp" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="19dp"
|
||||
android:layout_height="19dp"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:background="@drawable/icon_yw_zjxx_right" />
|
||||
</RelativeLayout>
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/rv_apps"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="14dp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
421
app/src/main/res/layout/fg_content_zz.xml
Normal file
421
app/src/main/res/layout/fg_content_zz.xml
Normal file
@@ -0,0 +1,421 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/ll_zjx"
|
||||
android:layout_width="347dp"
|
||||
android:layout_height="300dp"
|
||||
android:background="@drawable/icon_xk_zjx_l"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="16dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tab_tbjzx"
|
||||
android:layout_width="109dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_tab_tbjzx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="7dp"
|
||||
android:text="AI同步精准学"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="11dp"
|
||||
android:visibility="gone" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_tab_tbjzx"
|
||||
android:layout_width="83dp"
|
||||
android:layout_height="27dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:background="@drawable/icon_yw_tbjzx" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tab_dyfx"
|
||||
android:layout_width="97dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_tab_dyfx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="7dp"
|
||||
android:text="AI单元复习"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="11dp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_tab_dyfx"
|
||||
android:layout_width="80dp"
|
||||
android:layout_height="27dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:background="@drawable/icon_yw_dyfx"
|
||||
android:visibility="gone" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tab_jdbk"
|
||||
android:layout_width="89dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_tab_jdbk"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="7dp"
|
||||
android:text="AI阶段备考"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="11dp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_tab_jdbk"
|
||||
android:layout_width="80dp"
|
||||
android:layout_height="27dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:background="@drawable/icon_yw_aijdbk"
|
||||
android:visibility="gone" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tbjzx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="50dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="144dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_xk_zz_tbfd"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_tbfd_zz" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="166dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_xk_wl_khl"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="0|政治" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_dyfx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="50dp"
|
||||
android:orientation="horizontal"
|
||||
android:visibility="gone">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="144dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_wl_dnxfx_bg"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:layout_marginTop="52dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="10|政治">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_zskj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="知识框架"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="2dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dyfx_x" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="11|政治">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_zsdjj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="知识点精讲"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="2dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dyfx_x" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="12|政治">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_xbbj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="学霸笔记"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="2dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dyfx_x" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="13|政治">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_ztjj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="真题精讲"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="166dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_yw_aidyfxl_bg"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="9|政治" />
|
||||
</LinearLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_jdbk"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="50dp"
|
||||
android:orientation="horizontal"
|
||||
android:visibility="gone">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_brdzj"
|
||||
android:layout_width="147dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginRight="12dp"
|
||||
android:background="@drawable/icon_wl_brdzj"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="5|政治" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_aijdc"
|
||||
android:layout_width="162dp"
|
||||
android:layout_height="125dp"
|
||||
android:layout_marginBottom="12dp"
|
||||
android:layout_toRightOf="@+id/iv_brdzj"
|
||||
android:background="@drawable/icon_wl_aijdc"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="1|政治" />
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/iv_qyj"
|
||||
android:layout_width="162dp"
|
||||
android:layout_height="100dp"
|
||||
android:layout_below="@+id/iv_aijdc"
|
||||
android:layout_toRightOf="@+id/iv_brdzj"
|
||||
android:background="@drawable/bg_shape_b6f3fa_40"
|
||||
android:orientation="vertical"
|
||||
android:paddingLeft="9dp">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="12dp"
|
||||
android:text="试卷中心"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12dp" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="2dp"
|
||||
android:text="真题来演练,提升超惊艳"
|
||||
android:textColor="#60ffffff"
|
||||
android:textSize="9dp" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="5dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="44dp"
|
||||
android:layout_height="39dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoSjzx"
|
||||
android:orientation="vertical"
|
||||
android:tag="1669|政治">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="21dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_yw_qz" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="1dp"
|
||||
android:paddingRight="1dp"
|
||||
android:text="期中"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="44dp"
|
||||
android:layout_height="39dp"
|
||||
android:layout_marginHorizontal="6dp"
|
||||
android:layout_marginLeft="6dp"
|
||||
android:layout_marginRight="6dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoSjzx"
|
||||
android:orientation="vertical"
|
||||
android:tag="1670|政治">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="21dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_yw_qm" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="1dp"
|
||||
android:text="期末"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="44dp"
|
||||
android:layout_height="39dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoSjzx"
|
||||
android:orientation="vertical"
|
||||
android:tag="1671|政治">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="21dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_yw_mnk" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingRight="1dp"
|
||||
android:text="模拟考"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</RelativeLayout>
|
||||
</RelativeLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:orientation="vertical">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="116dp"
|
||||
android:layout_height="159dp"
|
||||
android:background="@drawable/icon_ddyfz_jpkc"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_xksp_zz" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="116dp"
|
||||
android:layout_height="128dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:background="@drawable/icon_ls_ykyl"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_ykyl_zz" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
99
app/src/main/res/layout/fragment_ai.xml
Normal file
99
app/src/main/res/layout/fragment_ai.xml
Normal file
@@ -0,0 +1,99 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layout 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"
|
||||
tools:context=".fragment.ai.AiFragment">
|
||||
|
||||
<data>
|
||||
|
||||
<variable
|
||||
name="click"
|
||||
type="com.handuan.os.fragment.ai.AiFragment.BtnClick" />
|
||||
</data>
|
||||
|
||||
<!--基数3.2,图片宽高直接除-->
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="horizontal"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="362dp"
|
||||
android:layout_height="300dp"
|
||||
android:background="@drawable/icon_ai_aiznxxt"
|
||||
android:orientation="vertical">
|
||||
|
||||
<com.youth.banner.Banner
|
||||
android:id="@+id/banner"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="234dp"
|
||||
android:layout_marginTop="47dp"
|
||||
app:banner_indicator_normal_color="@color/black"
|
||||
app:banner_indicator_normal_width="5dp"
|
||||
app:banner_indicator_selected_color="@color/red"
|
||||
app:banner_indicator_selected_width="5dp"
|
||||
app:banner_infinite_loop="false" />
|
||||
|
||||
<com.youth.banner.indicator.CircleIndicator
|
||||
android:id="@+id/indicator"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="6dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="181dp"
|
||||
android:layout_height="300dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_ai_aixxgj"
|
||||
android:orientation="vertical">
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="56dp">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_aizjx"
|
||||
android:layout_width="156dp"
|
||||
android:layout_height="156dp"
|
||||
android:layout_marginBottom="12dp"
|
||||
android:background="@drawable/icon_ai_aizjx"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_tlzjcc" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_zwpg"
|
||||
android:layout_width="72dp"
|
||||
android:layout_height="63dp"
|
||||
android:layout_below="@+id/iv_aizjx"
|
||||
android:background="@drawable/icon_ai_zwpg"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_zwpg_six" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="72dp"
|
||||
android:layout_height="63dp"
|
||||
android:layout_below="@+id/iv_aizjx"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:layout_toRightOf="@+id/iv_zwpg"
|
||||
android:background="@drawable/icon_ai_zndy"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_zndy" />
|
||||
</RelativeLayout>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</layout>
|
||||
@@ -6,469 +6,542 @@
|
||||
|
||||
<data>
|
||||
|
||||
<variable
|
||||
name="click"
|
||||
type="com.handuan.os.fragment.chinese.ChineseFragment.BtnClick" />
|
||||
</data>
|
||||
|
||||
<com.handuan.os.view.CustomContent
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="horizontal"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintVertical_bias="0.35">
|
||||
<RelativeLayout
|
||||
android:id="@+id/ll_zjx"
|
||||
android:layout_width="375dp"
|
||||
android:layout_height="300dp"
|
||||
android:background="@drawable/icon_yw_zjx_l"
|
||||
android:orientation="vertical">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/constraintLayout3"
|
||||
android:layout_width="359dp"
|
||||
android:layout_height="210dp"
|
||||
android:background="@drawable/chinese_box"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/constraintLayout"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:maxLines="1"
|
||||
android:text="人教版"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="8sp"
|
||||
android:visibility="gone"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toStartOf="@+id/textView2"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="@+id/textView2" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/textView2"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="8dp"
|
||||
android:maxLines="1"
|
||||
android:text="同步学习"
|
||||
android:visibility="gone"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="14sp"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="15dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/linearLayout"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:orientation="horizontal"
|
||||
android:layout_marginTop="22dp"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@+id/constraintLayout">
|
||||
android:id="@+id/ll_tab_tbjzx"
|
||||
android:layout_width="109dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1">
|
||||
<TextView
|
||||
android:id="@+id/tv_tab_tbjzx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="6dp"
|
||||
android:text="AI同步精准学"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="11sp"
|
||||
android:visibility="gone" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_sync_video"
|
||||
android:layout_width="159dp"
|
||||
android:layout_height="163dp"
|
||||
android:layout_marginStart="6dp"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerCrop"
|
||||
android:src="@drawable/chinese_synchronous_explanation"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="159dp"
|
||||
android:layout_height="163dp"
|
||||
android:layout_marginEnd="6dp"
|
||||
android:background="@drawable/chinese_card_bg"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_more_app"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="4dp"
|
||||
android:text="查看更多…"
|
||||
android:textColor="@color/black"
|
||||
android:textSize="7sp"
|
||||
android:visibility="gone"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:layout_marginBottom="8dp"
|
||||
android:orientation="vertical"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@+id/tv_more_app">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1"
|
||||
android:orientation="horizontal"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/cl_tutoring"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView4"
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerInside"
|
||||
android:src="@drawable/chinese_synchronous_tutoring"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/cl_near_antonyms"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView5"
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerInside"
|
||||
android:src="@drawable/chinese_near_antonyms"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/cl_composition"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView6"
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerInside"
|
||||
android:src="@drawable/chinese_read_composition"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1"
|
||||
android:orientation="horizontal"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/cl_read"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView7"
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerInside"
|
||||
android:src="@drawable/chinese_featured_reading"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/cl_character"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView8"
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerInside"
|
||||
android:src="@drawable/chinese_character"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/cl_classical"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView9"
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerInside"
|
||||
android:src="@drawable/chinese_classical"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1"
|
||||
android:orientation="horizontal"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/cl_rhetoric"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView10"
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerInside"
|
||||
android:src="@drawable/chinese_rhetoric"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/cl_treasure"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView11"
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerInside"
|
||||
android:src="@drawable/chinese_treasure"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/cl_punctuation"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView12"
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerInside"
|
||||
android:src="@drawable/chinese_punctuation"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
<ImageView
|
||||
android:id="@+id/iv_tab_tbjzx"
|
||||
android:layout_width="83dp"
|
||||
android:layout_height="26dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:background="@drawable/icon_yw_tbjzx" />
|
||||
</LinearLayout>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tab_dyfx"
|
||||
android:layout_width="96dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
<TextView
|
||||
android:id="@+id/tv_tab_dyfx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="6dp"
|
||||
android:text="AI单元复习"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="11sp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_tab_dyfx"
|
||||
android:layout_width="80dp"
|
||||
android:layout_height="26dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:background="@drawable/icon_yw_dyfx"
|
||||
android:visibility="gone" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tab_jdbk"
|
||||
android:layout_width="89dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_tab_jdbk"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="6dp"
|
||||
android:text="AI阶段备考"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="11sp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_tab_jdbk"
|
||||
android:layout_width="80dp"
|
||||
android:layout_height="26dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:background="@drawable/icon_yw_aijdbk"
|
||||
android:visibility="gone" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tbjzx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="0dp"
|
||||
android:layout_marginStart="9dp"
|
||||
app:layout_constraintBottom_toBottomOf="@+id/constraintLayout3"
|
||||
app:layout_constraintStart_toEndOf="@+id/constraintLayout3"
|
||||
app:layout_constraintTop_toTopOf="@+id/constraintLayout3">
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="50dp"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:orientation="vertical">
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="150dp"
|
||||
android:layout_height="125dp"
|
||||
android:background="@drawable/icon_yw_tbdd_bg"
|
||||
android:paddingLeft="7dp">
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_kb"
|
||||
android:layout_width="101dp"
|
||||
android:layout_height="118dp"
|
||||
android:layout_marginLeft="13dp"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_tbdd_yw_new_six">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="88dp"
|
||||
android:layout_height="14dp"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:background="@drawable/icon_yw_tbdd_dizuo" />
|
||||
|
||||
<View
|
||||
android:layout_width="72dp"
|
||||
android:layout_height="102dp"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_marginTop="11dp"
|
||||
android:background="@drawable/bg_shape_tbdd_book_bg" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_cover"
|
||||
android:layout_width="66dp"
|
||||
android:layout_height="95dp"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_marginTop="15dp"
|
||||
android:background="@drawable/icon_yw_tjsb" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="46dp"
|
||||
android:layout_height="21dp"
|
||||
android:layout_marginLeft="40dp"
|
||||
android:layout_marginTop="93dp"
|
||||
android:background="@drawable/icon_tbdd_diandu" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_zb"
|
||||
android:layout_width="37dp"
|
||||
android:layout_height="37dp"
|
||||
android:layout_marginTop="3dp"
|
||||
android:background="@drawable/icon_kbdd_zb"
|
||||
android:visibility="gone" />
|
||||
</RelativeLayout>
|
||||
</RelativeLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="150dp"
|
||||
android:layout_height="103dp"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_marginTop="9dp"
|
||||
android:background="@drawable/icon_yw_tbfd_bg"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_tbfd_yw" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_dictation"
|
||||
android:layout_width="142dp"
|
||||
android:layout_height="96dp"
|
||||
android:layout_weight="1"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerCrop"
|
||||
android:src="@drawable/chinese_precision_science"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
android:layout_width="187dp"
|
||||
android:layout_height="237dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_yw_khl"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="0|语文" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_dyfx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="50dp"
|
||||
android:orientation="horizontal"
|
||||
android:visibility="gone">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="150dp"
|
||||
android:layout_height="237dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_yw_dnxfx_bg"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:layout_marginTop="52dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="10|语文">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_zskj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="7dp"
|
||||
android:text="知识框架"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9sp" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="1dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dyfx_x" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="11|语文">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_zsdjj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="7dp"
|
||||
android:text="知识点精讲"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9sp" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="1dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dyfx_x" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="12|语文">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_xbbj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="7dp"
|
||||
android:text="学霸笔记"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9sp" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="1dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dyfx_x" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="13|语文">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_ztjj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="7dp"
|
||||
android:text="真题精讲"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9sp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_character"
|
||||
android:layout_width="67dp"
|
||||
android:layout_height="105dp"
|
||||
android:layout_weight="1"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerCrop"
|
||||
android:src="@drawable/chinese_excellent_volume"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent" />
|
||||
android:layout_width="187dp"
|
||||
android:layout_height="237dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_yw_aidyfxl_bg"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="9|语文" />
|
||||
</LinearLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_jdbk"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="50dp"
|
||||
android:orientation="horizontal"
|
||||
android:visibility="gone">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_foundation"
|
||||
android:layout_width="67dp"
|
||||
android:layout_height="105dp"
|
||||
android:layout_weight="1"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerCrop"
|
||||
android:src="@drawable/chinese_poetry_world"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent" />
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
android:id="@+id/iv_brdzj"
|
||||
android:layout_width="168dp"
|
||||
android:layout_height="237dp"
|
||||
android:layout_marginRight="12dp"
|
||||
android:background="@drawable/icon_yw_brdzj"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="5|语文" />
|
||||
|
||||
</com.handuan.os.view.CustomContent>
|
||||
<ImageView
|
||||
android:id="@+id/iv_aijdc"
|
||||
android:layout_width="168dp"
|
||||
android:layout_height="125dp"
|
||||
android:layout_marginBottom="12dp"
|
||||
android:layout_toRightOf="@+id/iv_brdzj"
|
||||
android:background="@drawable/icon_yw_aijdc"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="1|语文" />
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/iv_qyj"
|
||||
android:layout_width="168dp"
|
||||
android:layout_height="100dp"
|
||||
android:layout_below="@+id/iv_aijdc"
|
||||
android:layout_toRightOf="@+id/iv_brdzj"
|
||||
android:background="@drawable/bg_shape_b6f3fa_40"
|
||||
android:orientation="vertical"
|
||||
android:paddingLeft="12dp">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="12dp"
|
||||
android:text="试卷中心"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12sp" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="1dp"
|
||||
android:text="真题来演练,提升超惊艳"
|
||||
android:textColor="#60ffffff"
|
||||
android:textSize="8sp" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="4dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="43dp"
|
||||
android:layout_height="38dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoSjzx"
|
||||
android:orientation="vertical"
|
||||
android:tag="1669|语文">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="20dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_yw_qz" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="1dp"
|
||||
android:paddingRight="2dp"
|
||||
android:text="期中"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="8sp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="43dp"
|
||||
android:layout_height="38dp"
|
||||
android:layout_marginLeft="9dp"
|
||||
android:layout_marginRight="9dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoSjzx"
|
||||
android:orientation="vertical"
|
||||
android:tag="1670|语文">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="20dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_yw_qm" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="1dp"
|
||||
android:text="期末"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="8sp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="43dp"
|
||||
android:layout_height="38dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoSjzx"
|
||||
android:orientation="vertical"
|
||||
android:tag="1671|语文">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="20dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_yw_mnk" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingRight="1dp"
|
||||
android:text="模拟考"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="8sp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</RelativeLayout>
|
||||
</RelativeLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:orientation="vertical">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="168dp"
|
||||
android:layout_height="85dp"
|
||||
android:background="@drawable/icon_yw_jpkc"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_xksp_yw" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_zxts"
|
||||
android:layout_width="168dp"
|
||||
android:layout_height="85dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:background="@drawable/icon_yw_zxts"
|
||||
android:onClick="onClick" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="168dp"
|
||||
android:layout_height="103dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:background="@drawable/bg_shape_zjxx"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_apps"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:layout_marginRight="12dp"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:text="学习应用"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="11sp" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="18dp"
|
||||
android:layout_height="18dp"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:background="@drawable/icon_yw_zjxx_right" />
|
||||
</RelativeLayout>
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/rv_apps"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="13dp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</layout>
|
||||
@@ -8,443 +8,117 @@
|
||||
|
||||
</data>
|
||||
|
||||
<com.handuan.os.view.CustomContent
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
android:layout_height="match_parent"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/rv_title"
|
||||
android:layout_width="89dp"
|
||||
android:layout_height="300dp"
|
||||
android:layout_marginTop="19dp"
|
||||
android:layout_marginBottom="19dp"
|
||||
android:background="@drawable/icon_xk_tab_bg"
|
||||
android:paddingTop="12dp"
|
||||
android:paddingBottom="12dp"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintVertical_bias="0.35">
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/constraintLayout6"
|
||||
android:layout_width="359dp"
|
||||
android:layout_height="210dp"
|
||||
android:background="@drawable/complex_box"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
<com.handuan.os.view.jxw.widget.NoSlideViewPager
|
||||
android:id="@+id/subject_viewPager"
|
||||
android:layout_width="475dp"
|
||||
android:layout_height="300dp"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintStart_toEndOf="@+id/rv_title"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/textView7"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="8dp"
|
||||
android:visibility="gone"
|
||||
android:text="综合学习"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="14sp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@+id/textView7">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_marginTop="22dp"
|
||||
android:layout_marginStart="16dp"
|
||||
android:layout_marginEnd="16dp"
|
||||
android:layout_marginBottom="16dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="148dp"
|
||||
android:layout_height="66dp"
|
||||
android:background="@drawable/complex_politics_box"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_marginTop="19dp"
|
||||
android:orientation="horizontal"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/cl_politics_video"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView14"
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:src="@drawable/complex_video"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/cl_politics_coach"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView15"
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:src="@drawable/complex_book"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</LinearLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="148dp"
|
||||
android:layout_height="66dp"
|
||||
android:background="@drawable/complex_geography_box"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_marginTop="19dp"
|
||||
android:orientation="horizontal"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/cl_geography_video"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView16"
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:src="@drawable/complex_video"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/cl_geography_coach"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView17"
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:src="@drawable/complex_book"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</LinearLayout>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="148dp"
|
||||
android:layout_height="66dp"
|
||||
android:background="@drawable/complex_history_box"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_marginTop="19dp"
|
||||
android:orientation="horizontal"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/cl_history_video"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView18"
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:src="@drawable/complex_video"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/cl_history_coach"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView19"
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:src="@drawable/complex_book"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</LinearLayout>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="148dp"
|
||||
android:layout_height="66dp"
|
||||
android:background="@drawable/complex_science_box"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_marginTop="19dp"
|
||||
android:orientation="horizontal"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/cl_science_video"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView20"
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:src="@drawable/complex_video"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/cl_science_coach"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView21"
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:src="@drawable/complex_book"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</LinearLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="210dp"
|
||||
android:layout_marginStart="10dp"
|
||||
app:layout_constraintBottom_toBottomOf="@id/constraintLayout6"
|
||||
app:layout_constraintStart_toEndOf="@id/constraintLayout6"
|
||||
app:layout_constraintTop_toTopOf="@id/constraintLayout6">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_video"
|
||||
android:layout_width="141dp"
|
||||
android:layout_height="100dp"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerCrop"
|
||||
android:src="@drawable/complex_knowledge_video"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_famous_teacher"
|
||||
android:layout_width="141dp"
|
||||
android:layout_height="100dp"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerCrop"
|
||||
android:src="@drawable/complex_famous_teacher"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</com.handuan.os.view.CustomContent>
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_xx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:visibility="gone">
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/ll_left"
|
||||
android:layout_width="250dp"
|
||||
android:layout_height="300dp"
|
||||
android:background="@drawable/icon_xk_ddyfz_bg">
|
||||
|
||||
<com.handuan.os.view.jxw.view.AlphaImageView
|
||||
android:id="@+id/iv_zz_tbsp"
|
||||
android:layout_width="106dp"
|
||||
android:layout_height="94dp"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:layout_marginBottom="12dp"
|
||||
android:background="@drawable/icon_xk_ddyfz_tbsp"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_xksp_ddyfz" />
|
||||
|
||||
<com.handuan.os.view.jxw.view.AlphaImageView
|
||||
android:id="@+id/iv_zz_tbfd"
|
||||
android:layout_width="106dp"
|
||||
android:layout_height="94dp"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:layout_marginBottom="12dp"
|
||||
android:layout_toRightOf="@+id/iv_zz_tbsp"
|
||||
android:background="@drawable/icon_xk_ddyfz_tbfd"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_tbfd_zz" />
|
||||
</RelativeLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="294dp"
|
||||
android:layout_height="300dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:layout_toRightOf="@+id/ll_left"
|
||||
android:background="@drawable/icon_xk_kx_bg"
|
||||
android:orientation="vertical"
|
||||
android:paddingTop="194dp">
|
||||
|
||||
<com.handuan.os.view.jxw.view.AlphaImageView
|
||||
android:id="@+id/kxtbkt"
|
||||
android:layout_width="81dp"
|
||||
android:layout_height="94dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_xk_kx_tbsp"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_xksp_kx" />
|
||||
|
||||
<com.handuan.os.view.jxw.view.AlphaImageView
|
||||
android:id="@+id/kxtbfd"
|
||||
android:layout_width="81dp"
|
||||
android:layout_height="94dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:layout_toRightOf="@+id/kxtbkt"
|
||||
android:background="@drawable/icon_xk_kx_tbfd"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_tbfd_kx" />
|
||||
|
||||
<com.handuan.os.view.jxw.view.AlphaImageView
|
||||
android:layout_width="81dp"
|
||||
android:layout_height="94dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:layout_toRightOf="@+id/kxtbfd"
|
||||
android:background="@drawable/icon_xk_kx_mlkxxsy"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_ztsp_mlkxxsy_new" />
|
||||
</RelativeLayout>
|
||||
</RelativeLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</layout>
|
||||
@@ -8,160 +8,551 @@
|
||||
|
||||
</data>
|
||||
|
||||
<FrameLayout
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="horizontal"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintVertical_bias="0.35">
|
||||
<RelativeLayout
|
||||
android:id="@+id/ll_zjx"
|
||||
android:layout_width="375dp"
|
||||
android:layout_height="300dp"
|
||||
android:background="@drawable/icon_yw_zjx_l"
|
||||
android:orientation="vertical">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/constraintLayout3"
|
||||
android:layout_width="359dp"
|
||||
android:layout_height="210dp"
|
||||
android:background="@drawable/english_box"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:orientation="horizontal"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="16dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tab_tbjzx"
|
||||
android:layout_width="109dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/textView2"
|
||||
android:id="@+id/tv_tab_tbjzx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="7dp"
|
||||
android:text="AI同步精准学"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="11dp"
|
||||
android:visibility="gone" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_tab_tbjzx"
|
||||
android:layout_width="83dp"
|
||||
android:layout_height="27dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:maxLines="1"
|
||||
android:text="同步学习"
|
||||
android:visibility="gone"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="14sp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
android:background="@drawable/icon_yw_tbjzx" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tab_dyfx"
|
||||
android:layout_width="97dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_tab_dyfx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="7dp"
|
||||
android:text="AI单元复习"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="11dp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView5"
|
||||
android:layout_width="214dp"
|
||||
android:layout_height="163dp"
|
||||
android:layout_marginStart="14dp"
|
||||
android:layout_marginBottom="8dp"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerCrop"
|
||||
android:src="@drawable/english_explanation"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent" />
|
||||
android:id="@+id/iv_tab_dyfx"
|
||||
android:layout_width="80dp"
|
||||
android:layout_height="27dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:background="@drawable/icon_yw_dyfx"
|
||||
android:visibility="gone" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tab_jdbk"
|
||||
android:layout_width="89dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_tab_jdbk"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="7dp"
|
||||
android:text="AI阶段备考"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="11dp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView6"
|
||||
android:layout_width="101dp"
|
||||
android:layout_height="47dp"
|
||||
android:layout_marginStart="9dp"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerCrop"
|
||||
android:src="@drawable/english_synchronous_vocabulary"
|
||||
app:layout_constraintStart_toEndOf="@+id/imageView5"
|
||||
app:layout_constraintTop_toTopOf="@+id/imageView5" />
|
||||
android:id="@+id/iv_tab_jdbk"
|
||||
android:layout_width="80dp"
|
||||
android:layout_height="27dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:background="@drawable/icon_yw_aijdbk"
|
||||
android:visibility="gone" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView7"
|
||||
android:layout_width="101dp"
|
||||
android:layout_height="47dp"
|
||||
android:layout_marginStart="9dp"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerCrop"
|
||||
android:src="@drawable/english_listen_read"
|
||||
app:layout_constraintBottom_toTopOf="@+id/imageView8"
|
||||
app:layout_constraintStart_toEndOf="@+id/imageView5"
|
||||
app:layout_constraintTop_toBottomOf="@+id/imageView6" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView8"
|
||||
android:layout_width="101dp"
|
||||
android:layout_height="47dp"
|
||||
android:layout_marginStart="9dp"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerCrop"
|
||||
android:src="@drawable/english_unit_practice"
|
||||
app:layout_constraintBottom_toBottomOf="@+id/imageView5"
|
||||
app:layout_constraintStart_toEndOf="@+id/imageView5" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tbjzx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="0dp"
|
||||
android:layout_marginStart="9dp"
|
||||
app:layout_constraintBottom_toBottomOf="@+id/constraintLayout3"
|
||||
app:layout_constraintStart_toEndOf="@+id/constraintLayout3"
|
||||
app:layout_constraintTop_toTopOf="@+id/constraintLayout3">
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="50dp"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="142dp"
|
||||
android:layout_height="209dp"
|
||||
android:layout_weight="1"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerCrop"
|
||||
android:src="@drawable/math_excellent_volume"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:orientation="vertical">
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="150dp"
|
||||
android:layout_height="125dp"
|
||||
android:background="@drawable/icon_yw_tbdd_bg"
|
||||
android:paddingLeft="8dp">
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_kb"
|
||||
android:layout_width="102dp"
|
||||
android:layout_height="119dp"
|
||||
android:layout_marginLeft="13dp"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_tbdd_yy_new_six">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="88dp"
|
||||
android:layout_height="15dp"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:background="@drawable/icon_yw_tbdd_dizuo" />
|
||||
|
||||
<View
|
||||
android:layout_width="72dp"
|
||||
android:layout_height="102dp"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_marginTop="12dp"
|
||||
android:background="@drawable/bg_shape_tbdd_book_bg" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_cover"
|
||||
android:layout_width="66dp"
|
||||
android:layout_height="96dp"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_marginTop="15dp"
|
||||
android:background="@drawable/icon_yw_tjsb" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="47dp"
|
||||
android:layout_height="22dp"
|
||||
android:layout_marginLeft="41dp"
|
||||
android:layout_marginTop="94dp"
|
||||
android:background="@drawable/icon_tbdd_diandu" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_zb"
|
||||
android:layout_width="38dp"
|
||||
android:layout_height="38dp"
|
||||
android:layout_marginTop="3dp"
|
||||
android:background="@drawable/icon_kbdd_zb" />
|
||||
</RelativeLayout>
|
||||
</RelativeLayout>
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView9"
|
||||
android:layout_width="142dp"
|
||||
android:layout_height="64dp"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerCrop"
|
||||
android:src="@drawable/english_remember_words"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
android:layout_width="150dp"
|
||||
android:layout_height="103dp"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_marginTop="9dp"
|
||||
android:background="@drawable/icon_yw_tbfd_bg"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_tbfd_yy" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="188dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_yw_khl"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="0|英语" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_dyfx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="50dp"
|
||||
android:orientation="horizontal"
|
||||
android:visibility="gone">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="151dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_yw_dnxfx_bg"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:layout_marginTop="52dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="10|英语">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_zskj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="知识框架"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView10"
|
||||
android:layout_width="142dp"
|
||||
android:layout_height="64dp"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerCrop"
|
||||
android:src="@drawable/english_listen_and_speak_special"
|
||||
app:layout_constraintBottom_toTopOf="@+id/imageView11"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@+id/imageView9" />
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="2dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dyfx_x" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="11|英语">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_zsdjj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="知识点精讲"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView11"
|
||||
android:layout_width="142dp"
|
||||
android:layout_height="64dp"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerCrop"
|
||||
android:src="@drawable/english_precision_learning"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent" />
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="2dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dyfx_x" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="12|英语">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_xbbj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="学霸笔记"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="2dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dyfx_x" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="13|英语">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_ztjj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="真题精讲"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="188dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_yw_aidyfxl_bg"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="9|英语" />
|
||||
</LinearLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_jdbk"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="50dp"
|
||||
android:orientation="horizontal"
|
||||
android:visibility="gone">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_brdzj"
|
||||
android:layout_width="169dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginRight="12dp"
|
||||
android:background="@drawable/icon_yw_brdzj"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="5|英语" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_aijdc"
|
||||
android:layout_width="169dp"
|
||||
android:layout_height="125dp"
|
||||
android:layout_marginBottom="12dp"
|
||||
android:layout_toRightOf="@+id/iv_brdzj"
|
||||
android:background="@drawable/icon_yw_aijdc"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="1|英语" />
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/iv_qyj"
|
||||
android:layout_width="169dp"
|
||||
android:layout_height="100dp"
|
||||
android:layout_below="@+id/iv_aijdc"
|
||||
android:layout_toRightOf="@+id/iv_brdzj"
|
||||
android:background="@drawable/bg_shape_b6f3fa_40"
|
||||
android:orientation="vertical"
|
||||
android:paddingLeft="12dp">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="12dp"
|
||||
android:text="试卷中心"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12dp" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="2dp"
|
||||
android:text="真题来演练,提升超惊艳"
|
||||
android:textColor="#60ffffff"
|
||||
android:textSize="9dp" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="5dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="44dp"
|
||||
android:layout_height="39dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoSjzx"
|
||||
android:orientation="vertical"
|
||||
android:tag="1669|英语">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="21dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_yw_qz" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="1dp"
|
||||
android:paddingRight="2dp"
|
||||
android:text="期中"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="44dp"
|
||||
android:layout_height="39dp"
|
||||
android:layout_marginLeft="9dp"
|
||||
android:layout_marginRight="9dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoSjzx"
|
||||
android:orientation="vertical"
|
||||
android:tag="1670|英语">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="21dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_yw_qm" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="1dp"
|
||||
android:text="期末"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="44dp"
|
||||
android:layout_height="39dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoSjzx"
|
||||
android:orientation="vertical"
|
||||
android:tag="1671|英语">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="21dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_yw_mnk" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingRight="1dp"
|
||||
android:text="模拟考"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</RelativeLayout>
|
||||
</RelativeLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:orientation="vertical">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="169dp"
|
||||
android:layout_height="86dp"
|
||||
android:background="@drawable/icon_yy_xx_lwxfy"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/taf_args_xfy" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="12dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="78dp"
|
||||
android:layout_height="86dp"
|
||||
android:background="@drawable/icon_yy_xx_jpkc"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_xksp_yy" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_zxts"
|
||||
android:layout_width="78dp"
|
||||
android:layout_height="86dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_yy_xx_zxts"
|
||||
android:onClick="onClick" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="169dp"
|
||||
android:layout_height="103dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:background="@drawable/bg_shape_zjxx"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_apps"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:layout_marginRight="12dp"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:text="学习应用"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="11dp" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="19dp"
|
||||
android:layout_height="19dp"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:background="@drawable/icon_yw_zjxx_right" />
|
||||
</RelativeLayout>
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/rv_apps"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="14dp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
</FrameLayout>
|
||||
</layout>
|
||||
@@ -8,420 +8,478 @@
|
||||
|
||||
</data>
|
||||
|
||||
<FrameLayout
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="horizontal"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintVertical_bias="0.35">
|
||||
<RelativeLayout
|
||||
android:id="@+id/ll_zjx"
|
||||
android:layout_width="375dp"
|
||||
android:layout_height="300dp"
|
||||
android:background="@drawable/icon_yw_zjx_l"
|
||||
android:orientation="vertical">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/constraintLayout3"
|
||||
android:layout_width="359dp"
|
||||
android:layout_height="210dp"
|
||||
android:background="@drawable/math_box"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/constraintLayout"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/textView2"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="8dp"
|
||||
android:maxLines="1"
|
||||
android:text="同步学习"
|
||||
android:visibility="gone"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="14sp"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="16dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/linearLayout"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_marginTop="22dp"
|
||||
android:orientation="horizontal"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@+id/constraintLayout">
|
||||
android:id="@+id/ll_tab_tbjzx"
|
||||
android:layout_width="109dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1">
|
||||
<TextView
|
||||
android:id="@+id/tv_tab_tbjzx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="7dp"
|
||||
android:text="AI同步精准学"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="11dp"
|
||||
android:visibility="gone" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_sync_video"
|
||||
android:layout_width="159dp"
|
||||
android:layout_height="163dp"
|
||||
android:layout_marginStart="6dp"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerCrop"
|
||||
android:src="@drawable/math_synchronous_explanation"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="159dp"
|
||||
android:layout_height="163dp"
|
||||
android:layout_marginEnd="6dp"
|
||||
android:background="@drawable/math_card_bg"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:layout_marginBottom="8dp"
|
||||
android:orientation="vertical"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1"
|
||||
android:orientation="horizontal"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/cl_tutoring"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView4"
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerInside"
|
||||
android:src="@drawable/math_synchronous_tutoring"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/cl_near_antonyms"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView5"
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerInside"
|
||||
android:src="@drawable/math_problem_training"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/cl_composition"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView6"
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerInside"
|
||||
android:src="@drawable/math_olympiad_training"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1"
|
||||
android:orientation="horizontal"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/cl_read"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView7"
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerInside"
|
||||
android:src="@drawable/math_equation_solution"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/cl_character"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView8"
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerInside"
|
||||
android:src="@drawable/mathematical_basis"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/cl_classical"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView9"
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerInside"
|
||||
android:src="@drawable/math_arithmetic"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1"
|
||||
android:orientation="horizontal"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/cl_encyclopedia"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView10"
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerInside"
|
||||
android:src="@drawable/math_encyclopedia"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/cl_number"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView11"
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerInside"
|
||||
android:src="@drawable/math_number"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:id="@+id/cl_formula"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_weight="1">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imageView12"
|
||||
android:layout_width="40dp"
|
||||
android:layout_height="40dp"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerInside"
|
||||
android:src="@drawable/math_formula"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
<ImageView
|
||||
android:id="@+id/iv_tab_tbjzx"
|
||||
android:layout_width="83dp"
|
||||
android:layout_height="27dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:background="@drawable/icon_yw_tbjzx" />
|
||||
</LinearLayout>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tab_dyfx"
|
||||
android:layout_width="97dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
<TextView
|
||||
android:id="@+id/tv_tab_dyfx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="7dp"
|
||||
android:text="AI单元复习"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="11dp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_tab_dyfx"
|
||||
android:layout_width="80dp"
|
||||
android:layout_height="27dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:background="@drawable/icon_yw_dyfx"
|
||||
android:visibility="gone" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tab_jdbk"
|
||||
android:layout_width="89dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_tab_jdbk"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="7dp"
|
||||
android:text="AI阶段备考"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="11dp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_tab_jdbk"
|
||||
android:layout_width="80dp"
|
||||
android:layout_height="27dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:background="@drawable/icon_yw_aijdbk"
|
||||
android:visibility="gone" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_tbjzx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="0dp"
|
||||
android:layout_marginStart="9dp"
|
||||
app:layout_constraintBottom_toBottomOf="@+id/constraintLayout3"
|
||||
app:layout_constraintStart_toEndOf="@+id/constraintLayout3"
|
||||
app:layout_constraintTop_toTopOf="@+id/constraintLayout3">
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="50dp"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_precision_learning"
|
||||
android:layout_width="140dp"
|
||||
android:layout_height="209dp"
|
||||
android:layout_weight="1"
|
||||
android:adjustViewBounds="true"
|
||||
android:scaleType="centerCrop"
|
||||
android:src="@drawable/math_excellent_volume"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
android:layout_width="150dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_sx_tbfd_bg"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_tbfd_sx" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="188dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_yw_khl"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="0|数学" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_dyfx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="50dp"
|
||||
android:orientation="horizontal"
|
||||
android:visibility="gone">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="151dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_yw_dnxfx_bg"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:layout_marginTop="52dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="10|数学">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_zskj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="知识框架"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="2dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dyfx_x" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="11|数学">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_zsdjj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="知识点精讲"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="2dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dyfx_x" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="12|数学">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_xbbj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="学霸笔记"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginTop="2dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dyfx_x" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="112dp"
|
||||
android:layout_height="31dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoJzx"
|
||||
android:orientation="horizontal"
|
||||
android:tag="13|数学">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dyfx_ztjj" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:text="真题精讲"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="188dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_yw_aidyfxl_bg"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="9|数学" />
|
||||
</LinearLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_jdbk"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="50dp"
|
||||
android:orientation="horizontal"
|
||||
android:visibility="gone">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_brdzj"
|
||||
android:layout_width="169dp"
|
||||
android:layout_height="238dp"
|
||||
android:layout_marginRight="12dp"
|
||||
android:background="@drawable/icon_yw_brdzj"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="5|数学" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_aijdc"
|
||||
android:layout_width="169dp"
|
||||
android:layout_height="125dp"
|
||||
android:layout_marginBottom="12dp"
|
||||
android:layout_toRightOf="@+id/iv_brdzj"
|
||||
android:background="@drawable/icon_yw_aijdc"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="1|数学" />
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/iv_qyj"
|
||||
android:layout_width="169dp"
|
||||
android:layout_height="100dp"
|
||||
android:layout_below="@+id/iv_aijdc"
|
||||
android:layout_toRightOf="@+id/iv_brdzj"
|
||||
android:background="@drawable/bg_shape_b6f3fa_40"
|
||||
android:orientation="vertical"
|
||||
android:paddingLeft="12dp">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="12dp"
|
||||
android:text="试卷中心"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12dp" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="2dp"
|
||||
android:text="真题来演练,提升超惊艳"
|
||||
android:textColor="#60ffffff"
|
||||
android:textSize="9dp" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="5dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="44dp"
|
||||
android:layout_height="39dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoSjzx"
|
||||
android:orientation="vertical"
|
||||
android:tag="1669|数学">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="21dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_yw_qz" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="1dp"
|
||||
android:paddingRight="2dp"
|
||||
android:text="期中"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="44dp"
|
||||
android:layout_height="39dp"
|
||||
android:layout_marginLeft="9dp"
|
||||
android:layout_marginRight="9dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoSjzx"
|
||||
android:orientation="vertical"
|
||||
android:tag="1670|数学">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="21dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_yw_qm" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="1dp"
|
||||
android:text="期末"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="44dp"
|
||||
android:layout_height="39dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onGoSjzx"
|
||||
android:orientation="vertical"
|
||||
android:tag="1671|数学">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="21dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_yw_mnk" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingRight="1dp"
|
||||
android:text="模拟考"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</RelativeLayout>
|
||||
</RelativeLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:orientation="vertical">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="169dp"
|
||||
android:layout_height="86dp"
|
||||
android:background="@drawable/icon_sx_jpkc"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_xksp_sx" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_zxts"
|
||||
android:layout_width="169dp"
|
||||
android:layout_height="86dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:background="@drawable/icon_sx_zxts"
|
||||
android:onClick="onClick" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="169dp"
|
||||
android:layout_height="103dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:background="@drawable/bg_shape_zjxx"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_apps"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:layout_marginRight="12dp"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:text="学习应用"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="11dp" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="19dp"
|
||||
android:layout_height="19dp"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:background="@drawable/icon_yw_zjxx_right" />
|
||||
</RelativeLayout>
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/rv_apps"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="14dp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
</FrameLayout>
|
||||
</layout>
|
||||
367
app/src/main/res/layout/fragment_mine.xml
Normal file
367
app/src/main/res/layout/fragment_mine.xml
Normal file
@@ -0,0 +1,367 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layout 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"
|
||||
tools:context=".fragment.mine.MineFragment">
|
||||
|
||||
<data>
|
||||
|
||||
<variable
|
||||
name="click"
|
||||
type="com.handuan.os.fragment.mine.MineFragment.BtnClick" />
|
||||
</data>
|
||||
|
||||
<!--基数3.2,图片宽高直接除-->
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="horizontal"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_grxx"
|
||||
android:layout_width="272dp"
|
||||
android:layout_height="62dp"
|
||||
android:background="@drawable/bg_shape_212562_40"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_xxgrzx">
|
||||
|
||||
<com.handuan.os.view.jxw.util.CircleImageView
|
||||
android:id="@+id/head_image"
|
||||
android:layout_width="34dp"
|
||||
android:layout_height="34dp"
|
||||
android:layout_margin="12dp"
|
||||
android:src="@drawable/icon_tx1" />
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_grxx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_toRightOf="@+id/head_image"
|
||||
android:onClick="onClick"
|
||||
android:orientation="vertical"
|
||||
android:tag="@string/tag_args_xxgrzx">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="14dp"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
android:layout_width="28dp"
|
||||
android:layout_height="10dp"
|
||||
android:text="昵称:"
|
||||
android:textColor="#60ffffff"
|
||||
android:textSize="7dp" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_name"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:ellipsize="marquee"
|
||||
android:singleLine="true"
|
||||
android:text="小九"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="14dp"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
android:layout_width="28dp"
|
||||
android:layout_height="10dp"
|
||||
android:text="年级:"
|
||||
android:textColor="#60ffffff"
|
||||
android:textSize="7dp" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_grade"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="未注册"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="14dp"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
android:layout_width="28dp"
|
||||
android:layout_height="10dp"
|
||||
android:text="学力值:"
|
||||
android:textColor="#60ffffff"
|
||||
android:textSize="7dp" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_wlz"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="0"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_dj"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_marginLeft="53dp"
|
||||
android:layout_toRightOf="@+id/ll_grxx"
|
||||
android:gravity="center"
|
||||
android:orientation="vertical">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_djjp"
|
||||
android:layout_width="32dp"
|
||||
android:layout_height="34dp"
|
||||
android:background="@drawable/icon_wd_zs" />
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_wjx"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/iv_djjp"
|
||||
android:layout_marginTop="2dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_x1"
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:background="@drawable/icon_wd_wjx_pre" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_x2"
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginLeft="2dp"
|
||||
android:background="@drawable/icon_wd_wjx_pre" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_x3"
|
||||
android:layout_width="9dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_marginLeft="2dp"
|
||||
android:background="@drawable/icon_wd_wjx_pre" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</RelativeLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="272dp"
|
||||
android:layout_height="226dp"
|
||||
android:layout_below="@+id/rl_grxx"
|
||||
android:layout_marginTop="12dp"
|
||||
android:background="@drawable/bg_shape_212562_40"
|
||||
android:orientation="vertical">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/tv_title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:text="本周累计打卡"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12dp"
|
||||
android:textStyle="bold" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="bottom"
|
||||
android:layout_marginLeft="5dp"
|
||||
android:text="不积小流,无以成江河"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/rl_dk"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:layout_marginTop="9dp"
|
||||
android:layout_marginRight="12dp" />
|
||||
|
||||
<com.handuan.os.view.jxw.widget.TreeView
|
||||
android:id="@+id/tree"
|
||||
android:layout_width="178dp"
|
||||
android:layout_height="162dp"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginLeft="19dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<com.handuan.os.view.jxw.widget.DailyTasksView
|
||||
android:id="@+id/ll_mrrw"
|
||||
android:layout_width="272dp"
|
||||
android:layout_height="132dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:layout_toRightOf="@+id/rl_grxx"
|
||||
android:orientation="vertical" />
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/ll_ctb"
|
||||
android:layout_width="162dp"
|
||||
android:layout_height="156dp"
|
||||
android:layout_below="@+id/ll_mrrw"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:layout_toRightOf="@+id/rl_grxx"
|
||||
android:background="@drawable/bg_shape_zjxx"
|
||||
android:orientation="vertical"
|
||||
android:paddingLeft="12dp">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="12dp"
|
||||
android:text="本周错题本"
|
||||
android:textColor="#ffffff"
|
||||
android:textSize="12dp" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="31dp"
|
||||
android:text="错题周周清,学习节节高"
|
||||
android:textColor="#60ffffff"
|
||||
android:textSize="9dp" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="67dp"
|
||||
android:layout_height="42dp"
|
||||
android:layout_marginTop="56dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onClick"
|
||||
android:orientation="vertical"
|
||||
android:tag="@string/taf_args_zjx_ctb">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_jzx_count"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="0"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12dp" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="1dp"
|
||||
android:text="AI精准学"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="8dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="67dp"
|
||||
android:layout_height="42dp"
|
||||
android:layout_marginLeft="72dp"
|
||||
android:layout_marginTop="56dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onClick"
|
||||
android:orientation="vertical"
|
||||
android:tag="@string/taf_args_souti_ctb">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_zndy_count"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="0"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12dp" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="1dp"
|
||||
android:text="智能答疑"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="8dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="138dp"
|
||||
android:layout_height="42dp"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_marginTop="102dp"
|
||||
android:background="@drawable/bg_shape_d9d9d9_20"
|
||||
android:gravity="center"
|
||||
android:onClick="onClick"
|
||||
android:orientation="vertical"
|
||||
android:tag="@string/taf_args_tbfd_ctb">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_ykyl_count"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="0"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12dp" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="1dp"
|
||||
android:text="一课一练"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="8dp" />
|
||||
</LinearLayout>
|
||||
</RelativeLayout>
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_scb"
|
||||
android:layout_width="97dp"
|
||||
android:layout_height="72dp"
|
||||
android:layout_below="@+id/ll_mrrw"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:layout_toRightOf="@+id/ll_ctb"
|
||||
android:background="@drawable/icon_wd_scb"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_scb" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="97dp"
|
||||
android:layout_height="72dp"
|
||||
android:layout_below="@+id/iv_scb"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:layout_toRightOf="@+id/ll_ctb"
|
||||
android:background="@drawable/icon_wd_xwcd"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_xwcd_online" />
|
||||
</RelativeLayout>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</layout>
|
||||
243
app/src/main/res/layout/fragment_read.xml
Normal file
243
app/src/main/res/layout/fragment_read.xml
Normal file
@@ -0,0 +1,243 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layout 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"
|
||||
tools:context=".fragment.read.ReadFragment">
|
||||
|
||||
<data>
|
||||
|
||||
<variable
|
||||
name="click"
|
||||
type="com.handuan.os.fragment.read.ReadFragment.BtnClick" />
|
||||
</data>
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="150dp"
|
||||
android:background="@drawable/bg_shape_212562_40"
|
||||
android:orientation="vertical">
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:text="新课标推荐"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12dp" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="44dp"
|
||||
android:layout_alignParentRight="true"
|
||||
android:gravity="center_vertical"
|
||||
android:onClick="onClick"
|
||||
android:orientation="horizontal"
|
||||
android:paddingRight="12dp"
|
||||
android:tag="@string/tag_args_new_zhtsg_tsg">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="更多"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="12dp"
|
||||
android:layout_height="12dp"
|
||||
android:layout_marginLeft="3dp"
|
||||
android:background="@drawable/icon_jq" />
|
||||
</LinearLayout>
|
||||
</RelativeLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="18dp"
|
||||
android:layout_marginTop="9dp"
|
||||
android:layout_marginRight="18dp"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="521dp"
|
||||
android:layout_height="19dp"
|
||||
android:layout_marginTop="74dp"
|
||||
android:background="@drawable/icon_ds_bg" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_shu1"
|
||||
android:layout_width="62dp"
|
||||
android:layout_height="82dp"
|
||||
android:layout_marginLeft="28dp"
|
||||
android:background="@drawable/icon_ds_shu1"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_zhtsg_tjkd" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_shu2"
|
||||
android:layout_width="62dp"
|
||||
android:layout_height="82dp"
|
||||
android:layout_marginLeft="19dp"
|
||||
android:layout_toRightOf="@+id/iv_shu1"
|
||||
android:background="@drawable/icon_ds_shu2"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_zhtsg_adjy" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_shu3"
|
||||
android:layout_width="62dp"
|
||||
android:layout_height="82dp"
|
||||
android:layout_marginLeft="19dp"
|
||||
android:layout_toRightOf="@+id/iv_shu2"
|
||||
android:background="@drawable/icon_ds_shu3"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_zhtsg_tmssdxw" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_shu4"
|
||||
android:layout_width="62dp"
|
||||
android:layout_height="82dp"
|
||||
android:layout_marginLeft="19dp"
|
||||
android:layout_toRightOf="@+id/iv_shu3"
|
||||
android:background="@drawable/icon_ds_shu4"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_zhtsg_lryh" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_shu5"
|
||||
android:layout_width="62dp"
|
||||
android:layout_height="82dp"
|
||||
android:layout_marginLeft="19dp"
|
||||
android:layout_toRightOf="@+id/iv_shu4"
|
||||
android:background="@drawable/icon_ds_shu5"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_zhtsg_xwz" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="62dp"
|
||||
android:layout_height="82dp"
|
||||
android:layout_marginLeft="19dp"
|
||||
android:layout_toRightOf="@+id/iv_shu5"
|
||||
android:background="@drawable/icon_ds_shu6"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_zhtsg_xlbb" />
|
||||
</RelativeLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="12dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="162dp"
|
||||
android:layout_height="138dp"
|
||||
android:background="@drawable/bg_shape_212562_40"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:text="最近阅读"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12dp" />
|
||||
|
||||
<com.handuan.os.view.jxw.widget.NoScrollViewPager
|
||||
android:id="@+id/subject_viewPager"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="81dp"
|
||||
android:layout_marginTop="9dp" />
|
||||
|
||||
<com.handuan.os.view.jxw.widget.MyBannerIndicator
|
||||
android:id="@+id/indicator"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="5dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="238dp"
|
||||
android:layout_height="138dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:layout_marginRight="12dp"
|
||||
android:background="@drawable/bg_shape_zjxx"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:text="本周阅读"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12dp" />
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/rv_chart"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_marginLeft="13dp"
|
||||
android:layout_marginBottom="6dp" />
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/rl_nodata"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="78dp"
|
||||
android:layout_height="62dp"
|
||||
android:layout_marginLeft="77dp"
|
||||
android:background="@drawable/icon_img_default" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="3dp"
|
||||
android:layout_marginTop="25dp"
|
||||
android:alpha="0.8"
|
||||
android:text="暂无数据"
|
||||
android:textColor="#ffffff"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
</RelativeLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="130dp"
|
||||
android:layout_height="138dp"
|
||||
android:background="@drawable/icon_ds_yxzq"
|
||||
android:onClick="onClick"
|
||||
android:orientation="vertical"
|
||||
android:tag="@string/tag_args_new_xbzq" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
</layout>
|
||||
112
app/src/main/res/layout/fragment_safe.xml
Normal file
112
app/src/main/res/layout/fragment_safe.xml
Normal file
@@ -0,0 +1,112 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<layout 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"
|
||||
tools:context=".fragment.safe.SafeFragment">
|
||||
|
||||
<data>
|
||||
|
||||
<variable
|
||||
name="click"
|
||||
type="com.handuan.os.fragment.safe.SafeFragment.BtnClick" />
|
||||
</data>
|
||||
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="555dp"
|
||||
android:layout_height="300dp"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical"
|
||||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="@drawable/bg_shape_212562_40"
|
||||
android:orientation="vertical"
|
||||
android:padding="12dp">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/tv_title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:text="平板守护功能"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12dp"
|
||||
android:textStyle="bold" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="bottom"
|
||||
android:layout_marginLeft="5dp"
|
||||
android:text="智能护眼,专注学习"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="9dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<com.handuan.os.view.jxw.view.AlphaImageView
|
||||
android:layout_width="169dp"
|
||||
android:layout_height="94dp"
|
||||
android:background="@drawable/icon_bbx_znhy"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_znhy" />
|
||||
|
||||
<com.handuan.os.view.jxw.view.AlphaImageView
|
||||
android:layout_width="169dp"
|
||||
android:layout_height="94dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_bbx_jzgk"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_jzgl" />
|
||||
|
||||
<com.handuan.os.view.jxw.view.AlphaImageView
|
||||
android:layout_width="169dp"
|
||||
android:layout_height="94dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_bbx_yysd"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_xwscx" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/rela_root"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="162dp"
|
||||
android:layout_marginLeft="25dp"
|
||||
android:layout_marginTop="6dp"
|
||||
android:layout_marginRight="25dp">
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/gridView_id"
|
||||
style="@style/vertical_style"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_marginTop="9dp" />
|
||||
</RelativeLayout>
|
||||
</LinearLayout>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
</layout>
|
||||
78
app/src/main/res/layout/item_banner.xml
Normal file
78
app/src/main/res/layout/item_banner.xml
Normal file
@@ -0,0 +1,78 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_root"
|
||||
android:layout_width="294dp"
|
||||
android:layout_height="234dp"
|
||||
android:background="@drawable/icon_ai_aijt">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/fdzy"
|
||||
android:layout_width="111dp"
|
||||
android:layout_height="94dp"
|
||||
android:layout_marginLeft="28dp"
|
||||
android:layout_marginTop="93dp"
|
||||
android:background="@drawable/icon_ai_fdzy"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_aijtjs_zyfd"
|
||||
android:visibility="gone" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/pgkst"
|
||||
android:layout_width="91dp"
|
||||
android:layout_height="83dp"
|
||||
android:layout_marginLeft="60dp"
|
||||
android:layout_marginTop="38dp"
|
||||
android:layout_toRightOf="@+id/fdzy"
|
||||
android:background="@drawable/icon_ai_pgkst"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_aijtjs_sspg"
|
||||
android:visibility="gone" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/pgzy"
|
||||
android:layout_width="71dp"
|
||||
android:layout_height="78dp"
|
||||
android:layout_below="@+id/pgkst"
|
||||
android:layout_marginLeft="88dp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:layout_toRightOf="@+id/fdzy"
|
||||
android:background="@drawable/icon_ai_pgzy"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_aijtjs_zypg"
|
||||
android:visibility="gone" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/ykyl"
|
||||
android:layout_width="103dp"
|
||||
android:layout_height="90dp"
|
||||
android:layout_marginLeft="4dp"
|
||||
android:layout_marginTop="78dp"
|
||||
android:background="@drawable/icon_ai_ykyl"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_ykyl_yw" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/aijzx"
|
||||
android:layout_width="96dp"
|
||||
android:layout_height="99dp"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_marginTop="35dp"
|
||||
android:background="@drawable/icon_ai_aijzx"
|
||||
android:onClick="onGoJzx"
|
||||
android:tag="0|语文" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/pzst"
|
||||
android:layout_width="71dp"
|
||||
android:layout_height="77dp"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_marginTop="142dp"
|
||||
android:background="@drawable/icon_ai_pzst"
|
||||
android:onClick="onClick"
|
||||
android:tag="@string/tag_args_new_zndy" />
|
||||
</RelativeLayout>
|
||||
</RelativeLayout>
|
||||
24
app/src/main/res/layout/item_dialog_app.xml
Normal file
24
app/src/main/res/layout/item_dialog_app.xml
Normal file
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/rl_root"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="69dp">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_app_icon"
|
||||
android:layout_width="28dp"
|
||||
android:layout_height="28dp"
|
||||
android:layout_centerHorizontal="true" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_app_name"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/iv_app_icon"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_marginTop="5dp"
|
||||
android:gravity="center"
|
||||
android:text="当前壁纸"
|
||||
android:textColor="#333333"
|
||||
android:textSize="9dp" />
|
||||
</RelativeLayout>
|
||||
46
app/src/main/res/layout/item_exp.xml
Normal file
46
app/src/main/res/layout/item_exp.xml
Normal file
@@ -0,0 +1,46 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/ll"
|
||||
android:layout_width="35dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:gravity="top|center_horizontal"
|
||||
android:text="智慧学"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="7dp"
|
||||
android:textStyle="bold" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="35dp"
|
||||
android:layout_height="35dp"
|
||||
android:layout_marginTop="5dp"
|
||||
android:background="@drawable/icon_exp_bg_1"
|
||||
android:gravity="center"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:includeFontPadding="false"
|
||||
android:text="EXP"
|
||||
android:textColor="#2faa1c"
|
||||
android:textSize="6dp"
|
||||
android:textStyle="bold" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_exp"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:includeFontPadding="false"
|
||||
android:text="0"
|
||||
android:textColor="#2faa1c"
|
||||
android:textSize="6dp"
|
||||
android:textStyle="bold" />
|
||||
</LinearLayout>
|
||||
</RelativeLayout>
|
||||
49
app/src/main/res/layout/item_tab.xml
Normal file
49
app/src/main/res/layout/item_tab.xml
Normal file
@@ -0,0 +1,49 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/ll"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="34dp"
|
||||
android:orientation="vertical"
|
||||
android:paddingLeft="9dp"
|
||||
android:paddingRight="9dp">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/tv_tab_icon"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:background="@drawable/icon_tab_wd"
|
||||
android:maxWidth="59dp"
|
||||
android:maxHeight="12dp"
|
||||
android:minHeight="10dp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/tv_tab_icon_pre"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:background="@drawable/icon_tab_wd"
|
||||
android:maxWidth="59dp"
|
||||
android:maxHeight="12dp"
|
||||
android:minHeight="10dp" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_b"
|
||||
android:layout_width="14dp"
|
||||
android:layout_height="5dp"
|
||||
android:layout_below="@+id/tv_tab_icon_pre"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_marginTop="2dp"
|
||||
android:background="@drawable/icon_tab_b" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_x"
|
||||
android:layout_width="7dp"
|
||||
android:layout_height="9dp"
|
||||
android:layout_above="@+id/tv_tab_icon_pre"
|
||||
android:layout_marginLeft="2dp"
|
||||
android:layout_toRightOf="@+id/tv_tab_icon_pre"
|
||||
android:background="@drawable/icon_tab_x" />
|
||||
</RelativeLayout>
|
||||
19
app/src/main/res/layout/item_tab_1.xml
Normal file
19
app/src/main/res/layout/item_tab_1.xml
Normal file
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/rl_root"
|
||||
android:layout_width="89dp"
|
||||
android:layout_height="34dp"
|
||||
android:layout_marginBottom="6dp"
|
||||
android:gravity="center"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/iv_tab_title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerInParent="true"
|
||||
android:gravity="center"
|
||||
android:text="语文"
|
||||
android:textColor="@color/red"
|
||||
android:textSize="11sp" />
|
||||
</RelativeLayout>
|
||||
75
app/src/main/res/layout/item_task.xml
Normal file
75
app/src/main/res/layout/item_task.xml
Normal file
@@ -0,0 +1,75 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/ll"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal"
|
||||
android:paddingRight="15dp">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="630dp"
|
||||
android:layout_height="80dp"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:textColor="#ffffff"
|
||||
android:textSize="28dp" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="41dp"
|
||||
android:layout_height="41dp"
|
||||
android:background="@drawable/icon_exp_bg" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_exp"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="3dp"
|
||||
android:includeFontPadding="false"
|
||||
android:text="0"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="28dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/iv_qwc"
|
||||
android:layout_width="106dp"
|
||||
android:layout_height="50dp"
|
||||
android:layout_marginLeft="50dp"
|
||||
android:background="@drawable/bg_shape_qwc"
|
||||
android:gravity="center"
|
||||
android:text="去完成"
|
||||
android:textColor="#005261"
|
||||
android:textSize="22dp"
|
||||
android:visibility="gone" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/iv_lq"
|
||||
android:layout_width="106dp"
|
||||
android:layout_height="50dp"
|
||||
android:layout_marginLeft="50dp"
|
||||
android:background="@drawable/bg_shape_lq"
|
||||
android:gravity="center"
|
||||
android:text="领取"
|
||||
android:textColor="#5c4300"
|
||||
android:textSize="22dp"
|
||||
android:visibility="gone" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/iv_ywc"
|
||||
android:layout_width="106dp"
|
||||
android:layout_height="50dp"
|
||||
android:layout_marginLeft="50dp"
|
||||
android:background="@drawable/bg_shape_ywc"
|
||||
android:gravity="center"
|
||||
android:text="已完成"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="22dp"
|
||||
android:visibility="gone" />
|
||||
</LinearLayout>
|
||||
23
app/src/main/res/layout/item_wl_app.xml
Normal file
23
app/src/main/res/layout/item_wl_app.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/rl_root"
|
||||
android:layout_width="58dp"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_app_icon"
|
||||
android:layout_width="28dp"
|
||||
android:layout_height="28dp"
|
||||
android:layout_centerHorizontal="true" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_app_name"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/iv_app_icon"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_marginTop="5dp"
|
||||
android:gravity="center"
|
||||
android:textColor="#ffffff"
|
||||
android:textSize="8dp" />
|
||||
</RelativeLayout>
|
||||
96
app/src/main/res/layout/layout_daily_tasks.xml
Normal file
96
app/src/main/res/layout/layout_daily_tasks.xml
Normal file
@@ -0,0 +1,96 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/ll"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="@drawable/bg_shape_212562_40"
|
||||
android:orientation="vertical">
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="287dp"
|
||||
android:layout_height="138dp">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/tv_title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:layout_marginTop="12dp"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:text="每日任务"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="12dp"
|
||||
android:textStyle="bold" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="bottom"
|
||||
android:layout_marginLeft="5dp"
|
||||
android:text="不积蛙步,无以至千里"
|
||||
android:textColor="#b3b1ca"
|
||||
android:textSize="9dp" />
|
||||
</LinearLayout>
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/rl_rw"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:layout_marginTop="40dp" />
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_not_data"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="86dp"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_marginTop="35dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="94dp"
|
||||
android:layout_height="75dp"
|
||||
android:background="@drawable/icon_not_network1" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="75dp"
|
||||
android:gravity="center"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="加载失败,请检查网络"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="9dp" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="12dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/tv_2"
|
||||
android:layout_width="53dp"
|
||||
android:layout_height="19dp"
|
||||
android:background="@drawable/icon_notwl_btn_bg_jcwl" />
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/tv_1"
|
||||
android:layout_width="53dp"
|
||||
android:layout_height="19dp"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:background="@drawable/icon_notwl_btn_bg_cxjz" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</RelativeLayout>
|
||||
</RelativeLayout>
|
||||
24
app/src/main/res/layout/layout_dashu_dia.xml
Normal file
24
app/src/main/res/layout/layout_dashu_dia.xml
Normal file
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/ll"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_djbg"
|
||||
android:layout_width="25dp"
|
||||
android:layout_height="25dp"
|
||||
android:background="@drawable/icon_dia_ds_xs" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_dj"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="6dp"
|
||||
android:includeFontPadding="false"
|
||||
android:text="LV0"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="8sp" />
|
||||
</LinearLayout>
|
||||
23
app/src/main/res/layout/layout_dashu_dia_10.xml
Normal file
23
app/src/main/res/layout/layout_dashu_dia_10.xml
Normal file
@@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@+id/ll"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_djbg"
|
||||
android:layout_width="44dp"
|
||||
android:layout_height="44dp"
|
||||
android:background="@drawable/icon_dia_ds_ds" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_dj"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="3dp"
|
||||
android:text="LV0"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="8dp" />
|
||||
</LinearLayout>
|
||||
220
app/src/main/res/layout/layout_jiesao.xml
Normal file
220
app/src/main/res/layout/layout_jiesao.xml
Normal file
@@ -0,0 +1,220 @@
|
||||
<?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"
|
||||
android:id="@+id/rl_root"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_jstip"
|
||||
android:layout_width="225dp"
|
||||
android:layout_height="245dp"
|
||||
android:layout_above="@+id/ll_progress"
|
||||
android:layout_marginLeft="9dp"
|
||||
android:background="@drawable/icon_dia_ds_bg"
|
||||
android:orientation="vertical"
|
||||
android:paddingLeft="10dp"
|
||||
android:paddingTop="6dp">
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="1.每天浇水一次,可增加300点经验值;"
|
||||
android:textColor="#ffffff"
|
||||
android:textSize="8dp" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="3dp"
|
||||
android:text="2.每次完成一个学习模块均可获得对应模块的经验值;"
|
||||
android:textColor="#ffffff"
|
||||
android:textSize="8dp" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="3dp"
|
||||
android:text="3.小苗初始等级为0级,最高级为10级;"
|
||||
android:textColor="#ffffff"
|
||||
android:textSize="8dp" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="4dp"
|
||||
android:layout_marginRight="22dp"
|
||||
android:lineSpacingExtra="2dp"
|
||||
android:text="4.小苗每次通过学习或者浇水累积经验值,当经验值满时,升级到下一等级的树苗。"
|
||||
android:textColor="#ffffff"
|
||||
android:textSize="8dp" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="6dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<com.handuan.os.view.jxw.widget.DashuDiaView
|
||||
android:id="@+id/dsdv0"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:drade="0" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="11dp"
|
||||
android:layout_height="11dp"
|
||||
android:layout_marginLeft="4dp"
|
||||
android:layout_marginTop="7dp"
|
||||
android:layout_marginRight="4dp"
|
||||
android:background="@drawable/icon_dia_ds_jty" />
|
||||
|
||||
<com.handuan.os.view.jxw.widget.DashuDiaView
|
||||
android:id="@+id/dsdv1"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:drade="1" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="11dp"
|
||||
android:layout_height="11dp"
|
||||
android:layout_marginLeft="4dp"
|
||||
android:layout_marginTop="7dp"
|
||||
android:layout_marginRight="4dp"
|
||||
android:background="@drawable/icon_dia_ds_jty" />
|
||||
|
||||
<com.handuan.os.view.jxw.widget.DashuDiaView
|
||||
android:id="@+id/dsdv2"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:drade="2" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="11dp"
|
||||
android:layout_height="11dp"
|
||||
android:layout_marginLeft="4dp"
|
||||
android:layout_marginTop="7dp"
|
||||
android:layout_marginRight="4dp"
|
||||
android:background="@drawable/icon_dia_ds_jty" />
|
||||
|
||||
<com.handuan.os.view.jxw.widget.DashuDiaView
|
||||
android:id="@+id/dsdv3"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:drade="3" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="11dp"
|
||||
android:layout_height="11dp"
|
||||
android:layout_marginLeft="4dp"
|
||||
android:layout_marginTop="7dp"
|
||||
android:layout_marginRight="4dp"
|
||||
android:background="@drawable/icon_dia_ds_jty" />
|
||||
|
||||
<com.handuan.os.view.jxw.widget.DashuDiaView
|
||||
android:id="@+id/dsdv4"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:drade="4" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="11dp"
|
||||
android:layout_height="11dp"
|
||||
android:layout_gravity="right"
|
||||
android:layout_marginTop="3dp"
|
||||
android:layout_marginRight="21dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dia_ds_jtx" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<com.handuan.os.view.jxw.widget.DashuDiaView
|
||||
android:id="@+id/dsdv9"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:drade="9" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="11dp"
|
||||
android:layout_height="11dp"
|
||||
android:layout_marginLeft="4dp"
|
||||
android:layout_marginTop="7dp"
|
||||
android:layout_marginRight="4dp"
|
||||
android:background="@drawable/icon_dia_ds_jtz" />
|
||||
|
||||
<com.handuan.os.view.jxw.widget.DashuDiaView
|
||||
android:id="@+id/dsdv8"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:drade="8" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="11dp"
|
||||
android:layout_height="11dp"
|
||||
android:layout_marginLeft="4dp"
|
||||
android:layout_marginTop="7dp"
|
||||
android:layout_marginRight="4dp"
|
||||
android:background="@drawable/icon_dia_ds_jtz" />
|
||||
|
||||
<com.handuan.os.view.jxw.widget.DashuDiaView
|
||||
android:id="@+id/dsdv7"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:drade="7" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="11dp"
|
||||
android:layout_height="11dp"
|
||||
android:layout_marginLeft="4dp"
|
||||
android:layout_marginTop="7dp"
|
||||
android:layout_marginRight="4dp"
|
||||
android:background="@drawable/icon_dia_ds_jtz" />
|
||||
|
||||
<com.handuan.os.view.jxw.widget.DashuDiaView
|
||||
android:id="@+id/dsdv6"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:drade="6" />
|
||||
|
||||
<ImageView
|
||||
android:layout_width="11dp"
|
||||
android:layout_height="11dp"
|
||||
android:layout_marginLeft="4dp"
|
||||
android:layout_marginTop="7dp"
|
||||
android:layout_marginRight="4dp"
|
||||
android:background="@drawable/icon_dia_ds_jtz" />
|
||||
|
||||
<com.handuan.os.view.jxw.widget.DashuDiaView
|
||||
android:id="@+id/dsdv5"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:drade="5" />
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="109dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:layout_marginTop="6dp"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="11dp"
|
||||
android:layout_height="11dp"
|
||||
android:layout_marginTop="3dp"
|
||||
android:layout_marginRight="16dp"
|
||||
android:layout_marginBottom="2dp"
|
||||
android:background="@drawable/icon_dia_ds_jtyx" />
|
||||
|
||||
<com.handuan.os.view.jxw.widget.DashuDiaView10
|
||||
android:id="@+id/dsdv10"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
app:drade="10" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
</RelativeLayout>
|
||||
110
app/src/main/res/layout/layout_tree.xml
Normal file
110
app/src/main/res/layout/layout_tree.xml
Normal file
@@ -0,0 +1,110 @@
|
||||
<?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"
|
||||
android:id="@+id/rl_root"
|
||||
android:layout_width="271dp"
|
||||
android:layout_height="268dp">
|
||||
|
||||
<com.handuan.os.view.jxw.widget.JxwPAGView
|
||||
android:id="@+id/iv_dashu"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_centerHorizontal="true" />
|
||||
|
||||
<com.handuan.os.view.jxw.widget.WaterR
|
||||
android:id="@+id/relative"
|
||||
android:layout_width="271dp"
|
||||
android:layout_height="268dp"
|
||||
android:layout_centerHorizontal="true" />
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/ll_xljt"
|
||||
android:layout_width="121dp"
|
||||
android:layout_height="40dp"
|
||||
android:layout_marginLeft="116dp"
|
||||
android:background="@drawable/icon_ds_xljt"
|
||||
android:gravity="center_horizontal"
|
||||
android:visibility="gone">
|
||||
|
||||
<com.handuan.os.view.jxw.view.TypefaceTextView
|
||||
android:id="@+id/tv_xljt"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="30dp"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:layout_marginRight="8dp"
|
||||
android:gravity="center"
|
||||
android:lineSpacingExtra="2dp"
|
||||
android:paddingTop="2dp"
|
||||
android:textColor="#ffffff"
|
||||
android:textSize="5dp"
|
||||
app:typeface="SSCNM" />
|
||||
</LinearLayout>
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/rl_sh"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="97dp"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_marginRight="6dp">
|
||||
|
||||
<ImageView
|
||||
android:layout_width="34dp"
|
||||
android:layout_height="25dp"
|
||||
android:layout_marginTop="42dp"
|
||||
android:background="@drawable/icon_czjh_xiaoxuanfushit" />
|
||||
</RelativeLayout>
|
||||
|
||||
<com.handuan.os.view.jxw.widget.JxwPAGView
|
||||
android:id="@+id/pad_xddx"
|
||||
android:layout_width="106dp"
|
||||
android:layout_height="234dp"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_marginBottom="3dp" />
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="78dp"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_marginRight="11dp">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_sh"
|
||||
android:layout_width="30dp"
|
||||
android:layout_height="25dp"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:background="@drawable/icon_czjh_jiaoshuihu" />
|
||||
</RelativeLayout>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_jiaoshui"
|
||||
android:layout_width="85dp"
|
||||
android:layout_height="44dp"
|
||||
android:layout_above="@+id/rl_sh"
|
||||
android:layout_alignParentRight="true"
|
||||
android:background="@drawable/icon_jiaoshuihudehua"
|
||||
android:paddingLeft="7dp"
|
||||
android:paddingTop="6dp"
|
||||
android:paddingBottom="6dp"
|
||||
android:text="今天已经浇过水了哦!明天再来吧!"
|
||||
android:textColor="#ffffff"
|
||||
android:textSize="8dp"
|
||||
android:visibility="gone" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_yijiaoshui"
|
||||
android:layout_width="58dp"
|
||||
android:layout_height="36dp"
|
||||
android:layout_above="@+id/rl_sh"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_marginRight="22dp"
|
||||
android:background="@drawable/icon_xiaoshudehua"
|
||||
android:paddingLeft="11dp"
|
||||
android:paddingTop="3dp"
|
||||
android:text="每日一浇\10茁壮成长"
|
||||
android:textColor="#ffffff"
|
||||
android:textSize="8dp" />
|
||||
</RelativeLayout>
|
||||
20
app/src/main/res/layout/toast_text_layout.xml
Normal file
20
app/src/main/res/layout/toast_text_layout.xml
Normal file
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="@drawable/bg_toast"
|
||||
android:gravity="center"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_message"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingLeft="100dp"
|
||||
android:paddingTop="9dp"
|
||||
android:paddingRight="100dp"
|
||||
android:paddingBottom="9dp"
|
||||
android:text="Toast"
|
||||
android:textColor="@android:color/white"
|
||||
android:textSize="20dp" />
|
||||
</LinearLayout>
|
||||
Reference in New Issue
Block a user