I am developing app with minSdkVersion="11", that is app for tablets and Android 4.0 and newer. I have scrutinized internet on this topic, but have not found much.

To implement custom layout for previous versions of Android SDK we just have to create layout (say preference.xml) with ListView and its id equals to android.R.id.list and use setContentView method.

preference.xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" > 
    <ListView android:id="@android:id/list"
              android:layout_width="fill_parent"
              android:layout_height="fill_parent" /> 
</RelativeLayout>

In Android 3.0 things have changed and Preferences are implemented with use of fragments. That is how my preference_headers.xml file looks like:

<preference-headers
        xmlns:android="http://schemas.android.com/apk/res/android">

    <header android:fragment="com.example.MyPreferenceActivity$GeneralSettingsFragment" 
            android:title="General"
            android:summary="Common settings." />
    <header  
            android:title="Example.com" >
        <intent android:action="android.intent.action.VIEW"
                android:data="http://www.example.com" />
    </header> 

</preference-headers>

MyPreferenceActivity.java:

public class MyPreferenceActivity extends PreferenceActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        setContentView(R.layout.preference);
        // Add a button to the header list.
        if (hasHeaders()) {
            Button button = new Button(this); 
            button.setText("Log out");
            setListFooter(button);

        }

    }


    /**
     * Populate the activity with the top-level headers.
     */
    @Override
    public void onBuildHeaders(List<Header> target) {
        loadHeadersFromResource(R.xml.preference_headers, target);
    }

    public static class GeneralSettingsFragment extends PreferenceFragment {
        @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);

            // Load the preferences from an XML resource
            addPreferencesFromResource(R.xml.fragmented_preferences);

        }
    }
}

Now if I run MyPreferenceActivity I will see this error in LogCat:

> java.lang.IllegalArgumentException: No view found for id 0x10202be for
> fragment GeneralSettingsFragment{4077f8c0 #0 id=0x10202be}
> E/AndroidRuntime(17103): at
> android.app.FragmentManagerImpl.moveToState(FragmentManager.java:729)
> E/AndroidRuntime(17103): at
> android.app.FragmentManagerImpl.moveToState(FragmentManager.java:926)
> E/AndroidRuntime(17103): at
> android.app.FragmentManagerImpl.moveToState(FragmentManager.java:909)
> E/AndroidRuntime(17103): at
> android.app.FragmentManagerImpl.dispatchStart(FragmentManager.java:1584)
> E/AndroidRuntime(17103): at
> android.app.Activity.performStart(Activity.java:4377)
> E/AndroidRuntime(17103): at
> android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1724)
> E/AndroidRuntime(17103):  ... 11 more

I know what causes this problem. FragmentManager just cannot find a view to insert fragment GeneralSettingsFragment in. But I don't know how to solve it.

By the way, if I run the same app on Android 4.0, then I can see the first Preference Activity with headers. But if I click on General, app will crash and I will receive similar error in LogCat:

java.lang.IllegalArgumentException: No view found for id 0x10202cd for fragment GeneralSettingsFragment{4134b4e0 #0 id=0x10202cd}
E/AndroidRuntime(2170):     at android.app.FragmentManagerImpl.moveToState(FragmentManager.java:789)
E/AndroidRuntime(2170):     at android.app.FragmentManagerImpl.moveToState(FragmentManager.java:998)
E/AndroidRuntime(2170):     at android.app.BackStackRecord.run(BackStackRecord.java:622)
E/AndroidRuntime(2170):     at android.app.FragmentManagerImpl.execPendingActions(FragmentManager.java:1330)
E/AndroidRuntime(2170):     at android.app.Activity.performStart(Activity.java:4474)
E/AndroidRuntime(2170):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1928)
link|improve this question
What are you trying to do? Why do you need a custom layout? – alexanderblom Oct 21 '11 at 15:55
I want to have more precise control over preference Activity. Besides, I want it to be compatible with newer versions of Android SDK as much as possible, that is I need to extend PreferenceActivity, but not implementing it myself from scratch. – morphium Oct 24 '11 at 2:25
feedback

5 Answers

i tried this code for my application

