在Android中动态创建多个ListView

时间:2013-01-27 22:49:33

标签: java android xml android-layout listview

我目前正在开发一个基本的新闻聚合应用程序在android中,我知道那里有负载,但我基本上只是创建一个,因为我认为这是一个很好的地方开始为刚开始使用Android的人发展。

我的目标是显示来自多个Feed的文章。每个Feed都有自己的水平滑动列表,有点像脉冲新闻应用程序。到目前为止,我已经设法找到了一个关于创建“Horizo​​ntalListView”的教程,现在我的应用程序显示了一个基本的水平滑动列表视图,如下所示:

屏幕截图链接: http://www.dev-smart.com/wp-content/uploads/2011/03/device-200x300.png

Pulse App屏幕截图: http://a1525.phobos.apple.com/us/r1000/080/Purple/v4/ba/6a/01/ba6a01d1-f0b7-4bb7-3f94-5a5761653e3c/mzl.zxnjzzmk.480x480-75.jpg

代码:

public class HorizontalListViewDemo extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.listviewdemo);

    HorizontalListView listview = (HorizontalListView) findViewById(R.id.listview);
    listview.setAdapter(mAdapter);


}

private static String[] dataObjects = new String[]{ "Text #1",
    "Text #2",
    "Text #3", "Text #4"  }; 

private BaseAdapter mAdapter = new BaseAdapter() {

    private OnClickListener mOnButtonClicked = new OnClickListener() {

        @Override
        public void onClick(View v) {
            AlertDialog.Builder builder = new AlertDialog.Builder(HorizontalListViewDemo.this);
            builder.setMessage("hello from " + v);
            builder.setPositiveButton("Cool", null);
            builder.show(); 
        }
    };

    @Override
    public int getCount() {
        return dataObjects.length;
    }

    @Override
    public Object getItem(int position) {
        return null;
    }

    @Override
    public long getItemId(int position) {
        return 0;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        View retval = LayoutInflater.from(parent.getContext()).inflate(R.layout.viewitem, null);
        TextView title = (TextView) retval.findViewById(R.id.title);
        Button button = (Button) retval.findViewById(R.id.clickbutton);
        button.setOnClickListener(mOnButtonClicked);
        title.setText(dataObjects[position]);
        return retval;
    }   
};
}

XML:

<?xml version="1.0" encoding="utf-8"?>

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>

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

  <com.devsmart.android.ui.HorizontalListView
    android:id="@+id/listview"
    android:layout_width="fill_parent"
    android:layout_height="250dp"
    android:background="#ddd"
  />

</LinearLayout>
</ScrollView>

正如我所提到的,每个Horizo​​ntalListView将代表1个feed并显示其相关文章,如上所述。因此,我在此开发中的下一步是尝试创建这些Horizo​​ntalListView的动态,以便用户可以在应用程序内声明一个feed,然后在已经定义的那个下面动态创建它。

忽略该过程中涉及的所有其他工作,我实际上只是寻求帮助来创建一个新的Horizo​​ntalListView,它可以回收已定义的XML listview布局id =“listview”。我知道如果我在哪里预先定义所有的feed并且只创建具有唯一id的独特XML布局,我可以让它工作,但我想知道是否有一种方法可以定义一个重用现有布局的新Horizo​​ntalListView。

我希望你们能为我解释一下。

由于

更新1: 使用视图?

//Defining main XML file "listviewdemo.xml"
setContentView(R.layout.listviewdemo);
//Creating a new view to apply to my HorizontalListViews, /res/layout/listviewStyle.xml
View view = getLayoutInflater().inflate(R.layout.listviewStyle, null);

//Defining my first HorizontalListView      
HorizontalListView listview = (HorizontalListView) view.findViewById(R.id.listviewReuse);
listview.setAdapter(mAdapter);

1 个答案:

答案 0 :(得分:1)

HorizontalListView listview = (HorizontalListView) findViewById(R.id.listview);

此行将始终返回使用R.id.listview找到的第一个视图。如果您有多个列表视图,那就不太好了。

现在,不要在子视图上调用Activity.findViewById()调用findViewById()。您可以在布局中包含每个列表视图。然后调用findViewById以查找作为listview父级的布局。在布局上调用findViewById。

找到listView后第一次记住它以供以后使用。

在您发布的更新代码中,删除此行。它没有做任何事情b / c这个视图不是布局R.layout.listviewdemo。

View view = getLayoutInflater().inflate(R.layout.listviewStyle, null);

然后在R.layout.listviewdemo的xml中将两个listviews添加到相同的.xml中(假设这是你的目标)。无论如何,您应该将所有视图添加到同一布局,然后使用findViewById检索视图。