Android的列表视图显示只有一个项目 [英] Android Listview show only one item

查看:130
本文介绍了Android的列表视图显示只有一个项目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个ListView,在那里我改变了一行appearence,但有列表视图,而不是全屏一行的大小。

I have a ListView, where i changed appearence of row, but listview have size of one row, instead of fullscreen.

list_item.xml:

list_item.xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >

<TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"/>

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" >

    <TextView
        android:id="@+id/textView_news_time"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:textColor="#0082A8" />

    <TextView
        android:id="@+id/textView_news_header"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
</LinearLayout>

<TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" />

</LinearLayout>

tab_news.xml:

tab_news.xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:orientation="vertical" >

<ListView
    android:id="@+id/list_news"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

 </ListView>

  </LinearLayout>

制作适配器:

Making Adapter:

public class RSSAdapter extends ArrayAdapter<RSSitem> {
Context context; 
int layoutResourceId;    
ArrayList<RSSitem> data = null;
SimpleDateFormat sdf = new SimpleDateFormat("kk:mm ");
public RSSAdapter(Context context, int layoutResourceId, ArrayList<RSSitem> data) {
    super(context, layoutResourceId, data);
    this.layoutResourceId = layoutResourceId;
    this.context = context;
    this.data = data;
}

@Override
public View getView(int position, View convertView, ViewGroup parent) {
    View row = convertView;
    NewsHolder holder = null;

    if(row == null)
    {
        LayoutInflater inflater = ((Activity)context).getLayoutInflater();
        row = inflater.inflate(layoutResourceId, parent, false);

        holder = new NewsHolder();
        holder.txtTime = (TextView)row.findViewById(R.id.textView_news_time);
        holder.txtNews = (TextView)row.findViewById(R.id.textView_news_header);

        row.setTag(holder);
    }
    else
    {
        holder = (NewsHolder)row.getTag();
    }

    RSSitem item = data.get(position);
    holder.txtTime.setText(sdf.format(item.getPubDate()));
    holder.txtNews.setText(item.getTitle());

    return row;
}

static class NewsHolder
{
    TextView txtTime;
    TextView txtNews;
}

项目是滚动。

Items are scrolling.

对不起,我的英语很差。感谢您的帮助

Sorry for bad English. Thanks for help

@Varun的建议并没有帮助

Advice of @Varun didn't help

我发现了错误。谢谢。答案在答案)

I found mistake. Thanks. Answer in "answers")

推荐答案

我发现了错误。 tab_news在TabHost的滚动型。 所以愚蠢的错误( 感谢您的帮助。

I Found mistake. tab_news was in ScrollView of TabHost. So stupid mistake( Thanks for help.

更新:的ListView 不得在滚动型 XML格式。如果是,则发生相同的问题。

Update:ListView must not be underScrollView in xml. If it is,the same problem occurs.

这篇关于Android的列表视图显示只有一个项目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