我想用java android完成的任务。。
public class Styler<E>{
public <E> Styler(E obj){
obj.setPadding(10, 10, 10, 10);
obj.setBackgroundColor(Color.parseColor("#000000"));
return obj;
}
}
// How i would like to use it
linearLayout = new Styler(linearLayout);
relativeLayout = new Styler(relativeLayout);
textView = new Styler(textView);
imageView = new Styler(ImageView);
样式数据将从api接收,并在此基础上,我将决定应用哪种样式。
暂无答案!
目前还没有任何答案,快来回答吧!