3

我正在尝试尽可能多地动态地将视图添加到 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 方法在它变得可见之前计算视图大小,但我不知道它在哪里以及如何使用。

4

1 回答 1

8

编辑您的代码如下:

Display display = getWindowManager().getDefaultDisplay();
int maxWidth = display.getWidth();
int widthSoFar=0;

int allItems = 50;
int currentItem = 0;

while(currentItem < allItems) {
  FrameLayout view = (FrameLayout) inflater.inflate(R.layout.fl, null);

  linearLayout.addView(view);

  view .measure(0, 0);
  widthSoFar = widthSoFar + view.getMeasuredWidth();


  if (widthSoFar >= maxWidth) {
    linearLayout.removeView(view);
    break;
  }
}

希望这可以帮助你

于 2012-04-04T07:27:20.493 回答