6

我在尝试了解如何使用listfragments和自定义适配器。所以我建立这个小例子,我想知道我可以在哪里设置我的列表视图的分隔符为空。如何设置ListFragment自定义布局的分隔符(为空)

我发现了不同的方式: - 机器人:dividerHeight = “1dip” - 机器人:分隔= “@安卓:彩色/透明” 但我没有与列表视图的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> 

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); 
    } 

我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; 
} 

回答

18

您可以随时返回上onCreateView视图设置为ListFragment自定义视图()但你需要在其中有一个“@ id/android:list”的ListView,就像documentation

在XML中,你可以做android:divider="@null"或者,如果你真的想这样做,在你的ListFragment代码getListView().setDivider(null);(在onActivityCreated()方法)。

+0

我尝试添加了getListView()setDivider(空)(见我的代码 “尚未创建内容视图”),但给我一个错误。我有点困惑。我知道我需要指向一个带有listview的xml布局,但是我该在哪里做呢?如果我用listview制作xml布局,我应该在哪里放置listview_item_row.xml? – Lokkio

+3

而不是调用'getListView()。setDivider(null);'在'onCreateView'中,调用它'onActivityCreated',并应该解决这个问题。我从不触及ListFragment中的'onCreateView'函数。 – MCeley

+0

是的最后一个工作:D谢谢! – Lokkio

3

onCreateView使用:

getListView().setDivider(null);

+0

你忘了括号? – Lokkio

+0

括号是什么? – Rawkode

+0

getListView()? – Lokkio

相关问题