- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试更改从 android 2 传递到 android 4 的源代码。代码不会出现错误并且应用程序启动。但一开始是有登录的。当我点击“登录”时,应用程序崩溃了。 logcat 显示 SimpleExpandableListAdapter
有问题。这是使用 SimpleExpandableListAdapter 的代码部分:
expListAdapter = new SimpleExpandableListAdapter(_ContactScreen_object,
_groupSections, // groupData describes the first-level entries
R.layout.group_row, // Layout for the first-level entries
new String[] { "sectionName" }, // Key in the groupData maps to
// display
new int[] { R.id.groupname }, // Data under "friendName" key
// goes into this TextView
_result, // childData describes second-level entries
R.layout.child_row, // Layout for second-level entries
new String[] { "friendName", "status" }, // Keys in childData
// maps to display
new int[] { R.id.childname, R.id.rgb } // Data under the keys
// above go into these
// TextViews
)
日志猫:
您认为问题是代码太旧了吗? SimpleExpandableListAdapter
的结构现在不一样了吗?我要改变什么?
最佳答案
Context
参数_ContactScreen_object
为null
。这是 SimpleExpandableListAdapter.java
的第 210 行:
mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
需要更多代码上下文(原文如此)才能提供进一步的帮助。
关于java - Android 应用程序中的 SimpleExpandableListAdapter 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18569025/
我正在尝试在 android 中实现 ExpandableListView。但我没有找到任何好的教程。 我必须在父 View 上绘制一个复选框和一个 TextView 。在 subview 上,第一项
我正在尝试使用 SimpleExpandableListAdapter 创建一个 ExpandableListView(我知道我可以自己扩展一个新的适配器,但我想试试 simpleExapndable
我试图在 Android 平台上制作一个可扩展列表,但我发现我不理解构造函数中的参数。 我咨询过documentation构造函数如下所示: SimpleExpandableListAdapter(C
我是安卓新手。任何人都可以解释一下 SimpleExpandableListAdapter 中的参数吗?我可以告诉“this”意味着这个上下文,“groupData”和“childData”显然是声明
我正在使用 ExpandableListFragment 在 TabHost fragment 中创建一个 ExpandableList 我从这里得到了 ExpandableListFragment
我正在尝试使用 SimpleExpandableListAdapter,无论组是否展开,我都需要不同的布局。 有一个构造函数允许为组传递两个布局: SimpleExpandableListAdapte
我尝试更改从 android 2 传递到 android 4 的源代码。代码不会出现错误并且应用程序启动。但一开始是有登录的。当我点击“登录”时,应用程序崩溃了。 logcat 显示 SimpleEx
我正在努力通过 NotfiyDataSetChanged 更新我的 ExpandableListView。 我正在从网络服务器下载一些数据,这些数据在我的 ExpandableListView 中正确
我正在使用 ListFragment 并想制作一个困难的列表,其中包含子列表并且不知道我该怎么做((一些代码: public class CarsOfBrandFragment extends Lis
我正在尝试为我的移动计算类(class)创建一个简单的 RSS 提要阅读器应用程序。我创建了一个类来管理和保存 RSS 数据。 @SuppressWarnings("unchecked") S
我是一名优秀的程序员,十分优秀!