riku
2025-10-30 e9aa93f381afcf9f9cf0c39f2b9e32375ed49528
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
<?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="match_parent">
 
    <RelativeLayout
        android:layout_centerInParent="true"
        android:orientation="horizontal"
        android:id="@+id/ll_container"
        android:layout_width="match_parent"
        android:layout_height="50dp">
        <FrameLayout
            android:id="@+id/left_container"
            android:layout_centerVertical="true"
            android:layout_width="24dp"
            android:layout_height="24dp"
            />
 
        <TextView
            android:id="@+id/left_text"
            android:layout_marginLeft="10dp"
            android:layout_centerVertical="true"
            android:layout_toRightOf="@id/left_container"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textColor="@android:color/black"
            />
    </RelativeLayout>
 
    <View
        android:layout_alignParentRight="true"
        android:layout_alignParentBottom="true"
        android:id="@+id/divider"
        android:background="#dddd"
        android:layout_width="360dp"
        android:layout_height="0.5dp"/>
</RelativeLayout>