检查条件仅显示并动态列出查看高度不同的所有项目

时间:2012-05-17 09:11:39

标签: android listview

1.仅显示检查条件

public View getView(final int position, View convertView, ViewGroup parent) {
    View vi = convertView;
    if (convertView == null)
        vi = inflater.inflate(R.layout.main_alllatestnewslist, parent,
                false);     
    ImageView imageview = (ImageView) vi
            .findViewById(R.id.image_alllatestnewstitle);
    imageview.setVisibility(View.INVISIBLE);
    TextView titletext = (TextView) vi
            .findViewById(R.id.text_particularlatestnewstitle);
    TextView categorytext = (TextView) vi
            .findViewById(R.id.text_newscategorytitle);
    TextView datetext = (TextView) vi.findViewById(R.id.text_newsdate);

    if (!imagepath[position].toString().equals("no picture")) {
        imageLoader.DisplayImage(imagepath[position], imageview);
        imageview.setVisibility(View.VISIBLE);          
        titletext.setWidth(460 - imageview.getWidth() - 5); <-- this line   
    } else {
        imageview.setVisibility(View.INVISIBLE);
        imageview.setImageDrawable(null);
    }
    titletext.setText(title[position].toString());
    categorytext.setText(category[position].toString());
    datetext.setText(date[position].toString());

    return vi;
}

当第一次查看列表并导致带有imageview的textview堆栈时,无法检查语句。滚动一次或多次后,它只会向左移动。

如何在显示之前进入此声明?

2。根据条件

以编程方式设置列表视图中所有项目的高度
RelativeLayout childlayout = (RelativeLayout)vi.findViewById(R.id.layout_childlist);

这是项目的布局。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layout_childlist"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@color/list_bg"
android:minHeight="?android:attr/listPreferredItemHeight" >
<LinearLayout
    android:id="@+id/test"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_marginBottom="5px"
    android:layout_marginLeft="10px"
    android:layout_marginRight="10px"
    android:layout_marginTop="5px" >

    <ImageView
        android:id="@+id/image_alllatestnewstitle"
        android:layout_width="140px"
        android:layout_height="80px"
        android:scaleType="centerCrop" />
</LinearLayout>
....
</RelativeLayout>

例如,其中一个项目显示80px但其他项目仅占用40px。但是,其他项目不会换行到40px并换行到80px并使所有项目具有相同的高度。

如何设置高度不同的所有项目的高度?

1 个答案:

答案 0 :(得分:1)

尝试imageview.setVisibility(View.GONE);

INVISIBLE仅在GONE'删除'it

时隐藏视图