added placeholder images for "follow direction" icon.
BIN
android/res/drawable-hdpi/ic_location_follow.png
Normal file
After Width: | Height: | Size: 7 KiB |
BIN
android/res/drawable-hdpi/ic_location_follow_highlighted.png
Normal file
After Width: | Height: | Size: 7 KiB |
BIN
android/res/drawable-ldpi/ic_location_follow.png
Normal file
After Width: | Height: | Size: 7 KiB |
BIN
android/res/drawable-ldpi/ic_location_follow_highlighted.png
Normal file
After Width: | Height: | Size: 7 KiB |
BIN
android/res/drawable-mdpi/ic_location_follow.png
Normal file
After Width: | Height: | Size: 7 KiB |
BIN
android/res/drawable-mdpi/ic_location_follow_highlighted.png
Normal file
After Width: | Height: | Size: 7 KiB |
BIN
android/res/drawable-xhdpi/ic_location_follow.png
Normal file
After Width: | Height: | Size: 7 KiB |
BIN
android/res/drawable-xhdpi/ic_location_follow_highlighted.png
Normal file
After Width: | Height: | Size: 7 KiB |
8
android/res/drawable/myposition_button_follow.xml
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
<item android:state_pressed="true"
|
||||
android:drawable="@drawable/ic_location_highlighted" />
|
||||
<item android:state_selected="true"
|
||||
android:drawable="@drawable/ic_location_follow" />
|
||||
<item android:drawable="@drawable/ic_location" />
|
||||
</selector>
|