可能な限り動的に(画面の幅に応じて)LinearLayoutにビューを追加しようとしています。
これは、LinearLayoutが画面に表示される前に行います。
私のLinearLayout:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:background="#666"/>
LinearLayoutに表示する私のビュー:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:background="#999">
<ImageView
android:layout_width="48dp"
android:layout_height="48dp"
android:src="@drawable/no_photo"/>
</FrameLayout>
レイアウトにビューを追加します。
int allItems = 50;
int currentItem = 0;
while(currentItem < allItems)
{
FrameLayout view = (FrameLayout) inflater.inflate(R.layout.fl, null);
linearLayout.addView(view);
if (linearLayout.getMeasuredWidth() >= this.getWidth())
{
linearLayout.removeView(view);
break;
}
}
ただし、linearLayout.getMeasuredWidth()およびthis.getWidth()は0です。
ビューが表示される前にView.measureメソッドを使用してビューサイズを計算する必要があることは知っていますが、どこでどのように使用するかはわかりません。