javaandroid中泛型类型元素的样式设计

rlcwz9us  于 2021-07-07  发布在  Java
关注(0)|答案(0)|浏览(104)

我想用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接收,并在此基础上,我将决定应用哪种样式。

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题