我有一个简单的ListView
,就像这样
Item1 Item2 Item3
我想用Fragment
替换ListView
,现在我已经实现了这个,但我想做更多,我想每次更换片段,第一项在ListView
中有焦点(如果第一个项目存在)。
如何配置ListView
布局文件?现在,配置文件是这样的:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:id="@+id/file_details"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:dividerHeight="1dp" />
</LinearLayout>
----------------------------------------------- - 的更新 ----------------------------------------- ----------------------------
现在,我需要按方向down
来请求第一个项目焦点(当项目具有焦点时,背景发生变化)。我需要做的是第一项在加载ListView
时具有焦点。