如何设置 ListFragment 自定义布局的 Divider(为 null)
Posted
技术标签:
【中文标题】如何设置 ListFragment 自定义布局的 Divider(为 null)【英文标题】:How to set the Divider (to null) of a ListFragment custom layout 【发布时间】:2012-12-09 03:41:05 【问题描述】:我正在尝试了解如何使用 listfragments 和自定义适配器。所以我构建了这个小例子,我想知道在哪里可以将列表视图的分隔符设置为 null。
我发现了不同的方法: - 安卓:dividerHeight="1dip" - android:divider="@android:color/transparent" 但我没有带有列表视图的 XML 布局
我也看到了类似 listview.setDivider(null) 的东西,但由于使用了 listfragments,我不知道在我的代码中哪里可以使用该方法。
我的代码:
listview_item_row.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_
android:layout_
android:orientation="horizontal" >
<ImageView
android:id="@+id/ivCountry"
android:layout_
android:layout_
android:src="@drawable/ic_launcher"
android:layout_weight="1"/>
<TextView
android:id="@+id/tvCountry"
android:layout_
android:layout_
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);
我的国家适配器
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;
【问题讨论】:
【参考方案1】:您始终可以通过在 onCreateView() 上返回视图来为 ListFragment 设置自定义视图,但您需要在其中包含一个带有“@id/android:list”的 ListView,如 documentation 中所述。
您可以在您的 xml 中执行 android:divider="@null"
或者如果您真的想在您的 ListFragment 代码中执行此操作 getListView().setDivider(null);
(在 onActivityCreated() 方法中)。
【讨论】:
我尝试添加 getListView().setDivider(null) (请参阅我的代码“尚未创建内容视图”),但这给了我一个错误。我有点困惑。我知道我需要用 listview 指向一个 xml 布局,但是我在哪里做呢?如果我用 listview 制作 xml 布局,我应该把我的 listview_item_row.xml 放在哪里? 不要在onCreateView
中调用getListView().setDivider(null);
,而是在onActivityCreated
中调用它,这应该可以解决问题。我强调永远不要触摸ListFragment
中的onCreateView
函数。【参考方案2】:
在onCreateView
内部使用:
getListView().setDivider(null);
【讨论】:
你忘了括号? 也谢谢你!您仍然在正确的方向上给出了答案:)以上是关于如何设置 ListFragment 自定义布局的 Divider(为 null)的主要内容,如果未能解决你的问题,请参考以下文章
在 ListFragment 中使用自定义 ListView