riku
2020-08-21 0328eab9276e57487eb2cfff31a945a01dd8c73a
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
<?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="wrap_content"
    android:background="@drawable/shap_stroke_bottom"
    android:descendantFocusability="blocksDescendants"
    android:padding="@dimen/dimen8">
 
    <TextView
        android:id="@+id/tv_no"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:padding="@dimen/dimen4" />
 
    <TextView
        android:id="@+id/tv_scenseName"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@+id/tv_no"
        android:layout_marginLeft="@dimen/fab_margin"
        android:textColor="@color/colorPrimary"
        android:textSize="@dimen/textSize_14"
        android:layout_marginRight="@dimen/dimen4"
        android:layout_centerVertical="true" />
 
 
</RelativeLayout>