0

在我的一项活动中,我有一个表格布局,其中包含在运行时通过自定义类添加的单元格。我的单元格的布局如下:

<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+cell/style_2"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" >

    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_marginBottom="5dp" >

        <View
            android:id="@+cell/divider"
            android:layout_width="fill_parent"
            android:layout_height="2dp"
            android:layout_alignParentLeft="true"
            android:layout_alignParentRight="true"
            android:layout_alignParentTop="true"
            android:background="#FF000000" />

        <ImageView
            android:id="@+cell/image"
            android:layout_width="fill_parent"
            android:layout_height="100dp"
            android:layout_alignParentBottom="true"
            android:layout_alignParentLeft="true"
            android:layout_alignParentRight="true"
            android:layout_below="@cell/divider"
            android:layout_margin="5dp"
            android:contentDescription="@string/row_thumbnail"
            android:scaleType="fitCenter"/>
    </RelativeLayout>

</TableRow>

这被以下类夸大了:

public Cell(Context context) {
    super(context);

    addView(((LayoutInflater) context
        .getSystemService(Context.LAYOUT_INFLATER_SERVICE))
        .inflate(R.layout.gallery_row_1, null));
}

当我为单元格充气时,我还设置了一个图像用作显示,问题是图像视图的大小没有保持应有的大小,右边缘无处可寻,并且图像永远不会显示(可能在某个地方的右边?),我不确定我的问题出在哪里。

c = new Cell(this);
c.getImageView().setImageBitmap(BitmapFactory.decodeStream(assetManager.open("categories" + File.separator + sec + File.separator + filename)));
page.addView(c);

getImageView作为我的 Cell 中的一个函数,它返回实际的 ImageView 元素。

我知道图像被放置在 ImageView 中,因为当布局参数更改时,我可以看到图像,只是大小不合适。

所需的输出应该是一个视图,顶部是一个分割视图,下面是一个 ImageView,填充父级并且高 100dp。图像,无论原始尺寸如何,都应缩放并显示在内部。

此外,如果我注释掉将图像设置为 ImageView 的行,则布局边界是正确的,如Show Layout Bounds启用时所见。

我的总体问题是,为什么我的 ImageView 在应用图像时会重新调整大小。

非常感谢任何和所有帮助。

4

1 回答 1

2

请参阅LayoutInflater 上的这篇文章,了解为什么您的布局会混淆。由于您的单元类似乎是一些的内部类ViewGroup(因为您正在调用addView()),请尝试使用以下代码:

LayoutInflater inflater = LayoutInflater.from(context);
inflater.inflate(R.layout.gallery_row_1, this);

或者

LayoutInflater inflater = LayoutInflater.from(context);
View view = inflater.inflate(R.layout.gallery_row_1, this, false);
addView (view);

而不是使用

inflater.inflate(R.layout.gallery_row_1, null);

inflate()调用使用第二个参数(容器)来确定LayoutParams用于解释 XML 的类型。如果传递 null,则忽略所有布局属性。相反,您应该使用实际容器调用它(它将自动将其添加到容器中)或使用容器调用它,并使用第三个参数告诉它不要附加视图,然后使用膨胀视图执行您想要的操作.

于 2013-06-09T03:42:24.640 回答