XML은 다음과 같습니다.
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/LightStyle"
android:layout_width="fill_parent"
android:layout_height="55dip"
android:clickable="true"
android:orientation="horizontal" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" />
</RelativeLayout>
style
프로그래밍 방식으로 속성 을 설정하는 방법은 무엇입니까?
답변
기술적으로 사용자 정의보기를 사용하여 프로그래밍 방식으로 스타일을 적용 할 수 있습니다.
private MyRelativeLayout extends RelativeLayout {
public MyRelativeLayout(Context context) {
super(context, null, R.style.LightStyle);
}
}
하나의 인수 생성자는 프로그래밍 방식으로 뷰를 인스턴스화 할 때 사용되는 생성자입니다.
따라서이 생성자를 스타일 매개 변수를 사용하는 수퍼에 연결하십시오.
RelativeLayout someLayout = new MyRelativeLayout(new ContextThemeWrapper(this,R.style.RadioButton));
또는 @Dori가 간단히 지적한 것처럼 :
RelativeLayout someLayout = new RelativeLayout(new ContextThemeWrapper(activity,R.style.LightStyle));
답변
나를 위해 일한 것 :
Button b = new Button(new ContextThemeWrapper(this, R.style.ButtonText), null, 0);
- ContextThemeWrapper 사용
과
- 3- 인수 생성자를 사용하십시오 (이것이 없으면 작동하지 않습니다)
답변
업데이트 :이 질문에 대한 답변 (2012 년 중반, API 레벨 14-15)에서 프로그래밍 방식으로 뷰를 설정하는 것은 옵션이 아니었지만 (몇 가지 사소한 해결 방법이 있었음에도 불구하고) 더 최근의 API 후에 가능했습니다. 릴리스. 자세한 내용은 @Blundell의 답변을 참조하십시오.
이전 답변 :
프로그래밍 방식으로 뷰의 스타일을 설정할 수 는 없지만 이 스레드가 유용 할 수 있습니다 .
답변
새로운 Button / TextView의 경우 :
Button mMyButton = new Button(new ContextThemeWrapper(this, R.style.button_disabled), null, 0);
기존 인스턴스의 경우 :
mMyButton.setTextAppearance(this, R.style.button_enabled);
이미지 또는 레이아웃의 경우 :
Image mMyImage = new ImageView(new ContextThemeWrapper(context, R.style.article_image), null, 0);
답변
XML을 계속 사용하고 (허용 된 답변으로는 허용하지 않음)보기가 작성된 후 스타일을 설정하려면 사용 가능한 모든 속성의 서브 세트를 지원하는 파리 라이브러리를 사용할 수 있습니다.
XML에서 뷰를 부풀리기 때문에 레이아웃에 id를 지정해야합니다.
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/my_styleable_relative_layout"
style="@style/LightStyle"
...
그런 다음 레이아웃이 팽창 된 후 프로그래밍 방식으로 스타일을 변경해야하는 경우 :
// Any way to get the view instance will do
RelativeLayout myView = findViewById(R.id.my_styleable_relative_layout);
// This will apply all the supported attribute values of the style
Paris.style(myView).apply(R.style.LightStyle);
추가 정보 : 지원되는보기 유형 및 속성 목록 (배경, 패딩, 여백 등을 포함하며 쉽게 확장 할 수 있음) 및 추가 설명서와 함께 설치 지침 .
면책 조항 : 나는 상기 도서관의 원저자입니다.
답변
다음을 수행하여 활동에 스타일을 적용 할 수 있습니다.
super.setTheme( R.style.MyAppTheme );
또는 Android 기본값 :
super.setTheme( android.R.style.Theme );
귀하의 활동에서 setContentView()
.
답변
제공된 답변 중 정확하지 않습니다.
프로그래밍 방식으로 스타일을 설정할 수 있습니다.
짧은 대답은 http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/5.1.1_r1/android/content/Context.java#435를 살펴보십시오.
긴 대답입니다. 프로그래밍 방식으로 사용자 정의 스타일을보기로 설정하는 스 니펫은 다음과 같습니다.
1) styles.xml 파일에서 스타일을 작성하십시오.
<style name="MyStyle">
<item name="customTextColor">#39445B</item>
<item name="customDividerColor">#8D5AA8</item>
</style>
attrs.xml 파일에서 사용자 정의 속성을 정의하는 것을 잊지 마십시오
내 attrsl.xml 파일 :
<declare-styleable name="CustomWidget">
<attr name="customTextColor" format="color" />
<attr name="customDividerColor" format="color" />
</declare-styleable>
스타일 지정에 내 이름을 사용할 수 있습니다 (내 CustomWidget).
이제 스타일을 위젯으로 설정할 수 있습니다.
public class StyleableWidget extends LinearLayout {
private final StyleLoader styleLoader = new StyleLoader();
private TextView textView;
private View divider;
public StyleableWidget(Context context) {
super(context);
init();
}
private void init() {
inflate(getContext(), R.layout.widget_styleable, this);
textView = (TextView) findViewById(R.id.text_view);
divider = findViewById(R.id.divider);
setOrientation(VERTICAL);
}
protected void apply(StyleLoader.StyleAttrs styleAttrs) {
textView.setTextColor(styleAttrs.textColor);
divider.setBackgroundColor(styleAttrs.dividerColor);
}
public void setStyle(@StyleRes int style) {
apply(styleLoader.load(getContext(), style));
}
}
나열한 것:
<TextView
android:id="@+id/text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="22sp"
android:layout_gravity="center"
android:text="@string/styleble_title" />
<View
android:id="@+id/divider"
android:layout_width="match_parent"
android:layout_height="1dp"/>
</merge>
마지막으로 StyleLoader 클래스 구현
public class StyleLoader {
public StyleLoader() {
}
public static class StyleAttrs {
public int textColor;
public int dividerColor;
}
public StyleAttrs load(Context context, @StyleRes int styleResId) {
final TypedArray styledAttributes = context.obtainStyledAttributes(styleResId, R.styleable.CustomWidget);
return load(styledAttributes);
}
@NonNull
private StyleAttrs load(TypedArray styledAttributes) {
StyleAttrs styleAttrs = new StyleAttrs();
try {
styleAttrs.textColor = styledAttributes.getColor(R.styleable.CustomWidget_customTextColor, 0);
styleAttrs.dividerColor = styledAttributes.getColor(R.styleable.CustomWidget_customDividerColor, 0);
} finally {
styledAttributes.recycle();
}
return styleAttrs;
}
}
https://github.com/Defuera/SetStylableProgramatically 에서 완전히 작동하는 예제를 찾을 수 있습니다