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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        android:background="@android:color/white"
        app:cardCornerRadius="@dimen/dimen16">
 
    <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:background="@android:color/transparent">
 
        <TextView
                android:id="@+id/txt_choice_1"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                tools:text="打开"
                style="@style/TextStyle.BottomSheet"/>
 
        <View
                android:layout_width="wrap_content"
                android:layout_height="1px"
                android:background="@color/lightGray"/>
 
        <TextView
                android:id="@+id/txt_choice_2"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                tools:text="分享"
                style="@style/TextStyle.BottomSheet"/>
 
        <View
                android:layout_width="wrap_content"
                android:layout_height="@dimen/dimen16"
                android:background="@color/lightGray"/>
 
        <TextView
                android:id="@+id/txt_cancel"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="@string/cancel"
                style="@style/TextStyle.BottomSheet"/>
    </LinearLayout>
 
</android.support.v7.widget.CardView>