TextView b = new TextView(getApplicationContext());
月別アーカイブ: 2010年3月
Android: カメラのプレビューの上に表示するには
If you want one on top of the other you must use a FrameLayout and then give different z index to each when ad …
YouTubeをIntentから呼び出す。
Intent intent = new Intent(Intent.ACTION_SEARCH); intent.setPackage(“com.google.android.youtube”); …
スクリーンの解像度を取得する
DisplayMetrics dm = new DisplayMetrics(); WindowManager wm = (WindowManager)this.getContext().getSystemService …
バージョンを挿入する
PackageInfo pinfo = getPackageManager().getPackageInfo (this.getPackageName(), 0); String versionName = pinfo. …