- 主窗口添加工具栏关于应用菜单 - AboutActivity使用AppBarLayout与主窗口一致 - 添加返回按钮到AboutActivity工具栏 - 去掉主窗口刷新菜单 - onResume时刷新相册集封面
67 lines
1.9 KiB
XML
67 lines
1.9 KiB
XML
<?xml version='1.0' encoding='utf-8'?>
|
|
<manifest
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="cc.winboll.studio.gallery">
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"/>
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/AppTheme"
|
|
android:resizeableActivity="true"
|
|
android:name=".GlobalWinBoLLApplication"
|
|
android:requestLegacyExternalStorage="true">
|
|
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:label="@string/app_name">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".SettingsActivity"
|
|
android:label="@string/settings_title"/>
|
|
|
|
<activity
|
|
android:name=".AlbumActivity"
|
|
android:label="@string/app_name"/>
|
|
|
|
<activity
|
|
android:name=".ImageViewerActivity"
|
|
android:label="@string/app_name"/>
|
|
|
|
<activity
|
|
android:name=".TrashActivity"
|
|
android:label="@string/trash"/>
|
|
|
|
<activity
|
|
android:name=".CropActivity"
|
|
android:label="调整封面"/>
|
|
|
|
<activity
|
|
android:name=".AboutActivity"
|
|
android:label="@string/about"/>
|
|
|
|
<meta-data
|
|
android:name="android.max_aspect"
|
|
android:value="4.0"/>
|
|
|
|
<activity android:name=".GlobalApplication$CrashActivity"/>
|
|
|
|
</application>
|
|
|
|
</manifest>
|