私がやりたいことは、アクション バー アイテムのビューを取得することです。そのため、QuickActionDialog を正確な場所に表示できます。これを試してみましたが、画面の左上隅のアクションバーの上 (およびアイテム/ボタンの上) にクイックアクションダイアログが表示されます。
getSherlockActivity().getSupportActionBar().setCustomView(createCustomItemView(R.drawable.ic_add));
questionPup.show(getSherlockActivity().getSupportActionBar().getCustomView());
public View createCustomItemView(int resId) {
Drawable icon = getResources().getDrawable(resId);
ImageView iconView = new ImageView(getSherlockActivity());
iconView.setImageDrawable(icon);
return iconView;
}
修正するにはどうすればよいですか?