File tree Expand file tree Collapse file tree
Projects/Playground/Playground.Droid Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66using Android . App ;
77using Android . Runtime ;
88using MvvmCross . Droid . Support . V7 . AppCompat ;
9- using MvvmCross . Platforms . Android . Views ;
109using Playground . Core ;
1110
1211namespace Playground . Droid
Original file line number Diff line number Diff line change 114114 <SubType >Designer</SubType >
115115 </AndroidResource >
116116 <AndroidResource Include =" Resources\values\Strings.xml" />
117- <AndroidResource Include =" Resources\mipmap-hdpi\Icon .png" />
118- <AndroidResource Include =" Resources\mipmap-mdpi\Icon .png" />
119- <AndroidResource Include =" Resources\mipmap-xhdpi\Icon .png" />
120- <AndroidResource Include =" Resources\mipmap-xxhdpi\Icon .png" />
121- <AndroidResource Include =" Resources\mipmap-xxxhdpi\Icon .png" />
117+ <AndroidResource Include =" Resources\mipmap-hdpi\icon .png" />
118+ <AndroidResource Include =" Resources\mipmap-mdpi\icon .png" />
119+ <AndroidResource Include =" Resources\mipmap-xhdpi\icon .png" />
120+ <AndroidResource Include =" Resources\mipmap-xxhdpi\icon .png" />
121+ <AndroidResource Include =" Resources\mipmap-xxxhdpi\icon .png" />
122122 <AndroidResource Include =" Resources\layout\SplashScreen.axml" />
123123 <AndroidResource Include =" Resources\values\styles.xml" />
124124 <AndroidResource Include =" Resources\values-v21\styles.xml" />
Original file line number Diff line number Diff line change 22<LinearLayout xmlns : android =" http://schemas.android.com/apk/res/android"
33 android : orientation =" vertical"
44 android : layout_width =" match_parent"
5- android : layout_height =" match_parent" >
5+ android : layout_height =" match_parent"
6+ android : background =" @color/colorAccent" >
67 <TextView
78 android : layout_width =" match_parent"
89 android : layout_height =" match_parent"
Original file line number Diff line number Diff line change 44
55using Android . App ;
66using Android . Content . PM ;
7- using MvvmCross . Platforms . Android . Views ;
7+ using MvvmCross . Droid . Support . V7 . AppCompat ;
88
99namespace Playground . Droid
1010{
@@ -15,11 +15,16 @@ namespace Playground.Droid
1515 , Theme = "@style/AppTheme.Splash"
1616 , NoHistory = true
1717 , ScreenOrientation = ScreenOrientation . Portrait ) ]
18- public class SplashScreen : MvxSplashScreenActivity
18+ public class SplashScreen : MvxSplashScreenAppCompatActivity
1919 {
2020 public SplashScreen ( )
2121 : base ( Resource . Layout . SplashScreen )
2222 {
2323 }
24+
25+ protected override void OnResume ( )
26+ {
27+ base . OnResume ( ) ;
28+ }
2429 }
2530}
You can’t perform that action at this time.
0 commit comments