12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <?xml version="1.0" encoding="utf-8"?>
- <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:background="@color/white">
- <View
- app:layout_constraintLeft_toLeftOf="parent"
- app:layout_constraintTop_toTopOf="parent"
- android:layout_width="match_parent"
- android:layout_height="@dimen/dp_304"
- android:background="@drawable/bg_guide_top" />
- <LinearLayout
- app:layout_constraintRight_toRightOf="parent"
- app:layout_constraintLeft_toLeftOf="parent"
- app:layout_constraintBottom_toBottomOf="parent"
- android:id="@+id/ll_points"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentBottom="true"
- android:layout_centerHorizontal="true"
- android:layout_marginBottom="@dimen/qb_px_67"
- android:orientation="horizontal">
- <View
- android:layout_width="@dimen/dp_14"
- android:layout_height="@dimen/dp_7"
- android:background="@drawable/view_guide_point_select" />
- <View
- android:layout_width="@dimen/dp_7"
- android:layout_height="@dimen/dp_7"
- android:layout_marginLeft="11dp"
- android:background="@drawable/view_guide_point_normal" />
- <View
- android:layout_width="@dimen/dp_7"
- android:layout_height="@dimen/dp_7"
- android:layout_marginLeft="11dp"
- android:background="@drawable/view_guide_point_normal" />
- </LinearLayout>
- <TextView
- app:layout_constraintRight_toRightOf="parent"
- app:layout_constraintLeft_toLeftOf="parent"
- app:layout_constraintTop_toBottomOf="@+id/tv_title"
- app:layout_constraintBottom_toTopOf="@+id/ll_points"
- android:id="@+id/tv_content"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerHorizontal="true"
- android:layout_above="@+id/ll_points"
- android:text="一站式乐器教学平台"
- android:textColor="@color/color_9e9e9e" />
- <TextView
- app:layout_constraintRight_toRightOf="parent"
- app:layout_constraintLeft_toLeftOf="parent"
- app:layout_constraintBottom_toTopOf="@+id/tv_content"
- app:layout_constraintTop_toBottomOf="@+id/im_center"
- android:id="@+id/tv_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerHorizontal="true"
- android:layout_above="@+id/tv_content"
- android:layout_marginBottom="10dp"
- android:text="轻松教学"
- android:textColor="@color/color_333333"
- android:textSize="@dimen/sp_24"
- android:textStyle="bold" />
- <ImageView
- app:layout_constraintRight_toRightOf="parent"
- app:layout_constraintLeft_toLeftOf="parent"
- app:layout_constraintTop_toTopOf="parent"
- app:layout_constraintBottom_toTopOf="@+id/tv_title"
- android:id="@+id/im_center"
- android:adjustViewBounds="true"
- app:layout_constraintWidth_percent="0.7"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- app:layout_constraintVertical_chainStyle="packed"
- android:layout_above="@+id/tv_title"
- android:layout_marginLeft="14dp"
- android:layout_marginBottom="24dp"
- android:layout_marginRight="14dp"
- android:src="@drawable/icon_guid_center_1" />
- </androidx.constraintlayout.widget.ConstraintLayout>
|