您好我正在使用eclipse,我刚刚开始创建一个新项目,并且我发现我添加的所有用户界面元素都没有样式(image)。我认为它与更新SDK(我不知道)有关,因为在此之前它工作得很好。我的问题是如何使其恢复正常。我不想创建自定义样式,我也不想要那些简单的样式,我想拥有正常的android风格。旧的风格,如(image)(不是谈论背景颜色。我正在谈论突出重点关注的东西等。)
清单
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.dailygoallist"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="21" />
<uses-permission android:name="android.permission.SET_TIME_ZONE" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:noHistory="true" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".MainMenu"
android:label="@string/title_activity_main_menu" >
</activity>
</application>
</manifest>
Styles.xml
<resources>
<!--
Base application theme, dependent on API level. This theme is replaced
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
-->
<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
<!--
Theme customizations available in newer API levels can go in
res/values-vXX/styles.xml, while customizations related to
backward-compatibility can go here.
-->
</style>
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
</style>
</resources>
答案 0 :(得分:0)
发现它的解决方案非常简单,只需更改
即可parent="Theme.AppCompat.Light.DarkActionBar"
在每个style.xml中parent="AppBaseTheme"
谢谢你的帮助(Y)