:ここにClassNotFoundException android.preference.ListView
Process: com.fedorparetsky.parcare, PID: 25574
android.view.InflateException: Binary XML file line #31: Error inflating class ListView
....
Caused by: java.lang.ClassNotFoundException: Didn't find class "android.preference.ListView" on path: DexPathList[[zip file "/data/app/com.fedorparetsky.parcare-1/base.apk"],nativeLibraryDirectories=[/data/app/com.fedorparetsky.parcare-1/lib/arm, /vendor/lib, /system/lib]]
があるpreferences.xmlと呼ばれる、PreferencesFragmentのためのXMLです:
ここ<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory
android:title="General">
</PreferenceCategory>
<PreferenceCategory
android:title="Account">
<Preference android:title="Change Email"
android:key="@string/changeEmailButton"
android:summary="Change Email Summary"/>
<Preference android:title="Change Password"
android:key="@string/changePasswordButton"
android:summary="Change Password Summary"/>
</PreferenceCategory>
<PreferenceCategory
android:title="About">
<Preference
android:title="Our Website">
<intent android:action="android.intent.action.VIEW"
android:data="http://parcare.me" />
</Preference>
</PreferenceCategory>
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="5dp" />
</PreferenceScreen>
はSettingsFragment.java、断片のコードである:
import android.os.Bundle;
import android.preference.PreferenceFragment;
import com.fedorparetsky.parcare.R;
public class SettingsFragment extends PreferenceFragment {
@Override
public void onCreate(final Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
addPreferencesFromResource(R.xml.preferences);
}
そして、ここでは、私がフラグメントをinfalteときに私は呼んで:
fm.beginTransaction().replace(R.id.content_frame, new SettingsFragment()).commit();
私はこのエラーを乗り越えることができるように変更する必要がありますか?
この記事を説明してください:http://stackoverflow.com/questions/ 22112966/with-id-attribute-android-r-id-list-is-a-listview-cのようなcontent-has-view-with-id属性があります。 – fedorp1
XMLにListViewを挿入する前に、私はそれを取得していました... – fedorp1
リンクごとに、それは好みではなくフラグメントでした。チョークとチーズ。 – t0mm13b