drawable changes part 2

This commit is contained in:
Philipp Schaefer
2013-12-03 22:12:25 +01:00
parent c1434db0dc
commit aff4a9f9f9
70 changed files with 10 additions and 10 deletions

View File

@ -63,22 +63,22 @@ public class IITC_NavigationHelper extends ActionBarDrawerToggle implements OnIt
int icon = 0;
switch (item) {
case MAP:
icon = R.drawable.location_map;
icon = R.drawable.ic_action_map;
break;
case INFO:
icon = R.drawable.ic_action_about;
break;
case FULL:
icon = R.drawable.collections_view_as_list;
icon = R.drawable.ic_action_view_as_list;
break;
case COMPACT:
icon = R.drawable.collections_view_as_list_compact;
icon = R.drawable.ic_action_view_as_list_compact;
break;
case PUBLIC:
icon = R.drawable.social_group;
icon = R.drawable.ic_action_group;
break;
case FACTION:
icon = R.drawable.social_cc_bcc;
icon = R.drawable.ic_action_cc_bcc;
break;
case DEBUG:
icon = R.drawable.ic_debug;

View File

@ -81,7 +81,7 @@ public class ShareActivity extends FragmentActivity implements ActionBar.TabList
String geoUri = "geo:" + mLl;
Intent geoIntent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse(geoUri));
intents.add(geoIntent);
addTab(intents, R.string.tab_map, R.drawable.location_map);
addTab(intents, R.string.tab_map, R.drawable.ic_action_map);
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(getUrl()));
addTab(intent, R.string.tab_browser, R.drawable.ic_action_web_site);
@ -93,7 +93,7 @@ public class ShareActivity extends FragmentActivity implements ActionBar.TabList
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_TEXT, str);
intent.putExtra(Intent.EXTRA_SUBJECT, mTitle);
addTab(intent, R.string.tab_share, R.drawable.share);
addTab(intent, R.string.tab_share, R.drawable.ic_action_share);
}
@Override