Home | History | Annotate | Download | only in myapplication

Lines Matching defs:context

3 import android.content.Context;
10 public ThemableWidget(Context context) {
11 super(context);
16 public ThemableWidget(Context context, AttributeSet attrs) {
17 super(context, attrs);
22 public ThemableWidget(Context context, AttributeSet attrs, int defStyleAttr) {
23 super(context, attrs, defStyleAttr);
28 public ThemableWidget(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
29 super(context, attrs, defStyleAttr, defStyleRes);
35 ContextThemeWrapper context = new ContextThemeWrapper(getContext(), getContext().getTheme());
36 context.setTheme(R.style.ThemableWidgetStyle);
38 LayoutInflater.from(context).inflate(R.layout.themable_widget_layout, this);