added base files
BIN
FastAdmin/app/src/main/res/drawable/ic_launcher_foreground.png
Normal file
|
After Width: | Height: | Size: 156 KiB |
14
FastAdmin/app/src/main/res/layout/activity_main.xml
Normal file
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<FrameLayout
|
||||
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"
|
||||
tools:context=".MainActivity">
|
||||
|
||||
<WebView
|
||||
android:id="@+id/webview"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent" />
|
||||
|
||||
</FrameLayout>
|
||||
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<background android:drawable="@color/ic_launcher_background"/>
|
||||
|
||||
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
|
||||
</adaptive-icon>
|
||||
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<background android:drawable="@color/ic_launcher_background"/>
|
||||
|
||||
<foreground android:drawable="@drawable/ic_launcher_foreground"/>
|
||||
</adaptive-icon>
|
||||
BIN
FastAdmin/app/src/main/res/mipmap-hdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 156 KiB |
BIN
FastAdmin/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
Normal file
|
After Width: | Height: | Size: 156 KiB |
BIN
FastAdmin/app/src/main/res/mipmap-mdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 156 KiB |
BIN
FastAdmin/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
Normal file
|
After Width: | Height: | Size: 156 KiB |
BIN
FastAdmin/app/src/main/res/mipmap-xhdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 156 KiB |
BIN
FastAdmin/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
Normal file
|
After Width: | Height: | Size: 156 KiB |
BIN
FastAdmin/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 156 KiB |
BIN
FastAdmin/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
Normal file
|
After Width: | Height: | Size: 156 KiB |
BIN
FastAdmin/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
|
After Width: | Height: | Size: 156 KiB |
BIN
FastAdmin/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
Normal file
|
After Width: | Height: | Size: 156 KiB |
15
FastAdmin/app/src/main/res/values/colors.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<color name="color_bg">#1A1B26</color>
|
||||
<color name="color_card">#24283B</color>
|
||||
<color name="color_primary_text">#C0CAF5</color>
|
||||
<color name="color_accent">#7AA2F7</color>
|
||||
<color name="color_error">#F7768E</color>
|
||||
<color name="color_border_dark">#3A3C4D</color>
|
||||
|
||||
<color name="colorPrimary">@color/color_card</color>
|
||||
<color name="colorPrimaryDark">@color/color_bg</color>
|
||||
<color name="colorAccent">@color/color_accent</color>
|
||||
|
||||
<color name="ic_launcher_background">#1A237E</color>
|
||||
</resources>
|
||||
4
FastAdmin/app/src/main/res/values/strings.xml
Normal file
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="app_name">FastAdmin</string>
|
||||
</resources>
|
||||
19
FastAdmin/app/src/main/res/values/themes.xml
Normal file
@@ -0,0 +1,19 @@
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<style name="Theme.FastAdmin" parent="Theme.AppCompat.NoActionBar">
|
||||
<item name="colorPrimary">@color/colorPrimary</item>
|
||||
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
|
||||
<item name="colorAccent">@color/colorAccent</item>
|
||||
<item name="android:windowBackground">@color/color_bg</item>
|
||||
<item name="android:colorBackground">@color/color_bg</item>
|
||||
|
||||
<item name="alertDialogTheme">@style/Theme.App.DarkDialog</item>
|
||||
</style>
|
||||
|
||||
<style name="Theme.App.DarkDialog" parent="Theme.AppCompat.Dialog.Alert">
|
||||
<item name="android:background">@color/color_bg</item>
|
||||
<item name="colorAccent">@color/color_accent</item>
|
||||
<item name="android:textColorPrimary">@color/color_primary_text</item>
|
||||
<item name="android:textColorAlertDialogListItem">@color/color_primary_text</item>
|
||||
<item name="android:windowBackground">@color/color_bg</item>
|
||||
</style>
|
||||
</resources>
|
||||