|
|
|
@ -16,6 +16,7 @@
|
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
package="net.micode.notes"
|
|
|
|
|
android:versionCode="1"
|
|
|
|
|
android:versionName="0.1" >
|
|
|
|
@ -40,7 +41,8 @@
|
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
|
android:label="@string/app_name"
|
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
|
android:theme="@style/NoteTheme"
|
|
|
|
|
android:theme="@style/Theme.AppCompat.Light.DarkActionBar"
|
|
|
|
|
|
|
|
|
|
android:uiOptions="splitActionBarWhenNarrow"
|
|
|
|
|
android:windowSoftInputMode="adjustPan" >
|
|
|
|
|
|
|
|
|
@ -54,9 +56,13 @@
|
|
|
|
|
android:name=".ui.NoteEditActivity"
|
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
|
android:theme="@style/NoteTheme" >
|
|
|
|
|
android:theme="@style/Theme.AppCompat.Light.DarkActionBar"
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
|
|
|
|
|
|
<!-- 新维护-->
|
|
|
|
|
|
|
|
|
|
<intent-filter tools:ignore="AppLinkUrlError">
|
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
<data android:mimeType="vnd.android.cursor.item/text_note" />
|
|
|
|
|