разработка мобильной темы для Android - PullRequest
1 голос
/ 03 марта 2011

Я хочу разработать тему для Android Mobile здесь код, который я нашел где-то на сайте, но он не работает.

Мой код для XML в /res/values/styles.xml.

<resources>
  <!-- Base application theme is the default theme. -->
  <style name="Theme" parent="android:Theme">
  </style>

  <!-- Variation on our application theme that has a translucent
 background. -->
  <style name="Theme.Translucent">
    <item name="android:windowBackground">@drawable/translucent_background</item>
    <item name="android:windowNoTitle">true</item>
    <item name="android:colorForeground">#fff</item>
  </style>

  <!-- Variation on our application theme that has a transparent
  background; this example completely removes the background,
   allowing the activity to decide how to composite. -->

<style name="Theme.Transparent">
    <item name="android:windowBackground">@drawable/transparent_background</item>
    <item name="android:windowNoTitle">true</item>
    <item name="android:colorForeground">#fff</item>
  </style>
  <style name="TextAppearance.Theme.PlainText" parent="android:TextAppearance.Theme">
    <item name="android:textStyle">normal</item>
  </style>

</resources>

WidgetActivity:

public class WidgetActivity extends Activity {

    @Override protected void onCreate(Bundle bundle) {
      super.onCreate(bundle);

      Log.i(Global.TAG2, "sub-Activity WidgetActivity being creation: start");

      setTheme(R.style.Theme_Translucent);

      setContentView(Panel2Builder.createWidgetPanel(this));

      Log.i(Global.TAG2, "sub-Activity WidgetActivity being creation: end");

    }

}//end class WidgetActivity

это не работает, как я ожидал.может у кого-нибудь есть идея поработать над темой для android и сделать это путем разработки.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...