Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/CjjBaseTheme">
android:theme="@style/ModuThreeHandsomeTheme">
<activity
android:name=".SplashActivity"
android:label="@string/app_name">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public class SplashActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
SplashActivity.this.setTheme(R.style.CjjBaseTheme_WhiteActivity);
SplashActivity.this.setTheme(R.style.ModuThreeHandsomeTheme_WhiteActivity);
super.onCreate(savedInstanceState);
startActivity(new Intent(this, DemoActivity.class));
SplashActivity.this.finish();
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values-v21/styles.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<resources>

<style name="CjjBaseTheme" parent="Base.Theme.DesignDemo">
<style name="ModuThreeHandsomeTheme" parent="Base.Theme.DesignDemo">
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
<item name="android:statusBarColor">@android:color/transparent</item>
</style>
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/values/styles.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<resources>

<style name="CjjBaseTheme" parent="Base.Theme.DesignDemo">
<style name="ModuThreeHandsomeTheme" parent="Base.Theme.DesignDemo">
</style>

<style name="Base.Theme.DesignDemo" parent="Theme.AppCompat.Light.DarkActionBar">
Expand All @@ -11,7 +11,7 @@
<item name="android:windowBackground">@color/window_background</item>
</style>

<style name="CjjBaseTheme.WhiteActivity">
<style name="ModuThreeHandsomeTheme.WhiteActivity">
<item name="android:windowBackground">@color/material_blue</item>
<item name="android:windowIsTranslucent">false</item>
</style>
Expand Down