drawable changes part1
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 2.5 KiB |
BIN
mobile/res/drawable-hdpi/ic_action_about.png
Normal file
After Width: | Height: | Size: 646 B |
BIN
mobile/res/drawable-hdpi/ic_action_full_screen.png
Normal file
After Width: | Height: | Size: 587 B |
BIN
mobile/res/drawable-hdpi/ic_action_search.png
Normal file
After Width: | Height: | Size: 639 B |
BIN
mobile/res/drawable-hdpi/ic_action_settings.png
Normal file
After Width: | Height: | Size: 892 B |
BIN
mobile/res/drawable-hdpi/ic_action_warning.png
Normal file
After Width: | Height: | Size: 515 B |
BIN
mobile/res/drawable-hdpi/ic_action_web_site.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.8 KiB |
BIN
mobile/res/drawable-mdpi/ic_action_about.png
Normal file
After Width: | Height: | Size: 434 B |
BIN
mobile/res/drawable-mdpi/ic_action_full_screen.png
Normal file
After Width: | Height: | Size: 461 B |
BIN
mobile/res/drawable-mdpi/ic_action_search.png
Normal file
After Width: | Height: | Size: 449 B |
BIN
mobile/res/drawable-mdpi/ic_action_settings.png
Normal file
After Width: | Height: | Size: 601 B |
BIN
mobile/res/drawable-mdpi/ic_action_warning.png
Normal file
After Width: | Height: | Size: 410 B |
BIN
mobile/res/drawable-mdpi/ic_action_web_site.png
Normal file
After Width: | Height: | Size: 733 B |
Before Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 3.2 KiB |
BIN
mobile/res/drawable-xhdpi/ic_action_about.png
Normal file
After Width: | Height: | Size: 787 B |
BIN
mobile/res/drawable-xhdpi/ic_action_full_screen.png
Normal file
After Width: | Height: | Size: 774 B |
BIN
mobile/res/drawable-xhdpi/ic_action_search.png
Normal file
After Width: | Height: | Size: 827 B |
BIN
mobile/res/drawable-xhdpi/ic_action_settings.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
mobile/res/drawable-xhdpi/ic_action_warning.png
Normal file
After Width: | Height: | Size: 682 B |
BIN
mobile/res/drawable-xhdpi/ic_action_web_site.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
mobile/res/drawable-xxhdpi/ic_action_about.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
mobile/res/drawable-xxhdpi/ic_action_full_screen.png
Normal file
After Width: | Height: | Size: 1009 B |
BIN
mobile/res/drawable-xxhdpi/ic_action_search.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
mobile/res/drawable-xxhdpi/ic_action_settings.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
mobile/res/drawable-xxhdpi/ic_action_warning.png
Normal file
After Width: | Height: | Size: 888 B |
BIN
mobile/res/drawable-xxhdpi/ic_action_web_site.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
@ -1,7 +1,7 @@
|
||||
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
<item android:id="@+id/menu_search"
|
||||
android:title="@string/menu_search"
|
||||
android:icon="@drawable/action_search"
|
||||
android:icon="@drawable/ic_action_search"
|
||||
android:orderInCategory="10"
|
||||
android:showAsAction="ifRoom|collapseActionView"
|
||||
android:actionViewClass="android.widget.SearchView" />
|
||||
@ -28,7 +28,7 @@
|
||||
</item>
|
||||
<item
|
||||
android:id="@+id/toggle_fullscreen"
|
||||
android:icon="@drawable/av_full_screen"
|
||||
android:icon="@drawable/ic_action_full_screen"
|
||||
android:orderInCategory="120"
|
||||
android:showAsAction="ifRoom"
|
||||
android:title="@string/toggle_fullscreen">
|
||||
@ -41,7 +41,7 @@
|
||||
</item>
|
||||
<item
|
||||
android:id="@+id/action_settings"
|
||||
android:icon="@drawable/action_settings"
|
||||
android:icon="@drawable/ic_action_settings"
|
||||
android:orderInCategory="200"
|
||||
android:showAsAction="never"
|
||||
android:title="@string/action_settings">
|
||||
|
@ -66,7 +66,7 @@ public class IITC_NavigationHelper extends ActionBarDrawerToggle implements OnIt
|
||||
icon = R.drawable.location_map;
|
||||
break;
|
||||
case INFO:
|
||||
icon = R.drawable.action_about;
|
||||
icon = R.drawable.ic_action_about;
|
||||
break;
|
||||
case FULL:
|
||||
icon = R.drawable.collections_view_as_list;
|
||||
|
@ -84,7 +84,7 @@ public class ShareActivity extends FragmentActivity implements ActionBar.TabList
|
||||
addTab(intents, R.string.tab_map, R.drawable.location_map);
|
||||
|
||||
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(getUrl()));
|
||||
addTab(intent, R.string.tab_browser, R.drawable.browser);
|
||||
addTab(intent, R.string.tab_browser, R.drawable.ic_action_web_site);
|
||||
}
|
||||
|
||||
private void setupShareIntent(String str) {
|
||||
|