誰もがandroidでlayout_weigh sumがどのように機能しているかを知ることができますか
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:background="#FFFFFF"
android:weightSum="100">
<TextView android:text="left" android:textColor="#000000" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_weight="33" />
<Button android:text="right" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_weight="67" />
</LinearLayout>
ありがとう