我有一个已经有很多活动和课程的应用程序。喜欢个人资料,朋友,照片,新闻Feed等。我想将滑动抽屉整合到我的主要活动中。在示例中,它们只是显示实现onClick的数组列表。所以我的问题是如何更改该数组列表成为我的活动,如朋友,个人资料,家庭等。
答案 0 :(得分:0)
您可以将ListView与自定义适配器一起使用。要调整自定义适配器,您可以在listView中链接该适配器。在适配器中,您可以放置自定义图标
public View getView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflator = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View rowView = inflator.inflate(R.layout.row, parent, false);
ImageView icon = (ImageView) rowView.findViewById(R.id.row_icon);
TextView title = (TextView) rowView.findViewById(R.id.row_title);
title.setText(proMenu[position]);
String s = proMenu[position];
if(s.equalsIgnoreCase("Home")){
icon.setImageResource(R.drawable.icon_home);
}
else
if(s.equalsIgnoreCase("Best Nearby")){
icon.setImageResource(R.drawable.specialss);
}