Skip to content Skip to sidebar Skip to footer

Problem With Titles In Preferencescreen (android)

me again, working on some android live-wallpaper, again, I have a small weird problem. I create a first level of for my settings, everything is OKAY. But at some point, I needed s

Solution 1:

Since preferences is just a special type of Activity, you have to add it in the Android manifest and add a title (label) there:

<activity
        android:name="Preferences"
        android:label="Gray or Color">
</activity>

Post a Comment for "Problem With Titles In Preferencescreen (android)"