嘿,对不起,我的英语不好。。。
我的 ListFragment 中有一个 ListView,带有自定义适配器。在我的布局中,我有一个按钮。按钮和整个项目/行是可单击的。我用android:clickable=“false”
为ImageButton实现了这一点。正如您在 getView() 方法中看到的,我捕获了一个单击操作。
public class ArrayAdapterListView extends BaseAdapter {
private final ArrayList<String> arrayList;
private final Context context;
private ArrayList<String> pWListName, pW2ListName;
private ArrayList<Integer> pWListIconID;
private ListPopupWindow listPopupWindow, listPopupWindow2;
private boolean isItemHold = false;
ViewHolder viewHolder = new ViewHolder();
public ArrayAdapterListView(ArrayList<String> list, Context context){
this.arrayList = list;
this.context = context;
}
@Override
public int getCount() {
return arrayList.size();
}
@Override
public Object getItem(int position) {
return arrayList.get(position);
}
@Override
public long getItemId(int position) {
return position;
}
@SuppressLint({"ClickableViewAccessibility", "InflateParams"})
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View view = convertView;
if(view == null){
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
view = inflater.inflate(R.layout.fragment_file_browser_row, null);
viewHolder = createViewHolder(view);
view.setTag(viewHolder);
}else{
viewHolder = (ViewHolder) view.getTag();
}
viewHolder.textView.setText(arrayList.get(position));
if(selectedItemIndex.isEmpty()) {
for (int i = 0; i < getCount(); i++) {
selectedItemIndex.add(null);
}
}
if(isItemSelectedOnIndex.isEmpty()){
for (int i = 0; i < getCount(); i++){
isItemSelectedOnIndex.add(false);
}
}
view.setOnTouchListener((v, event) -> {
viewHolder.imageView = v.findViewById(R.id.checkedImage);
if(event.getAction() == MotionEvent.ACTION_DOWN){
index = position;
if(L)Log.d("fileBrowser", "index: " + index);
}
//Auswahl betätigen
if (event.getAction() == MotionEvent.ACTION_UP && isItemHold && !isItemSelectedOnIndex.get(index)) {
isItemHold = false;
isItemSelectedOnIndex.set(index, true);
if(L)Log.d("fileBrowser", "Auswahl getätigt: isItemHold = false; isItemSelected = true");
selectedItemIndex.set(index, index);
if(L)Log.d("fileBrowser", "getätigte Auswahl: " + selectedItemIndex);
viewHolder.imageView.setImageResource(R.drawable.ic_checkbox_checked);
}
//Auswahl löschen
else if(event.getAction() == MotionEvent.ACTION_UP && isItemSelectedOnIndex.get(index)){
isItemHold = false;
selectedItemIndex.set(index, null);
if(L)Log.d("fileBrowser", "getätigte Auswahl2: " + selectedItemIndex);
isItemSelectedOnIndex.set(index, false);
if(L)Log.d("fileBrowser", "Auswahl weg gemacht: isItemSelected = false");
viewHolder.imageView.setImageResource(R.drawable.ic_checkbox);
}
return false;
});
view.setOnLongClickListener(v -> {
if(!isItemHold) {
isItemHold = true;
if(L)Log.d("fileBrowser", "Long Click getätigt: isItemHold = true");
}
return false;
});
listPopupWindow = new ListPopupWindow(context);
listPopupWindow2 = new ListPopupWindow(context);
viewHolder.imageButton.setOnTouchListener((v, event) -> {
listPopupWindow.dismiss();
showListPopupWindow(v);
return false;
});
return view;
}
这是我的布局:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/listview_row_layout"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:gravity="center_vertical"
android:padding="20dp"
android:background="?android:attr/selectableItemBackground"
tools:ignore="ExtraText">
//
android:background="?android:attr/selectableItemBackground"
oder
activatedBackgroundIndicator
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/checkedImage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toLeftOf="@+id/file_text"
android:src="@drawable/ic_checkbox"
/>
<TextView
android:id="@+id/file_text"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentLeft="true"
android:text="@string/beispieltext"
app:layout_constraintStart_toEndOf="@id/checkedImage"
app:layout_constraintEnd_toStartOf="@id/btnListPopupWindow"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
android:layout_marginLeft="@dimen/default_gap"
android:layout_marginStart="@dimen/default_gap"
android:gravity="center_vertical"
/>
<ImageButton
android:id="@+id/btnListPopupWindow"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/ic_baseline_more_vert_24_inv_col"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
android:contentDescription="@string/ffnet_popupwindow"
android:clickable="false"
/>
</androidx.constraintlayout.widget.ConstraintLayout>
现在我想知道你是否可以在不选择整个视图的情况下点击按钮,但仍然注意到背景上的点击(我知道我在列表视图中的位置)。在我点击ImageButton以外的任何其他按钮时,我会对我的代码的任何其他解决方案保持开放,直到我有可见的反馈。可见的触感应该覆盖整个项目。
我已经自己解决了问题。我已经使ImageButton和ImageView再次可点击和聚焦,并找到了一个解决方案,我仍然可以获得项目位置(即使我没有点击它):
View parentRow = (View) v.getParent();
ListView listView = (ListView) parentRow.getParent();
index = listView.getPositionForView(parentRow);
来源:获取列表视图项在按钮上的位置单击
现在我可以处理的位置,而无需点击行了。
问题内容: 我想使列表视图中的所有列表项都打开到一个新页面中,因此每个列表视图项都打开到一个我可以使用的新黑色页面上。我根本不知道该如何实现。我已经连续搜索了几个小时,找不到解决方案的答案。如果有人可以显示和/或解释如何执行此操作而不是提供链接,将不胜感激,但是两者之一都很有帮助。 到目前为止,这是我的代码: 这是在我的string.xml中 这是在我的activity_main.xml中。 我应
我正在设计一个Gridview,其中每个项目都有一个TextView和ImageView。我试图找到关于如何使ImageView可点击以及GridView项目本身(两者都会触发不同的方法())的教程(逐步更新和清晰的教程)。 这就是我目前掌握的: Activity.java GV适配器.java 结果: 当Item1(Textview)被点击时,它应该点击整个Item并触发GridView的OnI
问题内容: 我现在正在寻找几天以寻求ListView中可点击项的解决方案。 首先,我遇到了这个问题: **developer.android.com/resources/articles/touch-mode.html** ,发现它没有“正常”的onListItemClick()行为。 然后我遇到了 这段代码 :http : //www.androidsnippets.org/snippets/1
这是一个非常特殊的绘图请求,但我有数据要以非常特殊的方式查看。情况如下: 1) 我拥有的数据分为25个数据箱,每个数据箱包含不同数量的数据点。仓位值越大,粗略地说,仓位中的数据点数量就越少(这只是数据处理的结果)。 2)我可以访问bin值。 我可以在matplotlib中轻松生成“errorbar”类型的绘图(y轴从半径缩放到以下度数): 但是,对于我想研究的内容来说,这并不是特别有见地。我真的很
问题内容: 我有几个具有android:visibility =“ invisible”属性的视图,文本视图和一个按钮。我的目标是单击位于这些“不可见”窗口小部件上方的按钮,以使这些窗口小部件变得可见。我创建了另一个名为“ VisibilityActivity.java”的Java类,并尝试了以下方法,但是由于某种原因,当我运行该应用程序时,该按钮没有执行任何操作。我不知道自己缺少什么。 这是代码
问题内容: 我想使UILabel可点击。 我已经尝试过了,但是没有用: 问题答案: 你有没有尝试设置到上标签?这应该工作。