<?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>
|