- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我根据互联网上的许多示例制作了一个普通的 3 级 ExpandableListView,并且效果很好。
有一个警告。单击第 2 级和第 3 级并不总是有效。虽然有时它工作正常。通常在开始时它无处不在。然后它不再适用于大约 50% 的项目。没有任何逻辑。有时我展开第二组,然后我不能再折叠那个组了。或者有时我扩展第二组,然后我无法折叠第二级的任何其他组。唯一一致的是,它通常通过将锁定的 View 滚动出可见区域并返回来修复。
可能发生了什么?
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.chooselib);
//...
ExpandableListView lv = (ExpandableListView) findViewById(R.id.libListView);
lv.setAdapter(new LibraryListAdapter());
}
final List<String> states = new ArrayList<String>();
final List<List<String>> cities = new ArrayList<List<String>>();
final List<List<List<Map<String, String>>>> localLibs = new ArrayList<List<List<Map<String, String>>>>();
public abstract class LibraryListBaseAdapter extends BaseExpandableListAdapter{ //changing these functions has no effect whatsoever on the problem
@Override
public Object getChild(int groupPosition, int childPosition)
{
return getChildId(groupPosition, childPosition);
}
@Override
public long getChildId(int groupPosition, int childPosition)
{
return (groupPosition << 15) + childPosition + 1;
}
@Override
public Object getGroup(int groupPosition)
{
return getGroupId(groupPosition);
}
@Override
public long getGroupId(int groupPosition)
{
return (groupPosition << 15);
}
@Override
public boolean hasStableIds()
{
return true;
}
@Override
public boolean isChildSelectable(int groupPosition, int childPosition)
{
return true;
}
}
public class LibraryListAdapter extends LibraryListBaseAdapter
{
Map<Integer, ExpandableListView> cache = new TreeMap<Integer, ExpandableListView>();
@Override
public View getChildView(final int groupPosition, final int childPosition,
boolean isLastChild, View convertView, ViewGroup parent)
{
if (cache.containsKey(groupPosition*10000 + childPosition))
return cache.get(groupPosition*10000 + childPosition);
LibraryListCityView l = new LibraryListCityView();
l.setPadding((int)(60 * getResources().getDisplayMetrics().density), l.getPaddingTop(), l.getPaddingRight(), l.getPaddingBottom());
//l.setLayoutParams(new ViewGroup.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT)); has no effect whatsoever
//l.setFocusable(true); has no effect whatsoever
l.setAdapter(new LibraryListCityAdapter(groupPosition,childPosition));
if (cities.get(groupPosition).size() == 1) l.expandGroup(0);
l.setOnChildClickListener(new ExpandableListView.OnChildClickListener() {
@Override
public boolean onChildClick(ExpandableListView expandableListView, View view, int i, int lib, long l) {
onLeafClick(groupPosition,childPosition,lib);
return false;
}
});
cache.put(groupPosition*10000 + childPosition, l);
return l;
}
@Override
public int getChildrenCount(int groupPosition)
{
return cities.get(groupPosition).size();
}
@Override
public int getGroupCount()
{
return states.size();
}
@Override
public View getGroupView(int groupPosition, boolean isExpanded,
View convertView, ViewGroup parent)
{
View row = //convertView != null && convertView instanceof TextView ? convertView :
getLayoutInflater().inflate(android.R.layout.simple_expandable_list_item_1, parent, false);
((TextView) row).setText(states.get(groupPosition));
return row;
}
}
public class LibraryListCityView extends ExpandableListView
{
int intGroupPosition, intChildPosition, intGroupid;
public LibraryListCityView()
{
super(LibraryList.this);
}
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec)
{
widthMeasureSpec = MeasureSpec.makeMeasureSpec(MeasureSpec.getSize(widthMeasureSpec), MeasureSpec.EXACTLY);
heightMeasureSpec = MeasureSpec.makeMeasureSpec(2000, MeasureSpec.AT_MOST); //what does this do?
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
}
//from http://stackoverflow.com/questions/19298155/issue-with-expanding-multi-level-expandablelistview
@Override
protected void onDetachedFromWindow() {
try {
super.onDetachedFromWindow();
} catch (IllegalArgumentException e) {
// TODO: Workaround for http://code.google.com/p/android/issues/detail?id=22751
}
}
}
public class LibraryListCityAdapter extends LibraryListBaseAdapter
{
int state,city;
LibraryListCityAdapter (int a, int b) {
state = a;
city = b;
}
@Override
public View getChildView(int groupPosition, int childPosition,
boolean isLastChild, View convertView, ViewGroup parent)
{
//todo: use convertView (but do not want to mix groupView/childView up)
View row = getLayoutInflater().inflate(R.layout.libraryinlistview , parent, false);
((TextView) row).setText(localLibs.get(state).get(city).get(childPosition).get("NAME"));
return row;
}
@Override
public int getChildrenCount(int groupPosition)
{
return localLibs.get(state).get(city).size();
}
@Override
public int getGroupCount()
{
return 1;
}
@Override
public View getGroupView(int groupPosition, boolean isExpanded,
View convertView, ViewGroup parent)
{
View row = getLayoutInflater().inflate(R.layout.librarycityinlistview, parent, false);
((TextView) row).setText(cities.get(state).get(city));
return row;
}
}
选择lib.xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/lay_chooselib_choose"
android:id="@+id/textView" android:layout_gravity="center_vertical|left" android:padding="5sp"/>
<ExpandableListView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/libListView" android:layout_gravity="right|center_vertical"
/>
</LinearLayout>
librarycityinlistview.xml:
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/text1"
android:layout_width="fill_parent"
android:layout_height="?android:attr/listPreferredItemHeight"
android:gravity="center_vertical"
android:paddingLeft="?android:attr/expandableListPreferredChildPaddingLeft"
android:singleLine="true"
android:textAppearance="?android:attr/textAppearanceListItem"
/>
libraryinlistview.xml:
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/text1"
android:layout_width="fill_parent"
android:layout_height="?android:attr/listPreferredItemHeight"
android:paddingLeft="60dip"
android:gravity="center_vertical"
/>
听起来有点像https://code.google.com/p/android/issues/detail?id=3414但有点相反(因为有问题的列表是外部 ListView 的一个项目),并且改变 descand 可聚焦性并没有改变任何东西。 (因为列表中只有 TextView ,所以它们无论如何都不可聚焦)。 logcat 中也没有任何用处
我不太了解我所基于的来源是 onMeasure 中的内容。以及 ListView 的组和子项之间的拆分。或许为第 1 级的每个组提供一个可扩展的 ListView 会更好,而不是为第 2 级的每个组提供一个?
最佳答案
查看您的代码,我注意到您的 hasStableIds 方法返回 true,但 getGroupId 和 getChildId 返回基于位置变量的值。我认为这混淆了 ExpandableListView 逻辑。仅当您的对象具有不可变的唯一 ID 时,hasStableIds 才应返回 true。
关于android - 多级 ExpandableListView 中的项目并不总是可点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25381702/
我不明白 int 63823 为何比 double 1.0 占用更少的空间。在这个特定实例中,int 中是否没有存储更多信息? 最佳答案 I don't understand how an int 6
这可能不是一个直接的代码问题,但它是一个经常出现在 SO 上的问题,我发现阅读它非常有用。 App Store - Help answering “Missing Compliance” (using
我在我们的应用程序中使用 syncfusion 寻呼机和下拉列表请打开以下链接。 https://stackblitz.com/edit/angular-nv6myv?file=src%2Fapp%2
以便解释指针和引用in this question我写了这段代码。 MyClass& MyClass::MyInstance() { static MyClass & myLoca
在 C 和 C++ 中,assert 是一个非常 重量级例程,将错误写入 stdout 并终止程序。在我们的应用程序中,我们实现了一个更强大的 assert 替代品,并为其提供了自己的宏。已尽一切努力
我已经创建了一个 MVC webApi 项目,现在我想使用身份验证和授权。我想我已经实现了这种安全措施,但由于某种原因,有些事情变糟了,当我编写我的凭据并尝试调用一些 webApi 方法时,显示消息“
我发现自己使用一种奇怪的方式向我的函数添加回调函数,我想知道是否有更通用的方式向函数添加回调函数,最好的情况是我的所有函数都检查最后给定的作为函数的参数,如果是,则将其用作回调。 我以前是这样的: v
几乎从来没有我只想获取某个 Remote 的情况;我总是想要所有的 Remote 。我认为这将是一个足够常见的用例,git 会考虑它(与他们有 pull.rebase true 的方式相同)。 那么,
我正在尝试使用 inarray 但它总是返回 true?有任何想法吗? (所有 li 均已显示) $("#select-by-color-list li").hide(); // get the se
我正在尝试为我公司的开发环境设置过期网址。我们使用 lighttpd在此环境中提供上传的文件,我发现 these docs这似乎相当有希望。 问题是我似乎根本无法让它工作,而且我有点不知所措,试图找出
我无法让“文件夹”外部变量工作。我总是得到[:]。 我正在 Windows 下的 Grails 上进行开发(这就是为什么外部配置文件看起来像 file:C:\path\to/file)。 我在另一个项
这个问题是出于对 PL 如何工作的好奇,而不是其他任何事情。 (它实际上是在查看与 Haskell 不同的 SML 时想到的,因为前者使用按值调用 - 但我的问题是关于 Haskell。) Haske
我有一个高速缓存内存模块,我希望它是可字寻址的,但有字节的写使能信号。 always @ (posedge clk) begin //stuff... if(write) begin
我正在处理一些代码,其中一个对象“foo”正在创建另一个对象对象“bar”,并向其传递一个Callable。之后 foo 将返回bar,然后我希望 foo 变得无法访问(即:可用于垃圾收集)。 我最初
我已将我的程序与此方法相关联: public static void CreateFileAssociation(string extension, string key, string descri
所以我正在进行目录遍历,但我无法让 opendir 按照我想要的方式工作。它总是无法打开我发送的目录,它给出了一些未知的错误。我通常传入 argv[1],但我放弃了,只是开始硬编码路径。 char *
这个问题在这里已经有了答案: How do I compare strings in Java? (23 个回答) 关闭 9 年前。 出于某种原因,我的(基本)程序总是打印我为 else 语句保留的
我不想冒为此提出破解的风险,因为它涉及 datetime 对象。基本上,我想按如下方式进行转换: 2010-04-21 06:37:53 -> 2010-04-21 06:40:00 2010-08-
我正在用 C 语言玩文件 I/O。我正在尝试使用 fgets 从一个文件中读取数据并将其输出到另一个文件。问题是它总是返回 NULL,因此没有任何内容被复制到输出文件中。这是我的代码: #includ
class MyClass { // empty class with no base class }; int main() { MyClass* myClass = new MyC
我是一名优秀的程序员,十分优秀!