문제

My problem is the appearance of both seek bar and spinner inside Activity. I tested in Android 4.1.2. This is what I want to appear like : Pic 1

pic 2

But when I tested it I'm getting like this:

pic 3

pic 4

When I created both seekbar and spinner in menu, they appeared as I want (As pic 1 and pic 2). But when I created them in activity layout I got them as last pictures. (pic 3 and pic 4) What should I do to change the appearance as I want ?

도움이 되었습니까?

해결책

The theme you are using probably doesn't inherit from a Holo theme. In your res/values/themes.xml you should have something like:

...
  <style name="MyTheme" parent="android:Theme.Holo.Light.DarkActionBar">
    ...
  </style>
...
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top