- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
虽然我很确定这个问题已经解决了一千多次,但我已经为此苦苦挣扎了一段时间。我已经查看了 SO 和其他地方的各种其他类似问题,但我无法解决这个问题。
核心问题是:
When I have clickable components in my list items, if I long-click on a row (for displaying the contextual action bar), the selector for the row does not appear. The long click is triggered though - there just isn't any visual feedback that the long click is happening.
请注意,仅当行布局包含可点击项目时才会出现此问题。这是我已经尝试过的事情的快速 list :
drawSelectorOnTop
设置为 true
(在 XML 和 getListView()
中都试过了choiceMode
设置为 singleChoice
(在 XML 和 getListView()
中都试过了listSelector
设置为各种值 - 透明、白色等(在 XML 和 getListView()
中都尝试过) .LinearLayout
已将 longClickable
设置为 true
。如果没有这个,长点击甚至不会被注册。无论我做什么,长按列表项都不会显示任何类型的选择器,尽管确实发生了长按并且我确实收到了 OnItemLongClick
回调。
关于可能导致此问题的任何线索?
重现问题的代码:
<?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:baselineAligned="true"
android:longClickable="true"
android:orientation="horizontal" >
<TextView
android:id="@+id/tvTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge" />
<Button
android:id="@+id/btnGo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:background="@android:drawable/btn_star_big_on" />
</LinearLayout>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:entries="@array/configurations" >
</ListView>
</LinearLayout>
public class MainActivity extends ListActivity {
private ListView mListView;
private Context mContext;
private RowAdapter mAdapter;
private static final String LOG_TAG = "ListViewLongClick";
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mContext = this;
mListView = getListView();
mListView.setChoiceMode(ListView.CHOICE_MODE_SINGLE);
mListView.setSelector(android.R.color.white);
mListView.setDrawSelectorOnTop(true);
mAdapter = new RowAdapter(mContext, R.layout.list_item, R.id.tvTitle,
getResources().getStringArray(R.array.configurations));
mListView.setAdapter(mAdapter);
mListView.setOnItemLongClickListener(new OnItemLongClickListener() {
public boolean onItemLongClick(AdapterView<?> parent, View view,
int position, long id) {
Toast.makeText(mContext, "Long-click on item " + position,
Toast.LENGTH_SHORT).show();
return true;
}
});
}
static class RowAdapter extends ArrayAdapter<String> {
private int mResource;
private String[] configs;
public RowAdapter(Context context, int resource,
int textViewResourceId, String[] objects) {
super(context, resource, textViewResourceId, objects);
this.mResource = resource;
this.configs = objects;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View viewToReturn = convertView;
if (convertView == null) {
viewToReturn = LayoutInflater.from(getContext()).inflate(
this.mResource, null, false);
}
TextView label = (TextView) viewToReturn.findViewById(R.id.tvTitle);
label.setText(configs[position]);
Button btn = (Button) viewToReturn.findViewById(R.id.btnGo);
btn.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
Log.d(LOG_TAG, "Aha! You clicked on the star button");
}
});
return viewToReturn;
}
}
}
<resources>
<string name="app_name">ListViewLongClick</string>
<string name="hello_world">Hello world!</string>
<string name="menu_settings">Settings</string>
<string name="title_activity_main">MainActivity</string>
<string-array name="configurations">
<item >Phone-Port</item>
<item >Phone-Land</item>
<item >Tab7-Port</item>
<item >Tab7-Land</item>
<item >Tab10-Port</item>
<item >Tab10-Land</item>
</string-array>
</resources>
最佳答案
您应该像这样更改您的 list_items:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:baselineAligned="true"
android:longClickable="true"
android:orientation="horizontal"
android:background="@android:drawable/list_selector_background"
>
<TextView
android:id="@+id/tvTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge" />
<Button
android:id="@+id/btnGo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:background="@android:drawable/btn_star_big_on" />
</LinearLayout>
我在你的 LinearLayout
中添加了 android:background="@android:drawable/list_selector_background"
。
希望这对你有帮助 =)
关于android - ListView : How to display item selector when rows have clickable widgets?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11450521/
我想知道这两者之间有什么不同 .myClass/DomElement .myotherclassinsidethatelement 和 .myClass/DomElement > .myothercl
使用 jQuery on() 版本 1.7。我通常这样绑定(bind)我的事件: $(".foo").on("click", function() { console.log("foo cli
我想找到与选择器匹配的所有元素,但如果它已经包含在匹配元素中则不查找。 $('#container').find('.child').not('.child .child'); 请注意,.child
我有一个看起来像这样的无序列表,但更广泛: Parent Category 2 Parent Category 2 Parent Category 3
这个问题在这里已经有了答案: CSS negation pseudo-class :not() for parent/ancestor elements (2 个答案) 关闭 4 年前。
我希望使用 CSS :not() 来定位 before 选择器。这可能吗? 示例: https://jsfiddle.net/uuq62b8d/ a.button:before { content
这有什么区别: $.each($('#myTable input[name="deleteItem[]"]:checked').do_something()); 还有这个: $('#myTable i
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
我正在使用 UL LI 列表和 jQuery 创建一棵树。我使用了 jQuery 选择器 jQuery(li:has(ul)) 查找所有具有子节点的列表节点,然后向其添加单击事件。 jQuery(li
我真的不知道如何命名这两种方法,所以请原谅我这样调用它们。 字符串选择器 $("#myList li").eq(3); 函数选择器 $("#myList li:eq(3)"); 据我所知,他们都做同样
我有以下代码: .. 我正在使用以下 CSS 来排除具有“main-l tbl”类的表: table:not(.main-l .views-table) { .. } 我注
这个问题已经有答案了: 已关闭12 年前。 Possible Duplicate: What is the difference between $ and jQuery 我注意到使用“jQuery(
我有许多 css 选择器和许多选择器异常,所以我使用 :not 将它们排除在外... 示例(只是一些我不需要的选择器): [class*="-dashboard-"]:not([class$="-bi
CADisplayLink 有这个方法是有道理的,但我很好奇为什么 UIScreen 也会有它。 最佳答案 文档说屏幕提供的显示链接与该屏幕相关联。但是,查看官方文档,与任何屏幕都没有明显的关系;显示
我在这里阅读了关于 toArray() 的文档,并在控制台中对其进行了测试。我找不到在选择器上调用 toArray() 和调用选择器本身之间的区别。 两种方式都得到了完全相同的结果,这是一个与选择器匹
我有一个问题,为什么这两个代码片段不同。 $('#ctl00_DDMenu1_HyperLink1') //jQuery(a#ctl00_DDMenu1_HyperLink1 Default.asp
我想通过以下方式模拟我可以在 jQuery 中实现的目标$('.someClass:not(.hidden)') 我试过下面的代码。 $crawler->filter('someClass:not(.
这个问题不太可能对任何 future 的访客有帮助;它只与一个较小的地理区域、一个特定的时间点或一个非常狭窄的情况相关,通常不适用于全世界的互联网受众。如需帮助使此问题更广泛适用,visit the
我想通过以下方式模拟我可以在 jQuery 中实现的目标$('.someClass:not(.hidden)') 我试过下面的代码。 $crawler->filter('someClass:not(.
我想根据 Iterator::next 中当前枚举变体的某些属性更改枚举变体。我有两次尝试,都没有编译: enum Test { A(Vec), B, } impl Iterator
我是一名优秀的程序员,十分优秀!