我有一个空的网格视图,它填充了表格布局中的一列,我想长按该网格视图并弹出一个快速操作弹出窗口。
空的 gridview 不会触发 longpress 事件。
gridTue.setOnLongClickListener(new OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
// TODO Auto-generated method stub
return false; //I've breackpoint this line to test if it fires or not
}
});
XML:
<GridView
android:id="@+id/gridTue"
android:numColumns="1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:longClickable="true"
android:background="@android:color/background_light" />