日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

使用SeekBar组件调节屏幕亮度

發布時間:2024/4/15 编程问答 31 豆豆
生活随笔 收集整理的這篇文章主要介紹了 使用SeekBar组件调节屏幕亮度 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
Android手機里也可以通過程序進行屏幕亮度的調節,而這種操作往往就是通過SeekBar組件實現的,而要想實現亮度調節功能就必須android.view.Window類的screenBrightness屬性實現,而此屬性的取值范圍是0~1 (由暗到亮) .xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" ? ? xmlns:tools="http://schemas.android.com/tools" ? ? android:layout_width="match_parent" ? ? android:layout_height="match_parent" ? ? android:orientation="vertical" ? ? tools:context=".MainActivity" > ? ? <SeekBar? ? ? ? ? android:id="@+id/seekbar" ? ? ? ? android:layout_width="fill_parent" ? ? ? ? android:layout_height="wrap_content"/> ? ?? ? ? <ImageView? ? ? ? ? android:id="@+id/img" ? ? ? ? android:layout_width="wrap_content" ? ? ? ? android:layout_height="wrap_content" ? ? ? ? android:src="@drawable/android_book"/> ? ? <TextView? ? ? ? ? android:id="@+id/light" ? ? ? ? android:layout_width="fill_parent" ? ? ? ? android:layout_height="wrap_content"/>
</LinearLayout>
.java
package com.example.seekbardemo3adjustthelight;
import android.os.Bundle; import android.app.Activity; import android.view.Menu; import android.view.Window; import android.view.WindowManager; import android.widget.SeekBar; import android.widget.SeekBar.OnSeekBarChangeListener; import android.widget.TextView;
public class MainActivity extends Activity { private SeekBar seekbar=null; private TextView light=null; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); this.light=(TextView) super.findViewById(R.id.light); this.seekbar=(SeekBar) super.findViewById(R.id.seekbar); this.seekbar.setMax(100); this.seekbar.setOnSeekBarChangeListener(new SeekBarChangeListenerImp()); }
public class SeekBarChangeListenerImp implements OnSeekBarChangeListener{
public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) { // TODO Auto-generated method stub int cur=seekBar.getProgress(); MainActivity.this.setScreenBrightness(cur/100); MainActivity.this.light.setText("當前屏幕亮度:"+cur/100); }
public void onStartTrackingTouch(SeekBar seekBar) { // TODO Auto-generated method stub }
public void onStopTrackingTouch(SeekBar seekBar) { // TODO Auto-generated method stub } } //設置屏幕亮度的函數 private void setScreenBrightness(float num){ WindowManager.LayoutParams layoutParams=super.getWindow().getAttributes(); layoutParams.screenBrightness=num;//設置屏幕的亮度 super.getWindow().setAttributes(layoutParams); } }

總結

以上是生活随笔為你收集整理的使用SeekBar组件调节屏幕亮度的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。