cleaned up a couple of lines
This commit is contained in:
parent
a80435a03b
commit
a421c490e4
@ -220,20 +220,12 @@ public class NavListAdapter extends BaseAdapter
|
|||||||
if (position == itemAccess.getSelectedItemIndex()) {
|
if (position == itemAccess.getSelectedItemIndex()) {
|
||||||
txtvTitle.setTypeface(null, Typeface.BOLD);
|
txtvTitle.setTypeface(null, Typeface.BOLD);
|
||||||
v.getContext().getTheme().resolveAttribute(de.danoeh.antennapod.core.R.attr.drawer_activated_color, typedValue, true);
|
v.getContext().getTheme().resolveAttribute(de.danoeh.antennapod.core.R.attr.drawer_activated_color, typedValue, true);
|
||||||
int[] attribute = new int[] { de.danoeh.antennapod.core.R.attr.drawer_activated_color };
|
v.setBackgroundResource(typedValue.resourceId);
|
||||||
TypedArray array = v.getContext().obtainStyledAttributes(typedValue.resourceId, attribute);
|
|
||||||
int backgroundResource = array.getColor(0, 0);
|
|
||||||
array.recycle();
|
|
||||||
v.setBackgroundColor(backgroundResource);
|
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
txtvTitle.setTypeface(null, Typeface.NORMAL);
|
txtvTitle.setTypeface(null, Typeface.NORMAL);
|
||||||
v.getContext().getTheme().resolveAttribute(de.danoeh.antennapod.core.R.attr.nav_drawer_background, typedValue, true);
|
v.getContext().getTheme().resolveAttribute(de.danoeh.antennapod.core.R.attr.nav_drawer_background, typedValue, true);
|
||||||
int[] attribute = new int[] { de.danoeh.antennapod.core.R.attr.nav_drawer_background};
|
v.setBackgroundResource(typedValue.resourceId);
|
||||||
TypedArray array = v.getContext().obtainStyledAttributes(typedValue.resourceId, attribute);
|
|
||||||
int backgroundResource = array.getColor(0, 0);
|
|
||||||
array.recycle();
|
|
||||||
v.setBackgroundColor(backgroundResource);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return v;
|
return v;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user