mirror of
https://github.com/zxing/zxing.git
synced 2025-01-12 19:57:27 -08:00
Manifest changes I think we want: no state needed with one exception; always restart from scanning from Home
git-svn-id: https://zxing.googlecode.com/svn/trunk@1943 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
303ed2e6a0
commit
dc5f292c21
|
@ -45,6 +45,8 @@ versionName is 2.31, 2.4, or 3.0. -->
|
|||
android:label="@string/app_name">
|
||||
<activity android:name=".CaptureActivity"
|
||||
android:screenOrientation="landscape"
|
||||
android:clearTaskOnLaunch="true"
|
||||
android:stateNotNeeded="true"
|
||||
android:configChanges="orientation|keyboardHidden"
|
||||
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
|
||||
android:windowSoftInputMode="stateAlwaysHidden">
|
||||
|
@ -79,9 +81,12 @@ versionName is 2.31, 2.4, or 3.0. -->
|
|||
</intent-filter>
|
||||
</activity>
|
||||
<activity android:name=".PreferencesActivity"
|
||||
android:label="@string/preferences_name">
|
||||
android:label="@string/preferences_name"
|
||||
android:stateNotNeeded="true">
|
||||
</activity>
|
||||
<activity android:name=".encode.EncodeActivity" android:label="@string/share_name">
|
||||
<activity android:name=".encode.EncodeActivity"
|
||||
android:label="@string/share_name"
|
||||
android:stateNotNeeded="true">
|
||||
<intent-filter>
|
||||
<action android:name="com.google.zxing.client.android.ENCODE"/>
|
||||
<category android:name="android.intent.category.DEFAULT"/>
|
||||
|
@ -101,6 +106,7 @@ versionName is 2.31, 2.4, or 3.0. -->
|
|||
</activity>
|
||||
<activity android:name=".book.SearchBookContentsActivity"
|
||||
android:label="@string/sbc_name"
|
||||
android:stateNotNeeded="true"
|
||||
android:screenOrientation="landscape"
|
||||
android:configChanges="orientation|keyboardHidden">
|
||||
<intent-filter>
|
||||
|
@ -110,6 +116,7 @@ versionName is 2.31, 2.4, or 3.0. -->
|
|||
</activity>
|
||||
<activity android:name=".share.ShareActivity"
|
||||
android:label="@string/share_name"
|
||||
android:stateNotNeeded="true"
|
||||
android:screenOrientation="user"
|
||||
android:theme="@android:style/Theme.Light">
|
||||
<intent-filter>
|
||||
|
@ -118,7 +125,8 @@ versionName is 2.31, 2.4, or 3.0. -->
|
|||
</intent-filter>
|
||||
</activity>
|
||||
<activity android:name=".share.BookmarkPickerActivity"
|
||||
android:label="@string/bookmark_picker_name">
|
||||
android:label="@string/bookmark_picker_name"
|
||||
android:stateNotNeeded="true">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.PICK"/>
|
||||
<category android:name="android.intent.category.DEFAULT"/>
|
||||
|
@ -126,6 +134,7 @@ versionName is 2.31, 2.4, or 3.0. -->
|
|||
</activity>
|
||||
<activity android:name=".share.AppPickerActivity"
|
||||
android:label="@string/app_picker_name"
|
||||
android:stateNotNeeded="true"
|
||||
android:configChanges="orientation">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.PICK"/>
|
||||
|
|
Loading…
Reference in a new issue