|
|
@ -41,16 +41,23 @@
|
|
|
|
<uses-permission android:name="android.permission.USE_CREDENTIALS" />
|
|
|
|
<uses-permission android:name="android.permission.USE_CREDENTIALS" />
|
|
|
|
<!--- 开机自动运行权限 -->
|
|
|
|
<!--- 开机自动运行权限 -->
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
|
|
|
<!--- 存储的读写权限 -->
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--- 应用程序组件声明 -->
|
|
|
|
<!--- 应用程序组件声明 -->
|
|
|
|
<!--- 定义应用程序的图标和名称 -->
|
|
|
|
<!--- 定义应用程序的图标和名称 -->
|
|
|
|
<application
|
|
|
|
<application
|
|
|
|
android:icon="@drawable/icon_app"
|
|
|
|
android:icon="@drawable/icon_app_1"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:requestLegacyExternalStorage="true">
|
|
|
|
android:requestLegacyExternalStorage="true">
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
|
|
|
android:name=".ui.SplashActivity"
|
|
|
|
|
|
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
|
|
|
|
|
|
android:exported="true"
|
|
|
|
|
|
|
|
android:theme="@style/Theme.Notes.Fullscreen">
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
<activity
|
|
|
|
android:name=".ui.SplashActivity"
|
|
|
|
android:name=".ui.SplashActivity"
|
|
|
@ -93,8 +100,16 @@
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<!--- 笔记编辑 Activity 可以处理的 MIME 类型 -->
|
|
|
|
<!--- 笔记编辑 Activity 可以处理的 MIME 类型 -->
|
|
|
|
<data android:mimeType="vnd.android.cursor.item/text_note" android:scheme="content" android:host="com.example.notes.provider" android:path="/notes" />
|
|
|
|
<data
|
|
|
|
<data android:mimeType="vnd.android.cursor.item/call_note" android:scheme="content" android:host="com.example.notes.provider" android:path="/notes" />
|
|
|
|
android:host="com.example.notes.provider"
|
|
|
|
|
|
|
|
android:mimeType="vnd.android.cursor.item/text_note"
|
|
|
|
|
|
|
|
android:path="/notes"
|
|
|
|
|
|
|
|
android:scheme="content" />
|
|
|
|
|
|
|
|
<data
|
|
|
|
|
|
|
|
android:host="com.example.notes.provider"
|
|
|
|
|
|
|
|
android:mimeType="vnd.android.cursor.item/call_note"
|
|
|
|
|
|
|
|
android:path="/notes"
|
|
|
|
|
|
|
|
android:scheme="content" />
|
|
|
|
</intent-filter>
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
|
|
|
|
<!--- 笔记编辑 Activity 的 Intent Filter,用于接收其他应用程序发送过来的消息 -->
|
|
|
|
<!--- 笔记编辑 Activity 的 Intent Filter,用于接收其他应用程序发送过来的消息 -->
|
|
|
|