我有一个视图(假设它是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>
无论如何要解决问题?
答案 0 :(得分:1)
每当您希望自定义布局获得焦点时,您都必须致电
boolean b = yourLayout.requestFocus();
这将返回是否获得焦点。