Camera

「Camera」の編集履歴(バックアップ)一覧はこちら

Camera」(2013/10/07 (月) 02:54:11) の最新版変更点

追加された行は緑色になります。

削除された行は赤色になります。

★は大事な記述 #highlight(){ ?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="パッケージ名" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="10" android:targetSdkVersion="10"/> <application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > <activity android:name="Activity名" android:label="@string/app_name" ★ android:screenOrientation="landscape"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> ★ <uses-permission android:name="android.permission.CAMERA" /> ★ <uses-feature android:name="android.hardware.camera" android:required="false"/> ★ <uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/> </manifest> }

表示オプション

横に並べて表示:
変化行の前後のみ表示:
ツールボックス

下から選んでください:

新しいページを作成する
ヘルプ / FAQ もご覧ください。