Changed feedback icons in help screen.

This commit is contained in:
GaidamakUA 2016-04-13 17:40:18 +03:00
parent 007ac44fd8
commit f378b9967a

View file

@ -222,7 +222,7 @@ public class HelpActivity extends OsmandActionBarActivity {
convertView = LayoutInflater.from(parent.getContext()).inflate(
R.layout.help_to_improve_item, parent, false);
TextView feedbackButton = (TextView) convertView.findViewById(R.id.feedbackButton);
Drawable pollIcon = ctx.getIconsCache().getThemedIcon(R.drawable.ic_action_message);
Drawable pollIcon = ctx.getIconsCache().getThemedIcon(R.drawable.ic_action_big_poll);
feedbackButton.setCompoundDrawablesWithIntrinsicBounds(null, pollIcon, null, null);
feedbackButton.setOnClickListener(new View.OnClickListener() {
@Override
@ -233,7 +233,7 @@ public class HelpActivity extends OsmandActionBarActivity {
});
TextView contactUsButton = (TextView) convertView.findViewById(R.id.contactUsButton);
Drawable contactUsIcon =
ctx.getIconsCache().getThemedIcon(R.drawable.ic_action_message);
ctx.getIconsCache().getThemedIcon(R.drawable.ic_action_big_feedback);
contactUsButton.setCompoundDrawablesWithIntrinsicBounds(null, contactUsIcon, null,
null);
final String email = ctx.getString(R.string.support_email);