当我点击我的活动的列表视图时,我想显示 alertdialog,我有一个显示 alertdialog 的代码,但我知道我的代码有问题,我不知道如何修复它,警报没有像我想要的那样显示. 这是我的代码:
@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
new bike_type_dao(responsetype).view_bike_type();
final Entity_Brand brand = adapterBrand.getItem(position);
builder = new Dialog(this);
builder.setTitle(brand.getBrand_name());
LayoutInflater li = (LayoutInflater) this
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = li.inflate(R.layout.tab_brand_activity, null, false);
builder.setContentView(view);
builder.setCancelable(true);
listtype = (ListView) builder.findViewById(R.id.list_sepeda);
listtype.setOnItemClickListener((OnItemClickListener) this);
listtype.setAdapter(new ArrayAdapter<Entity_Bike_Type>(this,
android.R.layout.simple_list_item_1, arrayList));
listtype.showContextMenu();
builder.show();
}
我希望有人可以帮助我解决这个问题。谢谢你。