act_new_channel_item.xml
1.5 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"?>
<RelativeLayout 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="@dimen/rmrb_dp40"
android:clipChildren="false"
android:clipToPadding="false"
android:gravity="center">
<TextView
android:id="@+id/navigate_content_right"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:ellipsize="end"
android:gravity="center"
android:maxLines="1"
android:textColor="@color/res_color_common_C1"
android:textSize="@dimen/rmrb_dp14"
app:autoSizeMaxTextSize="@dimen/rmrb_dp14"
app:autoSizeMinTextSize="@dimen/rmrb_dp10"
app:autoSizeTextType="uniform"
app:layout_constraintLeft_toLeftOf="parent" />
<ImageView
android:id="@+id/del_imageView"
android:layout_width="@dimen/rmrb_dp12"
android:layout_height="@dimen/rmrb_dp12"
android:layout_centerVertical="true"
android:layout_marginLeft="@dimen/rmrb_dp1"
android:layout_toRightOf="@id/navigate_content_right"
android:background="@drawable/channeldrawer_x"
android:clipChildren="false"
android:clipToPadding="false"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toRightOf="@id/navigate_content_right"
app:layout_constraintTop_toTopOf="parent" />
</RelativeLayout>