<?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="com.example.day_0517.MainActivity" android:orientation="vertical" > <FrameLayout android:id="@+id/main_content" android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1"></FrameLayout> <View android:layout_width="match_parent" android:layout_height="0.75dp" android:background="#999" /> <RadioGroup android:id="@+id/main_rg" android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <RadioButton android:id="@+id/shehui" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:button="@null" android:gravity="center" android:text="社会" android:textSize="20sp" /> <View android:layout_width="0.75dp" android:layout_height="match_parent" android:background="#999" /> <RadioButton android:id="@+id/guonei" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:button="@null" android:gravity="center" android:text="国内" android:textSize="20sp" /> <View android:layout_width="0.75dp" android:layout_height="match_parent" android:background="#999" /> <RadioButton android:id="@+id/yule" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:button="@null" android:gravity="center" android:text="娱乐" android:textSize="20sp" /> </RadioGroup> </LinearLayout>
FrameLayout 主界面布局
最新推荐文章于 2025-04-10 18:04:05 发布