画面の一部の色を取得するアプリを作成しています。これを行うには、Bitmap.getPixel メソッドを使用して画面の指定されたピクセルを取得します。後でコーディングしやすくするために RGB 形式に変換するのではありません。問題は、getPixel メソッドを使用するときに画面に何が表示されていても、画面全体を覆う灰色のボタンがある場合でも、常に同じ RGB 値、R:0 G:0 B:0、または黒を返すことです。 ! ここにコードがあります
package proof.of.concept;
import android.app.Activity;
import android.graphics.Bitmap;
import android.graphics.Color;
import android.os.Bundle;
import android.util.Log;
import android.view.Display;
import android.view.View;
import android.widget.*;
public class ColorCheckerProofOfConcept extends Activity {
private static final String TAG = "ColorChckerProofOfConcept:: ";
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
final Button button = (Button) findViewById(R.id.button1);
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
Display display = getWindowManager().getDefaultDisplay();
int width = display.getWidth();
int height = display.getHeight();
Log.d(TAG, "Width and Height Retrieved As: " + width + ", " + height);
Bitmap b = Bitmap.createBitmap(width, height, Bitmap.Config. RGB_565);
String hexValue;
int test;
test = b.getPixel(240, 350);
hexValue = Integer.toHexString(test);
Log.d(TAG, "pixel at 100, 200 succesfully retreived! with value of: " + test);
Log.d(TAG, "and an Hex value of: " + hexValue);
int blue = Color.blue(test);
int red = Color.red(test);
int green = Color.green(test);
//this is a modification
Log.d(TAG, "RGB COLOR! R:" + red + " G:" + green + " B:" + blue);
}
});
}
}