17

ここにあるような明るさスクリーンフィルターを実装する方法を知っている人はいますか?

http://www.appbrain.com/app/screen-filter/com.haxor

出発点が必要ですが、その方法がわかりません。

4

4 に答える 4

8

タッチを通過させる透明なフルスクリーンアクティビティを作成するだけです。タッチをパススルーするには、contentViewを設定する前に次のウィンドウフラグを使用します。

@Override
public void onCreate(Bundle savedInstanceState)
{
  super.onCreate(savedInstanceState);
  Window window = getWindow();

  // Let touches go through to apps/activities underneath.
  window.addFlags(FLAG_NOT_TOUCHABLE);

  // Now set up content view
  setContentView(R.layout.main);
}

main.xmlレイアウトファイルには、背景が透明なフルスクリーンのLinearLayoutを使用します。

<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:id="@+id/background"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:background="#33000000">
</LinearLayout>

次に、「明るさ」を調整するには、コードの背景色の値をどこかで変更します。

findViewById(R.id.background).setBackgroundColor(0x66000000);
于 2010-11-26T18:03:43.000 に答える
5
  • WindowManager のインスタンスを取得します。

    WindowManager windowManager = (WindowManager) Class.forName("android.view.WindowManagerImpl").getMethod("getDefault", new Class[0]).invoke(null, new Object[0]);

  • 全画面レイアウト xml を作成します (レイアウト パラメータを に設定fill_parent)

  • タッチがアプリに渡され、アプリがそれを検出できるように、ビューをクリックできない、フォーカスできない、長くクリックできないなどのように設定します。

    view.setFocusable(false);
    view.setClickable(false);
    view.setKeepScreenOn(false);
    view.setLongClickable(false);
    view.setFocusableInTouchMode(false);

  • type のレイアウト パラメータを作成しますandroid.view.WindowManager.LayoutParamsLayoutParams layoutParams = new LayoutParams();

  • 高さ、幅などのレイアウト パラメータを設定する

    layoutParams.height = LayoutParams.FILL_PARENT; 
    layoutParams.width = LayoutParams.FILL_PARENT;
    layoutParams.flags = 280; // You can try LayoutParams.FLAG_FULLSCREEN too
    layoutParams.format = PixelFormat.TRANSLUCENT; // You can try different formats
    layoutParams.windowAnimations = android.R.style.Animation_Toast; // You can use only animations that the system to can access
    layoutParams.type = LayoutParams.TYPE_SYSTEM_OVERLAY;
    layoutParams.gravity = Gravity.BOTTOM;
    layoutParams.x = 0;
    layoutParams.y = 0;
    layoutParams.verticalWeight = 1.0F;
    layoutParams.horizontalWeight = 1.0F;
    layoutParams.verticalMargin = 0.0F;
    layoutParams.horizontalMargin = 0.0F;
    
  • 重要なステップ: 必要な明るさのパーセンテージを設定できます。 layoutParams.setBackgroundDrawable(getBackgroundDrawable(i));

    private Drawable getBackgroundDrawable(int i) {
    int j = 255 - (int) Math.round(255D * Math.exp(4D * ((double) i / 100D) - 4D));
    return new ColorDrawable(Color.argb(j, 0, 0, 0));}
    
  • 最後に、先ほど作成した windowManager にビューを追加します。

    windowManager.addView(view, layoutParams);

SYSTEM_ALERT_WINDOW注:画面にオーバーレイを配置するには、アクセス許可が必要です。

<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>

これをテストしましたが、動作します。行き詰まったらお知らせください。

于 2013-04-16T10:12:11.817 に答える
1

もちろん、これは製品コードでは使用できませんが、遊んでいる場合は、この文書化されていないハックを試してください

それは使用しています :

private void setBrightness(int brightness) {
try {
  IHardwareService hardware = IHardwareService.Stub.asInterface(
   ServiceManager.getService("hardware"));
  if (hardware != null) {
    hardware.setScreenBacklight(brightness);
  }
 } catch (RemoteException doe) {          
  }        
 }

この許可を使用することに注意してください。

 <uses-permission android:name="android.permission.HARDWARE_TEST"/>
于 2010-12-09T10:33:15.643 に答える
0

これも試してみてください:

protected void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        setContentView(R.layout.max_bright);



        WindowManager.LayoutParams lp = getWindow().getAttributes();

        lp.screenBrightness = 100 / 100.0f;

        getWindow().setAttributes(lp);

    }
于 2010-11-30T13:16:01.097 に答える