gpt4 book ai didi

android - ListView 页脚仅在首先选择 listview 项后可选择

转载 作者:行者123 更新时间:2023-11-29 01:35:35 24 4
gpt4 key购买 nike

所以我搜索了又搜索并尝试了我见过的每一种方法,但似乎都无法解决我的问题。我的 ListView 使用自定义适配器生成,我添加了页脚 View 和 onTouchMethod,并且我知道它正在与 lsitview 竞争焦点,并且 ListView 获胜,因为我已经阅读了有关此错误的信息。但也许有些东西我看不到,我错过了。

我需要始终可选择页脚 View ,现在只有在 ListView 中选择了一个项目后它才可选择,然后一切都按预期进行。但是在 ListView 上第一次加载时,页脚没有响应。

这是我的代码。

customAdapter = new ListAdapter(this, R.layout.itemlistrow, store_data);
customAdapter.setNotifyOnChange(true);

listView.addFooterView(none_of_the_above, null, false);
listView.setAdapter(customAdapter);

listView.setChoiceMode(ListView.CHOICE_MODE_SINGLE);

listView.setOnItemClickListener(new OnItemClickListener(){

@Override
public void onItemClick(AdapterView<?> arg0, final View view,
int position, long id) {



none_of_the_above.setOnTouchListener(new View.OnTouchListener() {

@TargetApi(Build.VERSION_CODES.JELLY_BEAN)
public boolean onTouch(View v, MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_DOWN) {
v.setSelected(true);
view.setSelected(false);
view.setActivated(false);
view.clearFocus();

Log.e("NoneOFTheAboveButton:onTouch", "clicked");
none_of_the_above.setBackground(getResources().getDrawable(R.drawable.store_setup2_found_selection_boxes_modified_states));
}
return false;
}
});

listView.clearFocus();
none_of_the_above.setSelected(false);
view.setSelected(true);
view.setActivated(true);

selectedPosition = position;
customAdapter.setSelectedPosition(selectedPosition);

}


});

我的页脚按钮 xml

<Button xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/none_of_the_above"
android:layout_width="match_parent"
android:layout_height="45dp"
android:layout_marginBottom="10dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:background="@drawable/store_setup2_found_selection_boxes_modified_states"
android:focusable="true"
android:clickable="true"
android:text="NONE OF THE ABOVE" />

ListView xml:

<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/selection_1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="20dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginTop="20dp"
android:clickable="false"
android:focusable="false"
android:descendantFocusability="blocksDescendants" >

我现在已将 onTouchMethod 从 listview 的 OnItemClick 中取出并放在上面,它会在第一次尝试时收到点击。但是现在,当先单击然后单击页脚时,Listview 不会失去焦点。

最佳答案

通过在 onItemClick 之外放置 onTouch 方法以及在 onItemClick 内部放置一个方法来解决,以便在选择 ListView 时与 ListView 进行交互。

还在 onIemClick 之外的 onTouch 方法中添加了 listview.clearChoices()

关于android - ListView 页脚仅在首先选择 listview 项后可选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28369787/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com