-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
show menu item as icons in application action bar (only if there is r…
…oom)
- Loading branch information
1 parent
eb4cd47
commit e342a40
Showing
14 changed files
with
45 additions
and
28 deletions.
There are no files selected for viewing
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.
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.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,27 @@ | ||
<menu xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:app="http://schemas.android.com/apk/res-auto" | ||
xmlns:tools="http://schemas.android.com/tools" tools:context=".MainActivity"> | ||
<item android:id="@+id/action_fetch_markers" android:title="@string/fetch_markers" | ||
android:orderInCategory="1" app:showAsAction="ifRoom"/> | ||
<item android:id="@+id/action_back_to_start_location" android:title="@string/back_to_start_location" | ||
android:orderInCategory="2" app:showAsAction="ifRoom"/> | ||
<item android:id="@+id/action_settings" android:title="@string/action_settings" | ||
android:orderInCategory="100" app:showAsAction="never" /> | ||
</menu> | ||
<menu xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:app="http://schemas.android.com/apk/res-auto" | ||
xmlns:tools="http://schemas.android.com/tools" tools:context=".MainActivity"> | ||
<item | ||
android:id="@+id/action_fetch_markers" | ||
android:title="@string/fetch_markers" | ||
android:orderInCategory="1" | ||
android:icon="@drawable/ic_action_refresh" | ||
app:showAsAction="ifRoom" | ||
/> | ||
|
||
<item | ||
android:id="@+id/action_back_to_start_location" | ||
android:title="@string/back_to_start_location" | ||
android:orderInCategory="2" | ||
android:icon="@drawable/ic_action_location_found" | ||
app:showAsAction="ifRoom" | ||
/> | ||
|
||
<item | ||
android:id="@+id/action_settings" | ||
android:title="@string/action_settings" | ||
android:orderInCategory="100" | ||
android:icon="@drawable/ic_action_settings" | ||
app:showAsAction="ifRoom" | ||
/> | ||
</menu> |
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,18 +1,18 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
|
||
<string name="app_name" translatable="false">ANYWAY</string> | ||
<string name="zoom_in_to_display">רחוק מדי, מתקרב....</string> | ||
|
||
<!-- Settings --> | ||
<string name="action_settings">הגדרות</string> | ||
|
||
<!-- Main map activity --> | ||
<string name="back_to_start_location">מרכז</string> | ||
<string name="fetch_markers">תאונות</string> | ||
|
||
<!-- popup layout --> | ||
<string name="icon">Accident logo</string> | ||
<string name="hello_blank_fragment">Hello blank fragment</string> | ||
|
||
</resources> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
|
||
<string name="app_name" translatable="false">ANYWAY</string> | ||
<string name="zoom_in_to_display">רחוק מדי, מתקרב....</string> | ||
|
||
<!-- Settings --> | ||
<string name="action_settings">הגדרות</string> | ||
|
||
<!-- Main map activity --> | ||
<string name="back_to_start_location">עבור למיקום הנוכחי</string> | ||
<string name="fetch_markers">רענן תאונות</string> | ||
|
||
<!-- popup layout --> | ||
<string name="icon">Accident logo</string> | ||
<string name="hello_blank_fragment">Hello blank fragment</string> | ||
|
||
</resources> |