Android レイアウトは、layout_weight を使用します。すべてのコンポーネントで 1/3 を目指していますが、フッターが文字通り消えて表示されることがあります。ゴーンからビジブルに設定すると、ウェイト計算はどのように機能しますか? 1/3 のウェイトを持つ線形レイアウト内のコンテンツが表示されませんか?
質問する
1188 次
2 に答える
0
変更をレンダリングするには、重みを変更した後、ビューで refreshDrawableState() を呼び出す必要があるようです。
((LinearLayout.LayoutParams) btnFav.getLayoutParams()).weight = 3f;
btnFav.refreshDrawableState();
于 2015-03-11T20:37:30.743 に答える
-1
make sure you set height to 0dp and then set the weight on all of the views to 1
ie
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:text="Hello World, MyActivity"
android:background="#f00"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:text="Hello World, MyActivity"
android:background="#00f"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:text="Hello World, MyActivity"
android:background="#0f0"
/>
</LinearLayout>
when a view is set to gone the remaining views will fill up their ratio of the screen. Ie if you set the third view to gone the first 2 views will take up 50% each of the available space in the layout
Furthermore, if you want the remaining views to only take up 1/3 of space each (ie 2/3 used and leave 1/3 empty) set your hidden view to invisible not gone
于 2013-01-08T23:40:04.107 に答える