Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to adjust the background color of layout through SeekBar by Android

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)05/31 Report--

In this article, the editor introduces in detail "how Android adjusts the background color of the layout through SeekBar". The content is detailed, the steps are clear, and the details are handled properly. I hope that this article "Android how to adjust the background color of layout through SeekBar" can help you solve your doubts.

The method of setting the background Color of layout with RGB

RelativeLayout.setBackgroundColor (Color.rgb (rmeme gjorb))

Layout file

Main activity

Public class MainActivity extends Activity {private RelativeLayout relativeLayout; private SeekBar color_R,color_G,color_B; private static int r = 0Magneg = 0Magna b = 0; private TextView int_r,int_g,int_b; @ Override protected void onCreate (Bundle savedInstanceState) {super.onCreate (savedInstanceState); setContentView (R.layout.activity_main); relativeLayout = (RelativeLayout) findViewById (R.id.RelativeLayout) Color_R = (SeekBar) findViewById (R.id.R); color_G = (SeekBar) findViewById (R.id.G); color_B = (SeekBar) findViewById (R.id.B); int_r = (TextView) findViewById (R.id.int_R); int_g = (TextView) findViewById (R.id.int_G); int_b = (TextView) findViewById (R.id.int_B) Color_R.setMax; color_G.setMax; color_B.setMax; color_B.setProgress; color_G.setProgress; color_B.setProgress Color_R.setOnSeekBarChangeListener (new SeekBar.OnSeekBarChangeListener () {@ Override public void onProgressChanged (SeekBar seekBar,int progress, boolean fromUser) {} @ Override public void onStartTrackingTouch (SeekBar seekBar) {} @ Override public void onStopTrackingTouch (SeekBar seekBar) {r = seekBar.getProgress () String int_color_r = "R:" + String.valueOf (r); int_r.setText (int_color_r); relativeLayout.setBackgroundColor (Color.rgb);}}) Color_G.setOnSeekBarChangeListener (new SeekBar.OnSeekBarChangeListener () {@ Override public void onProgressChanged (SeekBar seekBar, int I, boolean fromUser) {} @ Override public void onStartTrackingTouch (SeekBar seekBar) {} @ Override public void onStopTrackingTouch (SeekBar seekBar) {g = seekBar.getProgress () String int_color_g = "G:" + String.valueOf (g); int_g.setText (int_color_g); relativeLayout.setBackgroundColor (Color.rgb);}}) Color_B.setOnSeekBarChangeListener (new SeekBar.OnSeekBarChangeListener () {@ Override public void onProgressChanged (SeekBar seekBar, int I, boolean fromUser) {} @ Override public void onStartTrackingTouch (SeekBar seekBar) {} @ Override public void onStopTrackingTouch (SeekBar seekBar) {b = seekBar.getProgress () String int_color_b = "B:" + String.valueOf (b); int_b.setText (int_color_b); relativeLayout.setBackgroundColor (Color.rgb);}});}}

Effect.

After reading this, the article "how Android adjusts the background color of layout through SeekBar" has been introduced. If you want to master the knowledge of this article, you still need to practice and use it to understand it. If you want to know more about related articles, you are welcome to follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report