Home | History | Annotate | Download | only in util

Lines Matching refs:ta

35         TypedArray ta = context.obtainStyledAttributes(new int[]{attr});
36 int colorAccent = ta.getColor(0, 0);
37 ta.recycle();
42 TypedArray ta = context.obtainStyledAttributes(new int[]{attr});
43 boolean value = ta.getBoolean(0, false);
44 ta.recycle();
49 TypedArray ta = context.obtainStyledAttributes(new int[]{attr});
50 Drawable value = ta.getDrawable(0);
51 ta.recycle();
56 TypedArray ta = context.obtainStyledAttributes(new int[]{attr});
57 int value = ta.getInteger(0, 0);
58 ta.recycle();
66 TypedArray ta = context.obtainStyledAttributes(new int[]{attr});
67 float alpha = ta.getFloat(0, 0);
68 ta.recycle();