is it possible to add edittext box in setting of android live wall paper ? and if yes then how to set it in the setting and retrieve it's value ?
Asked
Active
Viewed 236 times
0
-
1it's not possible put `EditText` in `WallpaperService ` – ρяσѕρєя K Apr 19 '12 at 11:30
-
Why you want to put EditText in there? If you need some input field, you must create a widget. – lv0gun9 Apr 19 '12 at 11:51
-
actually i am creating a lwp in which user can enter his/her name, for which i wanted to put edittext – Ravi Bhojani Apr 19 '12 at 13:29
1 Answers
0
finally i got the ans. it simple
<EditTextPreference
android:title="@string/settings_name"
android:summary="@string/settings_name_summary"
android:key="fn_name">
</EditTextPreference>
This will give edit text box in setting of lwp :)

Ravi Bhojani
- 1,032
- 1
- 13
- 24