プログラムでタッチスクリーンを調整する方法はありますか? ありがとうございました
1108 次
2 に答える
0
I have researched on this, then I understand that there is no API for doing screen calibration. If I found any API in future I will definitely update this.
于 2012-12-14T05:56:58.490 に答える
0
私のデバイスには、特別なキャリブレーション アクティビティがあります。次のコードで呼び出すことができます。
Intent i = new Intent();
i.setClassName("org.zeroxlab.util.tscal", "org.zeroxlab.util.tscal.TSCalibration");
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
mActivity.startActivity(i);
于 2012-12-07T14:52:19.337 に答える