Minor usability tweaks from white theme

pull/14/head
Tim Su 15 years ago
parent a5dd979ce9
commit 1caa2938f7

@ -206,7 +206,6 @@ public class EditPeopleControlSet implements TaskEditControlSet {
continue;
userIds.add(id);
System.err.println("inflated person: " + person);
View contact = activity.getLayoutInflater().inflate(R.layout.contact_adapter_row, collaborators, false);
AsyncImageView icon = (AsyncImageView) contact.findViewById(R.id.icon);
TextView name = (TextView) contact.findViewById(android.R.id.text1);
@ -214,7 +213,7 @@ public class EditPeopleControlSet implements TaskEditControlSet {
icon.setUrl(person.optString("picture"));
name.setText(person.optString("name"));
name.setTextAppearance(activity, android.R.style.TextAppearance_Medium);
name.setTextAppearance(activity, R.style.TextAppearance_Medium);
tag.setText(activity.getString(R.string.actfm_EPA_list, person.optString("tag")));
tag.setTextAppearance(activity, android.R.style.TextAppearance);

@ -49,7 +49,7 @@ public final class TagsControlSet implements TaskEditControlSet {
private final Activity activity;
public TagsControlSet(Activity activity, int tagsContainer) {
allTags = tagService.getGroupedTags(TagService.GROUPED_TAGS_BY_SIZE, Criterion.all);
allTags = tagService.getGroupedTags(TagService.GROUPED_TAGS_BY_ALPHA, Criterion.all);
this.activity = activity;
this.tagsContainer = (LinearLayout) activity.findViewById(tagsContainer);
this.tagSpinner = (Spinner) activity.findViewById(R.id.tags_dropdown);

@ -759,7 +759,7 @@ public class TaskAdapter extends CursorAdapter implements Filterable {
viewHolder.decorations = null;
}
if(viewHolder.task.getId() == mostRecentlyMade)
viewHolder.view.setBackgroundColor(Color.argb(20, 255, 255, 255));
viewHolder.view.setBackgroundColor(Color.argb(30, 150, 150, 150));
else
viewHolder.view.setBackgroundResource(android.R.drawable.list_selector_background);
}

Loading…
Cancel
Save