<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
    <PreferenceCategory android:title="@string/PreferencesActivity.GeneralSettingsCategoryTitle">
        <Preference
            android:title="yor title"
            android:summary="your summary"
            android:key="key to access preference" />       
        <Preference
            android:title="@string/"
            android:summary="@string/"
            android:key="key2" />
        <PreferenceScreen
            android:key="key3"
            android:title="@string/"
            android:summary="@string/">
            <CheckBoxPreference
                android:title="@string/"
                android:defaultValue="false"
                android:summary="@string/"
                android:key="key4" />
            <CheckBoxPreference
                android:title="@string/"
                android:defaultValue="true"
                android:summary="@string/"
                android:key="key5" />

            <ListPreference
                android:title="@string/"
                android:summary="@string/"
                android:key="key6"
                android:defaultValue="buttons"
                android:entries="@array/"
                android:entryValues="@array/" />
            ....


                </prefefenceScreen>
      </preferenceCategory>
</preferenceScreen>



enter code here
link|improve this answer
feedback

I had the same issue than you.

I tried a lot of stuff but here is my full code:

https://github.com/iRail/BeTrains-for-Android/blob/master/src/tof/cv/mpp/MyPreferenceActivity.java

The trick is to add the setContentView in the onBuildHeaders section, but NOT in the onCreate.

I also made some tests in fragment and not perfectly sure why this is working, but I promise you: I have a custom layout on tablet header section!

https://github.com/iRail/BeTrains-for-Android/blob/master/src/tof/cv/mpp/view/StockPreferenceFragment.java

link|improve this answer
feedback

You may be missing a required id in that layout that PreferenceActivity in Honeycomb+ uses internally. When you provide your own from pre-HC, it fails because it can't find the view to place the fragment inside.

The list trick is used in pre honeycomb apps. This could, I guess, explain the fact that you're getting different behaviors between different SDK versions, because internal XML files and layouts are known to change behavior and elements on some new versions.

Take a look at your SDK 4.0, inside platforms/android-14/data/res/layout, mainly preference.xml. The layout in the activity is different and does not use a ListView directly (at least not directly, not that I know).

I know there is a @+android:id/widget_frame id in there, with the comment "Preference should place its actual preference widget here." So maybe your code is trying to put the fragment in there, but it can't find the element in your own custom XML. I think that's why it's failing.

There is also a preference_list_content_single.xml with a List. But I'm honest in telling you that I don't know how it works exactly (I'm not able to find the sources for 4.x, but I've taken a peek using jd-gui).

I don't know. Maybe that gives you a light. I'd suggest trying different layouts.

link|improve this answer
Even then, if you find one that works in all used SDKs, I suggest that in any case you copy and paste the layouts into your app, like you're doing, for obvious compatibility reasons (running on different SDKs). – David Nov 10 '11 at 2:34
Yeah, all sources for 3.0+ are not open sourced now, and probably would not be. Thanks, I will try to add @+android:id/widget_frame in my layout again. But I remember I desperately did it before. It didn't work. I will try again. – morphium Nov 10 '11 at 3:04
Did you take a look at the layout in that folder? It's a LinearLayout (and not a ListView) if I recall correctly. Good luck! I hope it works, as I'm interested in this... I'm thinking about providing a proper HC version of my app, and that will help me, too, since I also use custom preferences activities all the time. If it fails with a diff error, remember that it may be another layout missing... in that case, perhaps if you dig the rabbit hole enough you could solve all the "id dependencies" (if I can even call it that). 4.x sources will be open soon... 3.x, never. – David Nov 10 '11 at 3:15
I just tried it. Still same error, no changes. Tried some others, and also no success. – morphium Nov 10 '11 at 7:56
Hello, I am facing the same issue. Any idea? – Profete162 Jan 23 at 7:55
feedback

you do not need to setContenView. in this example case the layout population is done via headers and associated fragments, another words automatically.

link|improve this answer
I know I don't necessary need it. But in this example I added Button to the List footer. Now I want to customize the view more precisely. Maybe by adding logo in the top of the Activity, etc. That is, I need it. I just don't understand, there are a lot of examples and tutorials about customization of PreferenceActivity for pre-Android 3.0 apps. Is it impossible to make it work for API SDK greater than 10? – morphium Oct 24 '11 at 2:22
feedback

Perhaps you can create two different layouts using sdk version classifiers, e.g.:

layout-v11/your_honeycomb_layout.xml

layout-v14/your_android_4_layout.xml

That way, you might be able to circumvent the problem.

link|improve this answer
no no no, minSdkVersion="11" assumes that app would not be able to work in pre-honeycomb devices. – morphium Nov 10 '11 at 1:03
Than use different targets!! The point is, that you can specify xml layouts for specific versions. I've modified the answer to show what i mean – Entreco Nov 12 '11 at 16:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.