H
Hcman
Neues Mitglied
- 1
Ich würde gerne ein Style inportiren für eine TextView.
Folgendes habe ich ohne Erfolg probiert:
class Text extends TextView {
TextView t = new TextView(new ContextThemeWrapper(this, R.style.test), null, 0);
Folgendes habe ich ohne Erfolg probiert:
class Text extends TextView {
Java:
class Text extends TextView {
public Text(Context context) {
super(context, null, R.style.test);
setText("Test");
}
}
TextView t = new TextView(new ContextThemeWrapper(this, R.style.test), null, 0);