没有调用ArrayAdapter的getView()方法

时间:2012-03-16 00:43:05

标签: android android-layout android-fragments android-arrayadapter

我对android开发很新。我正在尝试构建一个带有标签的应用程序(通过片段添加)。在其中一个片段中,我试图显示一个列表。这个列表已经使用我从ArrayAdapter扩展的ListAdapter填充,并且我重载了getView()方法。 这是我的片段

public class tabcontentActivity extends Fragment {

    public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {
        if (container == null) {
            return null;
        }
        View v = (LinearLayout) inflater.inflate(R.layout.tablayout, container,
            false);
        ListView lv = (ListView) v.findViewById(R.id.listview1);
        ListViewAdapter adapter = new ListViewAdapter(container.getContext(),
            android.R.layout.simple_list_item_1, R.id.textview1);
        adapter.notifyDataSetChanged();
        lv.setAdapter(adapter);

        return v;
    }
}

这就是我实现ListAdapter的方式

public class ListViewAdapter extends ArrayAdapter {
    Context context1;

    public ListViewAdapter(Context context,int resource, int textViewResourceId) {
        super(context,resource,textViewResourceId);
        this.context1 = context;
        System.out.println("here aswell!!!!!!");
        // TODO Auto-generated constructor stub
    }

    public View getView(int arg0, View convertView, ViewGroup arg2) {
        // TODO Auto-generated method stub
        System.out.println("@@@I AM HERE@@@");
        LayoutInflater inflater = LayoutInflater.from(context1);
        convertView = inflater.inflate(R.layout.tablayout, null);

        TextView wv = (TextView) convertView.findViewById(R.id.textview1);
        String summary = "<html><body><h1>This is happening!!!</h1></body></html>";
        wv.setText(Html.fromHtml(summary));

        convertView.setTag(wv);

        return convertView;
    }
}

布局xml是

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

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

    <TextView
        android:id="@+id/textview1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:text="myreader" />

</LinearLayout>

请帮助我找到一种方法来使我的工作。

6 个答案:

答案 0 :(得分:50)

您只是忘记将数据提供给构造函数,然后在构造函数中进行正确的调用:

public ListViewAdapter(Context context,int resource, int textViewResourceId, List<YourObjectType> items) {
    super(context,resource,textViewResourceId, items);
    this.context1 = context;
    // TODO Auto-generated constructor stub
}

答案 1 :(得分:18)

您目前没有向其提供任何数据。如果您仍想查看列表中发生的更新,请覆盖getCount()函数。

我认为这是某种类型。

public int getCount(){
    return 1;
}

这将在列表中绘制一个项目。并且还调用你的getView()。并且,一旦您了解如何提供数据源,请将getCount()更改为您的列表大小。看看这里的教程

http://www.shubhayu.com/android/listview-with-arrayadapter-and-customized-items

答案 2 :(得分:8)

当我们创建自定义arrayadapter时,我们必须使用

public ArrayAdapter (Context context, int textViewResourceId, T[] objects)

public ArrayAdapter (Context context, int resource, int textViewResourceId, T[] objects)

public ArrayAdapter (Context context, int textViewResourceId, List<T> objects)

public ArrayAdapter (Context context, int resource, int textViewResourceId, List<T> objects)

如果我们不使用上面提到的适配器,我们需要覆盖getCount()方法。

答案 3 :(得分:2)

看起来您没有为适配器指定数据源。数据源是提供要显示的数据的任何东西,例如arraylist或游标。如果数据源中没有数据,则根本不会调用getview()。

答案 4 :(得分:1)

  adapter.notifyDataSetChanged();
  lv.setAdapter(adapter);

交换头寸

Layoutinflator=getLayoutInflator();

答案 5 :(得分:0)

       public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {
    if (container == null) {
        View v = (LinearLayout) inflater.inflate(R.layout.tablayout, container,
               false);
       ListView lv = (ListView) v.findViewById(R.id.listview1);
  ListViewAdapter adapter = new ListViewAdapter(container.getContext(),
        android.R.layout.simple_list_item_1, R.id.textview1);
    adapter.notifyDataSetChanged();
    lv.setAdapter(adapter);
   }
  else{
     View v = (LinearLayout) inflater.inflate(R.layout.tablayout, container,
        false);
      ListView lv = (ListView) v.findViewById(R.id.listview1);
     ListViewAdapter adapter = new ListViewAdapter(container.getContext(),
        android.R.layout.simple_list_item_1, R.id.textview1);
     adapter.notifyDataSetChanged();
   lv.setAdapter(adapter);
 }
return v;
}

并覆盖getcount方法

 public int getCount(){
    return 100;
  }