Hi,
   I have created an app with three theme red, white and black
background and setting this theme in oncreate() activity

public void onCreate(Bundle savedInstanceState) {

                            switch (LaunchTheme.value) {

            case X:
            {
                setTheme(R.style.WhiteBackground);
                break;
            }
            case Y:
            {
                setTheme(R.style.BlackBackground);
                break;
            }
            case Z:
            {
                setTheme(R.style.RedBackground);
                break;
            }
    }


but my activity has list view after setting the theme my listview
focus will not work..any help how to do this?

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to