You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.8 KiB
49 lines
1.8 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context=".MainActivity"
|
|
android:orientation="vertical">
|
|
<androidx.cardview.widget.CardView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:cardBackgroundColor="#33FFC0CB"
|
|
app:contentPadding="10dp"
|
|
app:cardCornerRadius="10dp"
|
|
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_marginRight="10dp">
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
<Button
|
|
android:id="@+id/btn_text"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="文字"/>
|
|
<Button
|
|
android:id="@+id/btn_img"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="图文"/>
|
|
<Button
|
|
android:id="@+id/btn_video"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="视频"/>
|
|
</LinearLayout>
|
|
</androidx.cardview.widget.CardView>
|
|
<ListView
|
|
android:id="@+id/lv"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
</ListView>
|
|
</LinearLayout> |