-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated Icons, implemented translucent status bar for KitKat.
- Loading branch information
1 parent
f422157
commit d9181a1
Showing
25 changed files
with
209 additions
and
139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
-1.01 KB
(32%)
Skrumaz/src/main/res/drawable-hdpi/ic_help.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-2.42 KB
(21%)
Skrumaz/src/main/res/drawable-hdpi/ic_refresh.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-733 Bytes
(52%)
Skrumaz/src/main/res/drawable-hdpi/ic_settings.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-941 Bytes
(18%)
Skrumaz/src/main/res/drawable-hdpi/ic_sort.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-923 Bytes
(30%)
Skrumaz/src/main/res/drawable-mdpi/ic_help.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-2.47 KB
(17%)
Skrumaz/src/main/res/drawable-mdpi/ic_refresh.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-789 Bytes
(41%)
Skrumaz/src/main/res/drawable-mdpi/ic_settings.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-887 Bytes
(19%)
Skrumaz/src/main/res/drawable-mdpi/ic_sort.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-1.13 KB
(35%)
Skrumaz/src/main/res/drawable-xhdpi/ic_help.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-2.27 KB
(28%)
Skrumaz/src/main/res/drawable-xhdpi/ic_refresh.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-517 Bytes
(68%)
Skrumaz/src/main/res/drawable-xhdpi/ic_settings.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-986 Bytes
(21%)
Skrumaz/src/main/res/drawable-xhdpi/ic_sort.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,55 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
|
||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:orientation="vertical" | ||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
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" | ||
android:background="@color/background_color"> | ||
android:background="@color/primary_color" | ||
style="@style/FrameLayoutTheme"> | ||
|
||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:orientation="vertical" | ||
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" | ||
android:background="@android:color/background_light"> | ||
|
||
<TextView | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:textAppearance="?android:attr/textAppearanceLarge" | ||
android:text="@string/app_name" | ||
android:id="@+id/app_name" | ||
android:layout_gravity="center" | ||
android:textSize="60dp" /> | ||
<TextView | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:textAppearance="?android:attr/textAppearanceLarge" | ||
android:text="@string/app_name" | ||
android:id="@+id/app_name" | ||
android:layout_gravity="center" | ||
android:textSize="60dp" /> | ||
|
||
<EditText | ||
android:layout_width="fill_parent" | ||
android:layout_height="wrap_content" | ||
android:ems="10" | ||
android:inputType="textEmailAddress" | ||
android:id="@+id/input_username" | ||
android:layout_gravity="center" | ||
android:layout_marginBottom="20dp" /> | ||
<EditText | ||
android:layout_width="fill_parent" | ||
android:layout_height="wrap_content" | ||
android:ems="10" | ||
android:inputType="textEmailAddress" | ||
android:id="@+id/input_username" | ||
android:layout_gravity="center" | ||
android:layout_marginBottom="20dp" /> | ||
|
||
<EditText | ||
android:layout_width="fill_parent" | ||
android:layout_height="wrap_content" | ||
android:ems="10" | ||
android:inputType="textPassword" | ||
android:id="@+id/input_password" | ||
android:layout_gravity="center" | ||
android:layout_marginBottom="20dp" | ||
android:imeOptions="actionDone" | ||
android:imeActionLabel="@string/button_login" /> | ||
<EditText | ||
android:layout_width="fill_parent" | ||
android:layout_height="wrap_content" | ||
android:ems="10" | ||
android:inputType="textPassword" | ||
android:id="@+id/input_password" | ||
android:layout_gravity="center" | ||
android:layout_marginBottom="20dp" | ||
android:imeOptions="actionDone" | ||
android:imeActionLabel="@string/button_login" /> | ||
|
||
<Button | ||
android:layout_width="fill_parent" | ||
android:layout_height="wrap_content" | ||
android:text="@string/button_login" | ||
android:textAllCaps="true" | ||
android:id="@+id/login_button" | ||
android:textStyle="bold" /> | ||
<Button | ||
android:layout_width="fill_parent" | ||
android:layout_height="wrap_content" | ||
android:text="@string/button_login" | ||
android:textAllCaps="true" | ||
android:id="@+id/login_button" | ||
android:textStyle="bold" /> | ||
|
||
</LinearLayout> | ||
</LinearLayout> | ||
</FrameLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,46 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<PreferenceScreen android:layout_width="fill_parent" android:layout_height="fill_parent" | ||
xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<PreferenceCategory android:title="@string/pref_configuration"> | ||
<Preference android:title="@string/pref_title_username" android:key="@string/pref_key_username" /> | ||
<ListPreference android:title="@string/pref_title_sort" android:summary="@string/pref_summary_sort" android:key="@string/pref_key_sort" android:entries="@array/pref_value_sort" android:entryValues="@array/pref_value_sort" android:defaultValue="Rank"/> | ||
<CheckBoxPreference android:title="@string/pref_title_ids" android:summary="@string/pref_summary_ids" android:key="@string/pref_key_ids" android:defaultValue="false" /> | ||
<CheckBoxPreference android:title="@string/pref_title_team" android:summary="@string/pref_summary_team" android:key="@string/pref_key_team" android:defaultValue="false" /> | ||
<Preference android:title="@string/pref_title_reset" android:summary="@string/pref_summary_reset" android:key="@string/pref_key_reset" /> | ||
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:layout_width="fill_parent" | ||
android:layout_height="fill_parent"> | ||
|
||
<PreferenceCategory android:title="@string/pref_configuration" | ||
android:background="@android:color/background_light"> | ||
|
||
<Preference | ||
android:title="@string/pref_title_username" | ||
android:key="@string/pref_key_username" /> | ||
|
||
<ListPreference | ||
android:title="@string/pref_title_sort" | ||
android:summary="@string/pref_summary_sort" | ||
android:key="@string/pref_key_sort" | ||
android:entries="@array/pref_value_sort" | ||
android:entryValues="@array/pref_value_sort" | ||
android:defaultValue="Rank" /> | ||
|
||
<CheckBoxPreference | ||
android:title="@string/pref_title_ids" | ||
android:summary="@string/pref_summary_ids" | ||
android:key="@string/pref_key_ids" | ||
android:defaultValue="false" /> | ||
|
||
<CheckBoxPreference | ||
android:title="@string/pref_title_team" | ||
android:summary="@string/pref_summary_team" | ||
android:key="@string/pref_key_team" | ||
android:defaultValue="false" /> | ||
|
||
<Preference | ||
android:title="@string/pref_title_reset" | ||
android:summary="@string/pref_summary_reset" | ||
android:key="@string/pref_key_reset" /> | ||
</PreferenceCategory> | ||
|
||
<PreferenceCategory android:title="@string/pref_about"> | ||
<Preference android:title="@string/pref_title_app_version" android:selectable="false" android:summary="@string/pref_summary_app_version" android:key="@string/pref_key_app_version" /> | ||
|
||
<Preference | ||
android:title="@string/pref_title_app_version" | ||
android:selectable="false" | ||
android:summary="@string/pref_summary_app_version" | ||
android:key="@string/pref_key_app_version" /> | ||
</PreferenceCategory> | ||
</PreferenceScreen> | ||
</PreferenceScreen> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<resources> | ||
|
||
<!-- All API v19 customizations can go here. --> | ||
<style name="AppBaseTheme" parent="android:Theme.Holo.Light.DarkActionBar"> | ||
<item name="android:windowTranslucentStatus">true</item> | ||
</style> | ||
|
||
<style name="PreferencesTheme" parent="AppTheme"> | ||
<item name="android:windowBackground">@color/primary_color</item> | ||
<item name="android:listViewStyle">@style/ListViewTheme</item> | ||
<item name="android:fitsSystemWindows">true</item> | ||
</style> | ||
|
||
<style name="HelpTheme" parent="AppTheme"> | ||
<item name="android:windowTranslucentStatus">false</item> | ||
</style> | ||
|
||
<style name="FrameLayoutTheme"> | ||
<item name="android:fitsSystemWindows">true</item> | ||
</style> | ||
|
||
</resources> |
Oops, something went wrong.