layout_header.xml
1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/layout_follow_more_creator"
android:layout_width="match_parent"
android:layout_height="@dimen/rmrb_dp36"
android:layout_marginHorizontal="@dimen/rmrb_dp16"
android:layout_marginTop="@dimen/rmrb_dp10"
android:layout_marginBottom="@dimen/rmrb_dp2"
android:background="@drawable/shape_follow_header_bg"
android:visibility="visible">
<TextView
android:id="@+id/tv_more"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/res_attention_more"
android:textColor="@color/res_color_common_C1"
android:textSize="@dimen/rmrb_dp14"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@id/iv_more"
app:layout_constraintHorizontal_chainStyle="packed"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<ImageView
android:id="@+id/iv_more"
android:layout_width="@dimen/rmrb_dp15"
android:layout_height="@dimen/rmrb_dp15"
android:layout_marginLeft="@dimen/rmrb_dp2"
android:scaleType="centerCrop"
android:src="@mipmap/icon_setting_arrow"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/tv_more"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>