我对Android开发有点新手,这是我第一次尝试在首选项屏幕中提供已安装应用程序的列表。此列表中的选定值稍后将用于启动用户选择的应用程序。
我创建了以下类:
public class AppSelectorPreference extends ListPreference {
public AppSelectorPreference(Context context, AttributeSet attrs) {
super(context,attrs);
PackageManager pm = context.getPackageManager();
List<PackageInfo> appListInfo = pm.getInstalledPackages(0);
CharSequence[] entries = new CharSequence[appListInfo.size()];
CharSequence[] entryValues = new CharSequence[appListInfo.size()];
try {
int i = 0;
for (PackageInfo p : appListInfo) {
if (p.applicationInfo.uid > 10000) {
entries[i] = p.applicationInfo.loadLabel(pm).toString();
entryValues[i] = p.applicationInfo.packageName.toString();
Log.d(BT,"Label: " + entries[i]);
Log.d(BT,"PName: " + entryValues[i]);
i++;
}
}
} catch (Exception e) {
Log.e(BT,"ER> Put descriptive error message here");
e.printStackTrace();
}
setEntries(entries);
setEntryValues(entryValues);
}
}
使用以下XML将其添加到我的PreferenceScreen:
<PreferenceCategory android:title="Launch Application">
<CheckBoxPreference
android:title="Launch Application"
android:summary="Launch an application"
android:defaultValue="false"
android:key="pref_connect_launch_enable"
android:dependency="pref_connect_enable"/>
<com.nirsoftware.AppSelectorPreference
android:title="Select Application"
android:summary="Select application to launch"
android:key="pref_connect_package_name"
android:dependency="pref_connect_launch_enable"/>
</PreferenceCategory>
看起来一切正常,直到点击AppSelectorPreference,它会在android.preference.ListPreference.findIndexOfValue(ListPreference.java:169)中抛出一个NPE。有什么建议?
答案 0 :(得分:0)
我已经尝试过你的代码了,它对我来说很好,都以编程方式添加prefence:
AppSelectorPreference pref2 = new AppSelectorPreference(this, null);
getPreferenceScreen().addPreference(pref2);
并使用像你写的xml。哪一条是出现错误的第169行?
另外,您是否通过logcat查看是否有任何应用程序名称或标签给出类似null的内容?我唯一能想到的是你的Android有不同的应用程序。
编辑:对不起,我再次测试,现在我得到了和你一样的错误。除了选择一个值
之外,我不确定我的做法有何不同但是,我通过覆盖findIndexOfValue方法修复了它。我这样做是为了测试:
@Override
public int findIndexOfValue(String value) {
return 0;
//return super.findIndexOfValue(value);
}
但当然你需要实现findind该值的索引。对于非常大的条目数组,可能是一个android bug吗?
答案 1 :(得分:0)
我建议你删除if条件,因为它是什么原因导致空指针错误,因为条件将为false无法执行命令null条目值
try {
int i = 0;
for (PackageInfo p : appListInfo) {
entries[i] = p.applicationInfo.loadLabel(pm).toString();
entryValues[i] = p.applicationInfo.packageName.toString();
Log.d(BT,"Label: " + entries[i]);
Log.d(BT,"PName: " + entryValues[i]);
i++;
}
} catch (Exception e) {
Log.e(BT,"ER> Put descriptive error message here");
e.printStackTrace();
}