mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 23:25:45 +03:00
themeing
This commit is contained in:
parent
a77bf9ddff
commit
0f2d2ac7a9
13 changed files with 565 additions and 447 deletions
|
@ -74,11 +74,7 @@
|
||||||
<AndroidResource Include="Resources\values\colors.xml" />
|
<AndroidResource Include="Resources\values\colors.xml" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Folder Include="Resources\drawable-hdpi\" />
|
<AndroidResource Include="Resources\drawable\splash_screen.xml" />
|
||||||
<Folder Include="Resources\drawable-xhdpi\" />
|
|
||||||
<Folder Include="Resources\drawable-xxhdpi\" />
|
|
||||||
<Folder Include="Resources\drawable-xxxhdpi\" />
|
|
||||||
<Folder Include="Resources\drawable\" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\App\App.csproj">
|
<ProjectReference Include="..\App\App.csproj">
|
||||||
|
@ -155,5 +151,29 @@
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<AndroidResource Include="Resources\mipmap-xxhdpi\ic_launcher_round.png" />
|
<AndroidResource Include="Resources\mipmap-xxhdpi\ic_launcher_round.png" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<AndroidResource Include="Resources\layout\autofill_listitem.xml" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<AndroidResource Include="Resources\drawable\login.png" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<AndroidResource Include="Resources\drawable-hdpi\login.png" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<AndroidResource Include="Resources\drawable-xhdpi\login.png" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<AndroidResource Include="Resources\drawable-xxhdpi\login.png" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<AndroidResource Include="Resources\drawable-xxxhdpi\login.png" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<AndroidResource Include="Resources\drawable\logo.png" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<AndroidResource Include="Resources\values-v21\styles.xml" />
|
||||||
|
</ItemGroup>
|
||||||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
|
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
|
||||||
</Project>
|
</Project>
|
884
src/Android/Resources/Resource.designer.cs
generated
884
src/Android/Resources/Resource.designer.cs
generated
File diff suppressed because it is too large
Load diff
BIN
src/Android/Resources/drawable-hdpi/login.png
Normal file
BIN
src/Android/Resources/drawable-hdpi/login.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 904 B |
BIN
src/Android/Resources/drawable-xhdpi/login.png
Normal file
BIN
src/Android/Resources/drawable-xhdpi/login.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 KiB |
BIN
src/Android/Resources/drawable-xxhdpi/login.png
Normal file
BIN
src/Android/Resources/drawable-xxhdpi/login.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.6 KiB |
BIN
src/Android/Resources/drawable-xxxhdpi/login.png
Normal file
BIN
src/Android/Resources/drawable-xxxhdpi/login.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.9 KiB |
BIN
src/Android/Resources/drawable/login.png
Normal file
BIN
src/Android/Resources/drawable/login.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 657 B |
BIN
src/Android/Resources/drawable/logo.png
Normal file
BIN
src/Android/Resources/drawable/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.5 KiB |
9
src/Android/Resources/drawable/splash_screen.xml
Normal file
9
src/Android/Resources/drawable/splash_screen.xml
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<item>
|
||||||
|
<color android:color="@color/lightgray"/>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<bitmap android:src="@drawable/logo" android:tileMode="disabled" android:gravity="center"/>
|
||||||
|
</item>
|
||||||
|
</layer-list>
|
40
src/Android/Resources/layout/autofill_listitem.xml
Normal file
40
src/Android/Resources/layout/autofill_listitem.xml
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:paddingBottom="5dp"
|
||||||
|
android:paddingTop="5dp"
|
||||||
|
android:paddingLeft="10dp"
|
||||||
|
android:paddingRight="10dp"
|
||||||
|
android:background="@color/lightgray"
|
||||||
|
android:orientation="horizontal">
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/icon"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
android:layout_marginEnd="10dp"
|
||||||
|
android:maxWidth="20dp"
|
||||||
|
android:maxHeight="20dp"
|
||||||
|
android:adjustViewBounds="true"
|
||||||
|
android:src="@drawable/login" />
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="vertical">
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/text1"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:gravity="center_vertical"
|
||||||
|
android:textColor="@color/black"
|
||||||
|
android:text="Name" />
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/text2"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:gravity="center_vertical"
|
||||||
|
android:textColor="@color/gray"
|
||||||
|
android:text="Username" />
|
||||||
|
</LinearLayout>
|
||||||
|
</LinearLayout>
|
5
src/Android/Resources/values-v21/styles.xml
Normal file
5
src/Android/Resources/values-v21/styles.xml
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<resources>
|
||||||
|
<style name="MainTheme" parent="MainTheme.Base">
|
||||||
|
</style>
|
||||||
|
</resources>
|
|
@ -1,7 +1,15 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<resources>
|
<resources>
|
||||||
<color name="launcher_background">#FFFFFF</color>
|
<color name="launcher_background">#FFFFFF</color>
|
||||||
<color name="colorPrimary">#3c8dbc</color>
|
<color name="colorPrimary">#3c8dbc</color>
|
||||||
<color name="colorPrimaryDark">#222d32</color>
|
<color name="colorPrimaryDark">#222d32</color>
|
||||||
<color name="colorAccent">#3883af</color>
|
<color name="colorAccent">#3883af</color>
|
||||||
|
<color name="white">#FFFFFF</color>
|
||||||
|
<color name="black">#000000</color>
|
||||||
|
<color name="darkgray">#333333</color>
|
||||||
|
<color name="gray">#738182</color>
|
||||||
|
<color name="lightgray">#efeff4</color>
|
||||||
|
<color name="primary">#3c8dbc</color>
|
||||||
|
<color name="darkaccent">#222d32</color>
|
||||||
|
<color name="accent">#3883af</color>
|
||||||
</resources>
|
</resources>
|
||||||
|
|
|
@ -1,26 +1,20 @@
|
||||||
<?xml version="1.0" encoding="utf-8" ?>
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
<resources>
|
<resources>
|
||||||
|
<style name="MainTheme.Splash" parent="MainTheme.Base">
|
||||||
|
<item name="android:windowBackground">@drawable/splash_screen</item>
|
||||||
|
<item name="android:windowNoTitle">true</item>
|
||||||
|
</style>
|
||||||
|
|
||||||
<style name="MainTheme" parent="MainTheme.Base">
|
<style name="MainTheme" parent="MainTheme.Base">
|
||||||
</style>
|
</style>
|
||||||
<!-- Base theme applied no matter what API -->
|
|
||||||
<style name="MainTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar">
|
|
||||||
<!--If you are using revision 22.1 please use just windowNoTitle. Without android:-->
|
|
||||||
<item name="windowNoTitle">true</item>
|
|
||||||
<!--We will be using the toolbar so no need to show ActionBar-->
|
|
||||||
<item name="windowActionBar">false</item>
|
|
||||||
<!-- Set theme colors from http://www.google.com/design/spec/style/color.html#color-color-palette -->
|
|
||||||
<!-- colorPrimary is used for the default action bar background -->
|
|
||||||
<item name="colorPrimary">#2196F3</item>
|
|
||||||
<!-- colorPrimaryDark is used for the status bar -->
|
|
||||||
<item name="colorPrimaryDark">#1976D2</item>
|
|
||||||
<!-- colorAccent is used as the default value for colorControlActivated
|
|
||||||
which is used to tint widgets -->
|
|
||||||
<item name="colorAccent">#FF4081</item>
|
|
||||||
<!-- You can also set colorControlNormal, colorControlActivated
|
|
||||||
colorControlHighlight and colorSwitchThumbNormal. -->
|
|
||||||
<item name="windowActionModeOverlay">true</item>
|
|
||||||
|
|
||||||
|
<style name="MainTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar">
|
||||||
|
<item name="windowNoTitle">true</item>
|
||||||
|
<item name="windowActionBar">false</item>
|
||||||
|
<item name="colorPrimary">@color/primary</item>
|
||||||
|
<item name="colorPrimaryDark">@color/accent</item>
|
||||||
|
<item name="colorAccent">@color/primary</item>
|
||||||
|
<item name="windowActionModeOverlay">true</item>
|
||||||
<item name="android:datePickerDialogTheme">@style/AppCompatDialogStyle</item>
|
<item name="android:datePickerDialogTheme">@style/AppCompatDialogStyle</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue