我想使用动态主题颜色并从服务器获取颜色请问最好的方法是什么,如果我可以用java编辑xml中的颜色属性我该怎么做呢。
答案 0 :(得分:2)
你想改变什么颜色?布局背景颜色?
LinearLayout ll = (LinearLayout) findViewById(R.id.linearLayout);
int color = Color.argb(255, 255, 0, 255); // Use your values from the server here
ll.setBackgroundColor(color);