FragmentActivity内部我正在尝试将NavigationDrawer与ArrayAdapter一起使用。 尽管事实上onItemClick从未被触发(在点击抽屉简单关闭的任何地方之后),这一切看起来都很有效。
我已经阅读了几乎无限数量的具有类似问题的线程,通常通过添加:
来解决android:focusable="false"
对于按钮等所有项目,我尝试将其添加到字面上。我也尝试过添加
android:descendantFocusability="blocksDescendants"
到我的父布局。为了确保专注于DrawerLayout,我调用了:
hashTagDrawerLayout.requestFocus();
在onDrawerOpened中。正如你猜测的那样......到目前为止没有任何工作,所以我怀疑原因可能不是焦点。
我的抽屉在活动内的初始化:
private ArrayList<String> hashTagValues; //values into list are loaded before initializeHashTagNavigationDrower is called
private void initializeHashTagNavigationDrower() {
hashTagDrawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);
hashTagListView = (ListView) findViewById(R.id.left_drawer);
hashTagListView.setAdapter(new ArrayAdapter<String>(this,
R.layout.hashtag_list_item, R.id.textView1, hashTagValues
.toArray(new String[hashTagValues.size()])));
hashTagListView.setOnItemClickListener(new NavigationDrawerListener(
hashTagListView));// to nie działa :/
getActionBar().setDisplayHomeAsUpEnabled(true);
hashTagDrawerToggle = new ActionBarDrawerToggle(this, /* host Activity */
hashTagDrawerLayout, R.drawable.icon, R.string.open_drawer,
R.string.close_drawer) {
public void onDrawerClosed(View view) {
invalidateOptionsMenu(); // creates call to
// onPrepareOptionsMenu()
}
我的main.xml是:
<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"
android:focusable="false" />
<!-- The navigation drawer -->
<ListView
android:id="@+id/left_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="#111"
android:choiceMode="singleChoice"
android:divider="@android:color/transparent"
android:dividerHeight="0dp" />
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:focusable="false"
android:orientation="vertical" >
<fragment
android:id="@+id/selectionFragment"
android:name="com.example.SelectionFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:focusable="false" />
<fragment
android:id="@+id/splashFragment"
android:name="com.example.SplashFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:focusable="false" />
<fragment
android:id="@+id/userSettingsFragment"
android:name="com.facebook.widget.UserSettingsFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:focusable="false" />
</LinearLayout>
我的hashtag_list_item.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="center"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textIsSelectable="false" />
</LinearLayout>
我的操作栏布局: action_bar.xml
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:id="@+id/add_photo"
android:focusable="false"
android:icon="@drawable/action_photo"
android:showAsAction="always"
android:title="@string/take_photo">
</item>
正如你可以看到我正在使用facebook小部件 - 有可能焦点被facebook片段中的某些东西“偷走”,尽管事实上它甚至不可见? 我会提出任何有关如何使其正常工作的提示。
答案 0 :(得分:0)
我有两节课:
OnDrawerItemClickListener implements ListView.OnItemClickListener
和
DrawerAdapter extends BaseAdapter
抽屉里只有2个列表项,所以我在DrawerAdapter中为每个项指定了匿名的View.OnClickListener。然后,几天后没有处理这段代码我在OnDrawerItemClickListener(以前是空的)中重构了一些东西并实现了onClick功能。这不起作用,正如你上面提到的,我也用Google搜索并尝试了很多解决方案,但没有一个能够正常工作。然后我查看了代码,发现DrawerAdapter中的匿名监听器,删除了它们,一切正常。