FrameLayout无法通过按键获得焦点?

时间:2015-01-30 10:28:58

标签: android focus android-framelayout

我有一个视图(假设它是MyFramLayout)扩展了FrameLayout,当按下键(我在电视平台上工作)时,我无法让这个FrameLayout获得焦点。

布局是这样的:

<LinearLayout android:layout_width="match_parent"
              android:layout_height="match_parent">

    <ListView android:id="@android:id/list"
              android:layout_width="match_parent"
              android:layout_height="wrap_content" />

    <com.roger.MyFrameLayout 
              android:id="@android:id/my_frame"
              android:layout_width="match_parent"
              android:layout_height="wrap_content"
              android:focusable="true"
              android:focusableInTouchMode="true" />

</LinearLayout>

无论如何要解决问题?

1 个答案:

答案 0 :(得分:1)

每当您希望自定义布局获得焦点时,您都​​必须致电

boolean b = yourLayout.requestFocus();

这将返回是否获得焦点。