comp_single_message_board.xml
3.08 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?xml version="1.0" encoding="utf-8"?>
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="@dimen/rmrb_dp6"
android:orientation="vertical"
>
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/contentRv"
android:layout_width="match_parent"
android:paddingTop="@dimen/rmrb_dp14"
android:layout_height="wrap_content">
<FrameLayout
android:id="@+id/flLeft"
android:layout_width="0dp"
android:layout_height="@dimen/rmrb_dp56"
android:layout_marginLeft="@dimen/rmrb_dp10"
android:layout_marginRight="@dimen/rmrb_dp5"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toLeftOf="@+id/flRight"
app:layout_constraintTop_toTopOf="parent">
<com.wd.foundation.wdkit.view.customtextview.StrokeWidthTextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="center"
android:drawableRight="@drawable/icon_comp_arrow_black"
android:gravity="center"
android:text="@string/comp_message_to_buwei_tiwen"
android:textColor="@color/res_color_common_C1"
android:textSize="@dimen/rmrb_dp14"
android:textStyle="bold" />
</FrameLayout>
<FrameLayout
android:id="@+id/flRight"
android:layout_width="0dp"
android:layout_height="@dimen/rmrb_dp56"
android:layout_marginLeft="@dimen/rmrb_dp5"
android:layout_marginRight="@dimen/rmrb_dp10"
app:layout_constraintLeft_toRightOf="@+id/flLeft"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent">
<com.wd.foundation.wdkit.view.customtextview.StrokeWidthTextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="center"
android:drawableRight="@drawable/icon_comp_arrow_black"
android:gravity="center"
android:text="@string/comp_message_to_local_tiwen"
android:textColor="@color/res_color_common_C1"
android:textSize="@dimen/rmrb_dp14"
android:textStyle="bold" />
</FrameLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
<!-- <include-->
<!-- layout="@layout/item_base_line_gray"-->
<!-- android:layout_width="match_parent"-->
<!-- android:layout_height="@dimen/rmrb_dp0_5"-->
<!-- android:visibility="gone"-->
<!-- android:layout_marginTop="@dimen/rmrb_dp8"-->
<!-- android:layout_marginHorizontal="@dimen/rmrb_dp16" />-->
</androidx.appcompat.widget.LinearLayoutCompat>