不调用onKeyDown

时间:2014-12-09 15:20:53

标签: android onkeydown

我将rootView传递给setContentView:

root = (FlyOutMenu) this.getLayoutInflater().inflate(R.layout.activity_myLayout, null);
    setContentView(root);

,布局定义如下:

<com.android.xyz.view.viewgroup.FlyOutMenu.FlyOutMenu
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<RelativeLayout 
            android:id="@+id/RelativeLayoutMain"
            android:layout_width="match_parent"
            android:layout_height="match_parent" >

                <TextView
                    android:id="@+id/dialog_label_topic" />

                <EditText
                    android:id="@+id/dialog_searchbar_topic"
                    android:ems="10" >
                </EditText>

                <Button
                    android:id="@+id/dialog_menu_topic" />


                <GridView
                android:id="@+id/gv1"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@id/dialog_searchbar_topic"
                android:layout_alignParentBottom="true" >
            </GridView>
    </RelativeLayout>

如您所见,它是同一应用程序中不同包中的代码。

我的应用程序中有两个包:

1) com.android.xyz.view.viewgroup.FlyOutMenu 2) con.android.xyz

在我的第二个包中的MainActivity i覆盖onKeyDown - 方法,但它永远不会被调用。

@Override
public boolean onKeyUp(int keyCode, KeyEvent event) {
    // TODO Auto-generated method stub
    Log.e("onKeyUp","Fired");
    if(keyCode == KeyEvent.KEYCODE_BACK) {
        Log.e("fired with KeyEvent","true");
        RelativeLayout.LayoutParams myLayoutParams = (android.widget.RelativeLayout.LayoutParams) gv.getLayoutParams();
        myLayoutParams.addRule(RelativeLayout.ALIGN_PARENT_BOTTOM);
        gv.setLayoutParams(myLayoutParams);
    }
    return super.onKeyUp(keyCode, event);
}

我没有附加任何onFocus监听器。请求Focus的唯一View是我的活动中的搜索栏,但它也没有Focus监听器。

我尝试了以下内容:

onKeyDown not always called in Android app

没有结果......问题保持不变。

感谢任何帮助。

有人知道为什么不能调用它吗?

提前致谢

1 个答案:

答案 0 :(得分:3)

希望这个答案对你的问题来说还不晚;)

我在自己的自定义视图实现中遇到了同样的问题,我发现onKeyUp(int keyCode, KeyEvent event)是在View上调用的键盘处理事件

但是ViewGroup从不调用onKeyUp,而是调用自己的方法dispatchKeyEvent(KeyEvent event),这是您在自定义@Override实施中ViewGroup所需的方法

希望如果有其他人遇到此问题,这会有所帮助。