我有一个问题,我的Theme.Holo无法应用于我的初始活动,并且仍旧旧主题的旧样式。当我在我的设备上运行应用程序时,主题已经应用(没有问题)但是我的xml设计仍然和以前一样。有任何想法吗?这是xml的代码:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".InitialActivity"
android:id="@+id/initialActivity">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/first_button"
android:id="@+id/firstButton"
android:width="160dp"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="223dp" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/second_button"
android:id="@+id/secondButton"
android:width="160dp"
android:layout_alignStart="@+id/thirdButton"
android:layout_above="@+id/firstButton"
android:layout_centerHorizontal="true" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/third_button"
android:id="@+id/thirdButton"
android:width="160dp"
android:layout_above="@+id/secondButton"
android:layout_centerHorizontal="true" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/tabata_button"
android:id="@+id/tabataButton"
android:width="160dp"
android:layout_marginTop="52dp"
android:layout_alignTop="@+id/firstButton"
android:layout_alignLeft="@+id/firstButton"
android:layout_alignStart="@+id/firstButton" />
我的值'styles.xml
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="android:Theme.Holo">
<!-- Customize your theme here. -->
</style>
和AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<uses-permission android:name="android.permission.VIBRATE" />
<supports-screens android:resizeable="true"
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:anyDensity="true"/>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".InitialActivity"
android:label="@string/app_name"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".FightActivity"
android:label="@string/title_activity_fight"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="com.example.stambeto09.muaythai_timer.FightActivity" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".TabataActivity"
android:label="@string/title_activity_tabata"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="com.example.stambeto09.muaythai_timer.TabataActivity" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
P.S其他两项活动在xml的设备和设计上完美呈现。