0
私はAndroid trainingに続き、サイドバーでアクティビティを構築しました。ここで私のXMLは:Androidは引き出しリストの特定の位置にある項目を取得します
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- The main content view -->
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<!-- The navigation drawer -->
<ListView android:id="@+id/left_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:choiceMode="singleChoice"
android:divider="@android:color/transparent"
android:dividerHeight="0dp"
android:background="#111"/>
</android.support.v4.widget.DrawerLayout>
私の質問は:ListViewの特定の位置での表示を取得するには?私が試してみましたpublic void onItemClick(AdapterView<?> parent, View view, int position, long id)
例
View firstElement = (View) mDrawerList.getAdapter().getItem(5);
またはListView.OnItemClickListener
方法では、いくつかのコードを試みたが成功しませんでした:
parent.getChildAt(5);
アダプタコード –
を表示してくださいリサイクラービュー –