-
-
Notifications
You must be signed in to change notification settings - Fork 356
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
blink navigation icon when GPS signal lost (#3944)
- Loading branch information
1 parent
f6b61c3
commit b6c8de3
Showing
3 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
app/src/main/res/drawable/ic_location_navigation_no_location_24dp.xml
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,11 @@ | ||
<vector | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="24dp" | ||
android:height="24dp" | ||
android:viewportWidth="24.0" | ||
android:viewportHeight="24.0" | ||
android:tint="?attr/colorControlNormal"> | ||
<path | ||
android:fillColor="@android:color/white" | ||
android:pathData="M12,2L4.5,20.29l0.71,0.71L12,18l6.79,3 0.71,-0.71z M12,6.5L17,18.5L12,16L7,18.5z" /> | ||
</vector> |
7 changes: 7 additions & 0 deletions
7
app/src/main/res/drawable/ic_location_navigation_searching_24dp.xml
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,7 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<animation-list android:id="@+id/selected" | ||
android:oneshot="false" | ||
xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item android:drawable="@drawable/ic_location_navigation_no_location_24dp" android:duration="750" /> | ||
<item android:drawable="@drawable/ic_location_navigation_24dp" android:duration="750" /> | ||
</animation-list> |
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