在我的应用程序中,我为活动创建了一个自定义主题。但那次我无法看到活动栏添加到活动中。如何在具有cutom主题的活动中添加操作栏。
请参阅清单中的代码。活动。
<activity
android:name=".Login"
android:label="@string/title_activity_main"
android:theme="@style/MyCustomTheme" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
主题
<style name="MyCustomTheme" parent="android:style/Theme">
<item name="android:windowBackground">@color/my_custom_color</item>
<item name="android:colorBackgroundCacheHint">#dddddd</item>
<!-- <item name="android:actionBarTabStyle">@style/MyActionBarTabStyle</item> -->
</style>
答案 0 :(得分:2)
使用Holo主题作为您的父母。
<style name="MyCustomTheme" parent="android:style/Theme.Holo">