Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
動的なテーマの色を使用し、サーバーから色を取得したいのですが、それを行うための最良の方法は何ですか。Java から xml の色属性を編集できる場合はどうすればよいですか。
何の色を変えようとしていますか?レイアウトの背景色?
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);