Compare commits
2 Commits
test
...
debug_bogs
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3661285f64 | ||
|
|
9766025231 |
@@ -1,9 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" path="src"/>
|
||||
<classpathentry kind="src" path="gen"/>
|
||||
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
|
||||
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
|
||||
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
|
||||
<classpathentry kind="output" path="bin/classes"/>
|
||||
</classpath>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" path="src"/>
|
||||
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
|
||||
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
|
||||
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
|
||||
<classpathentry kind="src" path="gen"/>
|
||||
<classpathentry kind="output" path="bin/classes"/>
|
||||
</classpath>
|
||||
|
||||
4
AndorsTrail/.svnignore
Normal file
@@ -0,0 +1,4 @@
|
||||
gen
|
||||
bin
|
||||
.metadata
|
||||
.git
|
||||
@@ -18,7 +18,7 @@
|
||||
<exclude-output />
|
||||
<content url="file://$MODULE_DIR$">
|
||||
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/gen" isTestSource="false" generated="true" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/gen" isTestSource="false" />
|
||||
</content>
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
|
||||
@@ -1,66 +1,65 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<manifest
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.gpl.rpg.AndorsTrail"
|
||||
android:versionCode="54"
|
||||
android:versionName="0.7.11"
|
||||
android:installLocation="auto"
|
||||
>
|
||||
<uses-sdk
|
||||
android:minSdkVersion="4"
|
||||
android:targetSdkVersion="28"
|
||||
/>
|
||||
|
||||
<supports-screens
|
||||
android:smallScreens="true"
|
||||
android:normalScreens="true"
|
||||
android:largeScreens="true"
|
||||
android:xlargeScreens="true"
|
||||
android:anyDensity="true"
|
||||
/>
|
||||
|
||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
||||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
||||
|
||||
|
||||
<application
|
||||
android:name=".AndorsTrailApplication"
|
||||
android:label="@string/app_name"
|
||||
android:icon="@drawable/icon"
|
||||
android:description="@string/app_description"
|
||||
android:allowBackup="true"
|
||||
android:theme="@style/AndorsTrailTheme_Blue"
|
||||
>
|
||||
<activity
|
||||
android:name=".activity.StartScreenActivity"
|
||||
android:clearTaskOnLaunch="true"
|
||||
>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity
|
||||
android:name=".activity.MainActivity"
|
||||
android:label="@string/app_name"
|
||||
android:theme="@style/AndorsTrailTheme_Blue.NoBackground"
|
||||
/>
|
||||
<activity android:name=".activity.HeroinfoActivity" />
|
||||
<activity android:name=".activity.MonsterInfoActivity" android:theme="@style/AndorsTrailDialogTheme_Blue" />
|
||||
<activity android:name=".activity.ItemInfoActivity" android:theme="@style/AndorsTrailDialogTheme_Blue" />
|
||||
<activity android:name=".activity.LevelUpActivity" android:theme="@style/AndorsTrailDialogTheme_Blue" />
|
||||
<activity android:name=".activity.MonsterEncounterActivity" android:theme="@style/AndorsTrailDialogTheme_Blue" />
|
||||
<activity android:name=".activity.ConversationActivity" android:theme="@style/AndorsTrailDialogTheme_Blue" />
|
||||
<activity android:name=".activity.ShopActivity" />
|
||||
<activity android:name=".activity.AboutActivity" />
|
||||
<activity android:name=".activity.LoadingActivity" />
|
||||
<activity android:name=".activity.Preferences" />
|
||||
<activity android:name=".activity.LoadSaveActivity" android:theme="@style/AndorsTrailDialogTheme_Blue" />
|
||||
<activity android:name=".activity.ActorConditionInfoActivity" android:theme="@style/AndorsTrailDialogTheme_Blue" />
|
||||
<activity android:name=".activity.BulkSelectionInterface" android:theme="@style/AndorsTrailDialogTheme_Blue" />
|
||||
<activity android:name=".activity.SkillInfoActivity" android:theme="@style/AndorsTrailDialogTheme_Blue" />
|
||||
<activity android:name=".activity.DisplayWorldMapActivity" />
|
||||
</application>
|
||||
|
||||
</manifest>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<manifest
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.gpl.rpg.AndorsTrail"
|
||||
android:versionCode="40"
|
||||
android:versionName="0.7.1dev"
|
||||
android:installLocation="auto"
|
||||
>
|
||||
<uses-sdk
|
||||
android:minSdkVersion="4"
|
||||
android:targetSdkVersion="17"
|
||||
/>
|
||||
|
||||
<supports-screens
|
||||
android:smallScreens="true"
|
||||
android:normalScreens="true"
|
||||
android:largeScreens="true"
|
||||
android:xlargeScreens="true"
|
||||
android:anyDensity="true"
|
||||
/>
|
||||
|
||||
<uses-permission
|
||||
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
||||
/>
|
||||
|
||||
<application
|
||||
android:name=".AndorsTrailApplication"
|
||||
android:label="@string/app_name"
|
||||
android:icon="@drawable/icon"
|
||||
android:description="@string/app_description"
|
||||
android:allowBackup="true"
|
||||
>
|
||||
<activity
|
||||
android:name=".activity.StartScreenActivity"
|
||||
android:clearTaskOnLaunch="true"
|
||||
>
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity
|
||||
android:name=".activity.MainActivity"
|
||||
android:label="@string/app_name"
|
||||
android:theme="@style/Theme.NoBackground"
|
||||
/>
|
||||
<activity android:name=".activity.HeroinfoActivity" />
|
||||
<activity android:name=".activity.MonsterInfoActivity" android:theme="@android:style/Theme.Dialog" />
|
||||
<activity android:name=".activity.ItemInfoActivity" android:theme="@android:style/Theme.Dialog" />
|
||||
<activity android:name=".activity.LevelUpActivity" android:theme="@android:style/Theme.Dialog" />
|
||||
<activity android:name=".activity.MonsterEncounterActivity" android:theme="@android:style/Theme.Dialog" />
|
||||
<activity android:name=".activity.ConversationActivity" android:theme="@android:style/Theme.Dialog" />
|
||||
<activity android:name=".activity.ShopActivity" />
|
||||
<activity android:name=".activity.AboutActivity" />
|
||||
<activity android:name=".activity.LoadingActivity" />
|
||||
<activity android:name=".activity.Preferences" />
|
||||
<activity android:name=".activity.LoadSaveActivity" android:theme="@android:style/Theme.Dialog" />
|
||||
<activity android:name=".activity.ActorConditionInfoActivity" android:theme="@android:style/Theme.Dialog" />
|
||||
<activity android:name=".activity.BulkSelectionInterface" android:theme="@android:style/Theme.Dialog" />
|
||||
<activity android:name=".activity.SkillInfoActivity" android:theme="@android:style/Theme.Dialog" />
|
||||
<activity android:name=".activity.DisplayWorldMapActivity" />
|
||||
</application>
|
||||
|
||||
</manifest>
|
||||
|
||||
21247
AndorsTrail/assets/translation/pt-rBR.po
Normal file
@@ -1,10 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
for i in *.po
|
||||
do
|
||||
echo "$i"
|
||||
msgmerge --no-fuzzy-matching "${i}" english.pot \
|
||||
| msgattrib --translated \
|
||||
| msguniq --no-wrap --sort-by-file >"${i}.tmp1"
|
||||
mv "${i}.tmp1" "$i"
|
||||
done
|
||||
@@ -1 +0,0 @@
|
||||
andor@andorstrail.com
|
||||
@@ -1 +0,0 @@
|
||||
http://andorstrail.com
|
||||
@@ -1 +0,0 @@
|
||||
en-US
|
||||
@@ -1,86 +0,0 @@
|
||||
Explore the world of Dhayavar looking for your brother Andor in this quest-driven fantasy RPG inspired by old-school classics like Ultima, Rogue and Legend of Zelda.
|
||||
|
||||
Battle monsters in turn-based combat, become stronger through level ups and skills, choose from a wide range of equipment, interact with numerous NPCs, visit shops, inns and taverns, search for treasure, and solve quests to follow the trail of your brother and uncover the secrets of the powers at play in Dhayavar. With luck, you may even find a legendary item!
|
||||
|
||||
You can currently visit up to 497 maps and complete up to 63 quests.
|
||||
|
||||
The game is completely free. There is no payment to install, no ads, no in-app purchases, and no DLCs. There is no internet access required, and it can run on all versions of Android from 1.6 (Eclair), so it should run on any device, even low-end oldies.
|
||||
|
||||
Andor's Trail is open-source software, released under the GPL v2 license.
|
||||
You can get the sources from https://github.com/Zukero/andors-trail
|
||||
|
||||
Game translation is crowd-sourced on https://hosted.weblate.org/translate/andors-trail
|
||||
|
||||
Andor's Trail is a work in progress, and while there is a lot of content to play, the game isn't completed. You can participate in the development or give ideas on our forums too!
|
||||
|
||||
If you wish to participate, we have released a content editor called ATCS, downloadable for free from www.andorstrail.com that makes it possible for anyone to create new material and expand the game, with no coding required! If you like the game, you can join others that have already created some of the content in the current release. You can see your own ideas come to life in a game that hundreds of thousands of people have played!
|
||||
*This requires a PC (Windows or Linux) or a Mac. See the forums for details regarding content creation.
|
||||
|
||||
Visit our forums on www.andorstrail.com for help, hints, tips and general discussion. We love our community's feedback!
|
||||
|
||||
Changelog:
|
||||
|
||||
v0.7.9
|
||||
For a better overview you can now reduce the view to 75% or 50%
|
||||
A certain person has found another, rather unfrequented tavern
|
||||
Fixed the Arulir crashes
|
||||
Fixed Ukrainian language crash and change language crash on older phones
|
||||
Updated translations
|
||||
|
||||
v0.7.8
|
||||
A few new quests and several new maps.
|
||||
|
||||
For new characters you can choose one of the new hardcore modes: No Saves, Limited Lives, or Permadeath.
|
||||
|
||||
Up to now, languages have been limited to English or your local language, as determined by your device settings. Now you can choose between different languages that are translated to a significant extent.
|
||||
|
||||
v0.7.7
|
||||
Content:
|
||||
Fixed typos
|
||||
|
||||
Translations:
|
||||
Fixed issues with translations integration in 0.7.6
|
||||
Fixed crashes for Greek players
|
||||
|
||||
v0.7.6
|
||||
Content
|
||||
Three quests with well known thieves.
|
||||
Five new maps.
|
||||
|
||||
Translations:
|
||||
100% Italian, Polish, Russian, Spanish
|
||||
99% German
|
||||
87% Portuguese
|
||||
84% Portuguese Brazil
|
||||
65% Basque
|
||||
64% French
|
||||
48% Hungarian
|
||||
20% Czech
|
||||
20% Turkish
|
||||
|
||||
v0.7.5
|
||||
Content
|
||||
- Fix for crash in guynmart after special exit
|
||||
- Fix for loading pl, ar, and pt_BR content translations
|
||||
Code
|
||||
- Workaround for failure to save on first start
|
||||
- Workaround for weird NPE in Taunt messages
|
||||
|
||||
v0.7.4
|
||||
Translations
|
||||
- Russian & Belarusian 100%
|
||||
- German and Italian >99%
|
||||
- Polish, Portuguese and Brazilian Portuguese >70%
|
||||
- Basque and French >50%
|
||||
Code
|
||||
- Fixed causes of most occuring "Force Close" a.k.a. crashes.
|
||||
- Fixed worldmap bug on towwn names for non-latin scripts (like Cyrillic)
|
||||
- Fixed reporting of skills' effects on combat (Cleave, Fracture...).
|
||||
- Fixed disappearing red X on worldmap in Remgard.
|
||||
- Fixed movement animation sometimes missing after map change
|
||||
Content
|
||||
- Fixed minor visual issues on many maps.
|
||||
- Fixed a few quest bugs and typos
|
||||
- Fixed issue with Feygard bridge guard on some old saves.
|
||||
- Three new places to visit.
|
||||
- Avoid monster stunning by "Robe of the Sublimate"
|
||||
|
Before Width: | Height: | Size: 154 KiB |
|
Before Width: | Height: | Size: 164 KiB |
|
Before Width: | Height: | Size: 435 KiB |
|
Before Width: | Height: | Size: 210 KiB |
|
Before Width: | Height: | Size: 141 KiB |
|
Before Width: | Height: | Size: 334 KiB |
|
Before Width: | Height: | Size: 430 KiB |
|
Before Width: | Height: | Size: 403 KiB |
|
Before Width: | Height: | Size: 542 KiB |
|
Before Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 270 KiB |
|
Before Width: | Height: | Size: 502 KiB |
|
Before Width: | Height: | Size: 1.1 MiB |
|
Before Width: | Height: | Size: 337 KiB |
|
Before Width: | Height: | Size: 424 KiB |
|
Before Width: | Height: | Size: 1.1 MiB |
|
Before Width: | Height: | Size: 650 KiB |
@@ -1 +0,0 @@
|
||||
Explore a wide world in this open source, quest-driven offline role-playing game
|
||||
@@ -1 +0,0 @@
|
||||
Andor's Trail - Free RPG
|
||||
@@ -1,15 +0,0 @@
|
||||
Weapon Rebalancing
|
||||
Rebalancing of level 1 to 5 rewards
|
||||
A new skill, "The way of the monk" and some equipment
|
||||
Sorting of quest logs by time
|
||||
Fixes for monster difficulty
|
||||
Better explanation for permissions
|
||||
Conversation will not close when you click outside of dialogues
|
||||
Fix toast crashes (e.g. after fights)
|
||||
Fix listener crashes
|
||||
Fix Mapchange crashes
|
||||
Fix minor bugs and typos
|
||||
Translations actualized
|
||||
|
||||
Finally a warning:
|
||||
For any PERMADEATH characters it would be a good idea to save before updating.
|
||||
@@ -1,100 +0,0 @@
|
||||
Explore the world of Dhayavar looking for your brother Andor in this quest-driven fantasy RPG inspired by old-school classics like Ultima, Rogue and Legend of Zelda.
|
||||
|
||||
Battle monsters in turn-based combat, become stronger through level ups and skills, choose from a wide range of equipment, interact with numerous NPCs, visit shops, inns and taverns, search for treasure, and solve quests to follow the trail of your brother and uncover the secrets of the powers at play in Dhayavar. With luck, you may even find a legendary item!
|
||||
|
||||
You can currently visit up to 551 maps and complete up to 75 quests.
|
||||
|
||||
The game is completely free. There is no payment to install, no ads, no in-app purchases, and no DLCs. There is no internet access required, and it can run on all versions of Android from 1.6 (Eclair), so it should run on any device, even low-end oldies.
|
||||
|
||||
Andor's Trail is open-source software, released under the GPL v2 license.
|
||||
You can get the sources from https://github.com/AndorsTrailRelease/andors-trail
|
||||
|
||||
Game translation is crowd-sourced on https://hosted.weblate.org/translate/andors-trail
|
||||
|
||||
Andor's Trail is a work in progress, and while there is a lot of content to play, the game isn't completed. You can participate in the development or give ideas on our forums too!
|
||||
|
||||
If you wish to participate, we have released a content editor called ATCS, downloadable for free from www.andorstrail.com that makes it possible for anyone to create new material and expand the game, with no coding required! If you like the game, you can join others that have already created some of the content in the current release. You can see your own ideas come to life in a game that hundreds of thousands of people have played!
|
||||
*This requires a PC (Windows or Linux) or a Mac. See the forums for details regarding content creation.
|
||||
|
||||
Visit our forums on www.andorstrail.com for help, hints, tips and general discussion. We love our community's feedback!
|
||||
|
||||
Changelog:
|
||||
|
||||
v0.7.10
|
||||
Weapon Rebalancing
|
||||
Rebalancing of level 1 to 5 rewards
|
||||
A new skill, "The way of the monk" and some equipment
|
||||
Sorting of quest logs by time
|
||||
Fixes for monster difficulty
|
||||
Better explanation for permissions
|
||||
Conversation will not close when you click outside of dialogues
|
||||
Fix toast crashes (e.g. after fights)
|
||||
Fix listener crashes
|
||||
Fix Mapchange crashes
|
||||
Fix minor bugs and typos
|
||||
Translations actualized
|
||||
|
||||
v0.7.9
|
||||
For a better overview you can now reduce the view to 75% or 50%
|
||||
A certain person has found another, rather unfrequented tavern
|
||||
Fixed the Arulir crashes
|
||||
Fixed Ukrainian language crash and change language crash on older phones
|
||||
Updated translations
|
||||
|
||||
v0.7.8
|
||||
A few new quests and several new maps.
|
||||
|
||||
For new characters you can choose one of the new hardcore modes: No Saves, Limited Lives, or Permadeath.
|
||||
|
||||
Up to now, languages have been limited to English or your local language, as determined by your device settings. Now you can choose between different languages that are translated to a significant extent.
|
||||
|
||||
v0.7.7
|
||||
Content:
|
||||
Fixed typos
|
||||
|
||||
Translations:
|
||||
Fixed issues with translations integration in 0.7.6
|
||||
Fixed crashes for Greek players
|
||||
|
||||
v0.7.6
|
||||
Content
|
||||
Three quests with well known thieves.
|
||||
Five new maps.
|
||||
|
||||
Translations:
|
||||
100% Italian, Polish, Russian, Spanish
|
||||
99% German
|
||||
87% Portuguese
|
||||
84% Portuguese Brazil
|
||||
65% Basque
|
||||
64% French
|
||||
48% Hungarian
|
||||
20% Czech
|
||||
20% Turkish
|
||||
|
||||
v0.7.5
|
||||
Content
|
||||
- Fix for crash in guynmart after special exit
|
||||
- Fix for loading pl, ar, and pt_BR content translations
|
||||
Code
|
||||
- Workaround for failure to save on first start
|
||||
- Workaround for weird NPE in Taunt messages
|
||||
|
||||
v0.7.4
|
||||
Translations
|
||||
- Russian & Belarusian 100%
|
||||
- German and Italian >99%
|
||||
- Polish, Portuguese and Brazilian Portuguese >70%
|
||||
- Basque and French >50%
|
||||
Code
|
||||
- Fixed causes of most occuring "Force Close" a.k.a. crashes.
|
||||
- Fixed worldmap bug on towwn names for non-latin scripts (like Cyrillic)
|
||||
- Fixed reporting of skills' effects on combat (Cleave, Fracture...).
|
||||
- Fixed disappearing red X on worldmap in Remgard.
|
||||
- Fixed movement animation sometimes missing after map change
|
||||
Content
|
||||
- Fixed minor visual issues on many maps.
|
||||
- Fixed a few quest bugs and typos
|
||||
- Fixed issue with Feygard bridge guard on some old saves.
|
||||
- Three new places to visit.
|
||||
- Avoid monster stunning by "Robe of the Sublimate"
|
||||
|
Before Width: | Height: | Size: 154 KiB |
|
Before Width: | Height: | Size: 164 KiB |
|
Before Width: | Height: | Size: 435 KiB |
|
Before Width: | Height: | Size: 210 KiB |
|
Before Width: | Height: | Size: 141 KiB |
|
Before Width: | Height: | Size: 334 KiB |
|
Before Width: | Height: | Size: 430 KiB |
|
Before Width: | Height: | Size: 403 KiB |
|
Before Width: | Height: | Size: 542 KiB |
|
Before Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 270 KiB |
|
Before Width: | Height: | Size: 502 KiB |
|
Before Width: | Height: | Size: 1.1 MiB |
|
Before Width: | Height: | Size: 337 KiB |
|
Before Width: | Height: | Size: 424 KiB |
|
Before Width: | Height: | Size: 1.1 MiB |
|
Before Width: | Height: | Size: 650 KiB |
@@ -1 +0,0 @@
|
||||
Explore the world of Dhayavar looking for your brother Andor in this quest-driven fantasy RPG
|
||||
@@ -1 +0,0 @@
|
||||
Andor's Trail
|
||||
@@ -1,11 +0,0 @@
|
||||
A new city located east of Loneford
|
||||
Seven new quests
|
||||
37 new maps
|
||||
One new extraordinary item by rare drop
|
||||
Remember Bonemeal is illegal - And now there are consequences for its possession
|
||||
Various bug fixes - Burhczyd fix
|
||||
Translations actualized
|
||||
|
||||
Finally a warning:
|
||||
For any PERMADEATH characters it would be a good idea to save before updating.
|
||||
|
||||
@@ -8,4 +8,4 @@
|
||||
# project structure.
|
||||
|
||||
# Project target.
|
||||
target=android-28
|
||||
target=android-17
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<translate
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/accelerate_interpolator"
|
||||
android:fromYDelta="0%"
|
||||
android:toYDelta="-100%"
|
||||
android:duration="300"
|
||||
/>
|
||||
@@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<translate
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/accelerate_interpolator"
|
||||
android:fromXDelta="0%"
|
||||
android:toXDelta="100%"
|
||||
android:duration="300"
|
||||
/>
|
||||
@@ -1,9 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<translate
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/decelerate_interpolator"
|
||||
android:fromYDelta="-100%"
|
||||
android:toYDelta="0%"
|
||||
android:duration="300"
|
||||
/>
|
||||
|
||||
@@ -1,9 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<translate
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:interpolator="@android:anim/decelerate_interpolator"
|
||||
android:fromXDelta="100%"
|
||||
android:toXDelta="0%"
|
||||
android:duration="300"
|
||||
/>
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<item android:state_enabled="true" android:state_pressed="true" android:color="@color/ui_blue_palette_text_gray_light"/>
|
||||
<item android:state_enabled="true" android:state_checked="true" android:color="@color/ui_blue_palette_text_gray_light"/>
|
||||
<item android:state_enabled="true" android:color="@color/ui_blue_palette_text_gray_mid"/>
|
||||
<item android:state_enabled="false" android:color="@color/ui_blue_palette_text_gray_darker"/>
|
||||
<item android:color="@color/ui_blue_palette_text_gray_mid"/>
|
||||
</selector>
|
||||
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 1.2 KiB |