1
所以我做了一個類擴展BaseAdaper,看起來像這樣:如何顯示上下文菜單網格佈局中的Android
public class ProfileTileAdapter extends BaseAdapter {
private Context context;
private ForwardingProfile[] profiles;
public ProfileTileAdapter(Context context, ForwardingProfile[] profiles) {
this.context = context;
this.profiles = profiles;
}
@Override
public int getCount() {
return profiles.length;
}
@Override
public Object getItem(int position) {
return profiles[position];
}
@Override
public long getItemId(int position) {
return profiles[position].getID();
}
@Override
public View getView(int position, View convertView, ViewGroup arg2) {
ProfileTile tile = null;
if (convertView == null) {
tile = new ProfileTile(context, profiles[position]);
LayoutParams lp = new GridView.LayoutParams(
LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT);
tile.setLayoutParams(lp);
} else {
tile = (ProfileTile) convertView;
}
return tile;
}
}
在我的活動有一個網格佈局和它的適配器設置爲ProfileTileAdapter的實例。在我的活動中,我想打開一個上下文菜單,當用戶長按其中一個視圖(在這種情況下是一個ProfileTile),但我不知道如何。當用戶在上下文菜單中選擇一個選項時,我還需要找出ProfileTile長時間按下的內容。所有的教程都在活動中使用靜態視圖進行操作,但不是這樣。