如何设置ListFragment自定义布局的Divider(为null)

Lok*_*kio 6 android android-adapter android-fragments android-listfragment

我试图了解如何使用listfragments和自定义适配器.所以我构建了这个小例子,我想知道在哪里可以将listview的分隔符设置为null.

我找到了不同的方法: - android:dividerHeight ="1dip" - android:divider ="@ android:color/transparent"但是我没有带有listview的XML布局

我也看到了类似listview.setDivider(null)的东西,但由于使用了listfragments,我不知道在我的代码中我可以在哪里使用该方法.

我的代码:

listview_item_row.xml
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

    <ImageView
        android:id="@+id/ivCountry"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/ic_launcher" 
        android:layout_weight="1"/>

    <TextView
        android:id="@+id/tvCountry"
        android:layout_width="wrap_content"
        android:layout_height="fill_parent"
        android:gravity="center_vertical"
        android:text="TextView"
        android:layout_weight="4" />

</LinearLayout>
Run Code Online (Sandbox Code Playgroud)

CountryList类

public class CountryList extends ListFragment {

    Country[] countries2 = new Country[]
            {
                new Country("Netherlands"),
                new Country(R.drawable.bas,"Basque Country")
            };


    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {

        CountryAdapter adapter = new CountryAdapter(inflater.getContext(),R.layout.listview_item_row,countries2);
        setListAdapter(adapter);
        getListView().setDivider(null);

        return super.onCreateView(inflater, container, savedInstanceState);
    }
Run Code Online (Sandbox Code Playgroud)

我的CountryAdapter

public class CountryAdapter extends ArrayAdapter<Country>{

Context context;
int layoutResourceId;
Country[] data = null;

public CountryAdapter(Context context, int layoutResourceId, Country[] data) {
    super(context,layoutResourceId,data);
    this.context = context;
    this.layoutResourceId = layoutResourceId;
    this.data = data;

}

@Override
public View getView(int position, View convertView, ViewGroup parent) {
    // TODO Auto-generated method stub
    View row = convertView;
    CountryHolder holder = null;

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

        holder = new CountryHolder();
        holder.imgIcon = (ImageView) row.findViewById(R.id.ivCountry);
        holder.txtTitle = (TextView)row.findViewById(R.id.tvCountry);

        row.setTag(holder);

    } else {
        holder = (CountryHolder) row.getTag();
    }

    Country country = data[position];
    holder.txtTitle.setText(country.getTitle());
    holder.imgIcon.setImageResource(country.getIcon());

    return row;

}

static class CountryHolder
{
    ImageView imgIcon;
    TextView txtTitle;
}
Run Code Online (Sandbox Code Playgroud)

gal*_*lex 18

您始终可以通过在onCreateView()上返回一个视图来为ListFragment设置自定义视图,但是您需要在其中包含一个ListView,其中包含"@ id/android:list",如文档中所述.

android:divider="@null"如果您真的想在ListFragment代码中执行此操作getListView().setDivider(null);(在onActivityCreated()方法中),您可以在xml 中执行此操作.

  • 而不是在`onCreateView`中调用`getListView().setDivider(null);`,在`onActivityCreated`中调用它,这应该可以解决问题.我强调从不触及`ListFragment`中的`onCreateView`函数. (3认同)