点击直接下载
https://github.com/fakerlove1/Demo2
记得多多点赞,fork !!!!!
LineLayout 平分
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:background="@android:color/white"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:layout_weight="1"
android:text="aaaaaaaaaaaa"
android:layout_width="0dp"
android:layout_height="wrap_content"/>
<Button
android:layout_weight="1"
android:text="bbbbb"
android:layout_width="0dp"
android:layout_height="wrap_content"/>
<Button
android:layout_weight="1"
android:text="c"
android:layout_width="0dp"
android:layout_height="wrap_content"/>
</LinearLayout>