|
|
|
@ -33,7 +33,8 @@ |
|
|
|
|
android:name=".api.ReaderProvider" |
|
|
|
|
android:authorities="io.legado.app.api.ReaderProvider" |
|
|
|
|
android:enabled="true" |
|
|
|
|
android:exported="true" /> |
|
|
|
|
android:exported="true" |
|
|
|
|
tools:ignore="ExportedContentProvider" /> |
|
|
|
|
<!-- 主入口 --> |
|
|
|
|
<activity android:name=".ui.welcome.WelcomeActivity"> |
|
|
|
|
<intent-filter> |
|
|
|
@ -46,7 +47,8 @@ |
|
|
|
|
android:name="android.app.shortcuts" |
|
|
|
|
android:launchMode="singleTask" |
|
|
|
|
android:resource="@xml/shortcuts" /> |
|
|
|
|
</activity> <!-- 图标1 --> |
|
|
|
|
</activity> |
|
|
|
|
<!-- 图标1 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".ui.welcome.Launcher1" |
|
|
|
|
android:enabled="false" |
|
|
|
@ -61,7 +63,8 @@ |
|
|
|
|
android:name="android.app.shortcuts" |
|
|
|
|
android:launchMode="singleTask" |
|
|
|
|
android:resource="@xml/shortcuts" /> |
|
|
|
|
</activity> <!-- 图标2 --> |
|
|
|
|
</activity> |
|
|
|
|
<!-- 图标2 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".ui.welcome.Launcher2" |
|
|
|
|
android:enabled="false" |
|
|
|
@ -76,7 +79,8 @@ |
|
|
|
|
android:name="android.app.shortcuts" |
|
|
|
|
android:launchMode="singleTask" |
|
|
|
|
android:resource="@xml/shortcuts" /> |
|
|
|
|
</activity> <!-- 图标3 --> |
|
|
|
|
</activity> |
|
|
|
|
<!-- 图标3 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".ui.welcome.Launcher3" |
|
|
|
|
android:enabled="false" |
|
|
|
@ -91,7 +95,8 @@ |
|
|
|
|
android:name="android.app.shortcuts" |
|
|
|
|
android:launchMode="singleTask" |
|
|
|
|
android:resource="@xml/shortcuts" /> |
|
|
|
|
</activity> <!-- 图标4 --> |
|
|
|
|
</activity> |
|
|
|
|
<!-- 图标4 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".ui.welcome.Launcher4" |
|
|
|
|
android:enabled="false" |
|
|
|
@ -106,7 +111,8 @@ |
|
|
|
|
android:name="android.app.shortcuts" |
|
|
|
|
android:launchMode="singleTask" |
|
|
|
|
android:resource="@xml/shortcuts" /> |
|
|
|
|
</activity> <!-- 图标5 --> |
|
|
|
|
</activity> |
|
|
|
|
<!-- 图标5 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".ui.welcome.Launcher5" |
|
|
|
|
android:enabled="false" |
|
|
|
@ -121,7 +127,8 @@ |
|
|
|
|
android:name="android.app.shortcuts" |
|
|
|
|
android:launchMode="singleTask" |
|
|
|
|
android:resource="@xml/shortcuts" /> |
|
|
|
|
</activity> <!-- 图标6 --> |
|
|
|
|
</activity> |
|
|
|
|
<!-- 图标6 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".ui.welcome.Launcher6" |
|
|
|
|
android:enabled="false" |
|
|
|
@ -136,52 +143,66 @@ |
|
|
|
|
android:name="android.app.shortcuts" |
|
|
|
|
android:launchMode="singleTask" |
|
|
|
|
android:resource="@xml/shortcuts" /> |
|
|
|
|
</activity> <!-- 主界面 --> |
|
|
|
|
</activity> |
|
|
|
|
<!-- 主界面 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".ui.main.MainActivity" |
|
|
|
|
android:alwaysRetainTaskState="true" |
|
|
|
|
android:launchMode="singleTask" /> <!-- 阅读界面 --> |
|
|
|
|
android:launchMode="singleTask" /> |
|
|
|
|
<!-- 阅读界面 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".ui.book.read.ReadBookActivity" |
|
|
|
|
android:configChanges="locale|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout" |
|
|
|
|
android:launchMode="singleTask" /> <!-- 书籍详情页 --> |
|
|
|
|
android:launchMode="singleTask" /> |
|
|
|
|
<!-- 书籍详情页 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".ui.book.info.BookInfoActivity" |
|
|
|
|
android:launchMode="singleTop" /> <!-- 书籍信息编辑 --> |
|
|
|
|
android:launchMode="singleTop" /> |
|
|
|
|
<!-- 书籍信息编辑 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".ui.book.info.edit.BookInfoEditActivity" |
|
|
|
|
android:launchMode="singleTask" /> <!-- 音频播放界面 --> |
|
|
|
|
android:launchMode="singleTask" /> |
|
|
|
|
<!-- 音频播放界面 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".ui.audio.AudioPlayActivity" |
|
|
|
|
android:launchMode="singleTask" /> <!-- 授权界面 --> |
|
|
|
|
android:launchMode="singleTask" /> |
|
|
|
|
<!-- 授权界面 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".help.permission.PermissionActivity" |
|
|
|
|
android:theme="@style/Activity.Permission" /> <!-- 二维码扫描 --> |
|
|
|
|
android:theme="@style/Activity.Permission" /> |
|
|
|
|
<!-- 二维码扫描 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".ui.qrcode.QrCodeActivity" |
|
|
|
|
android:launchMode="singleTask" /> <!-- 书源编辑 --> |
|
|
|
|
android:launchMode="singleTask" /> |
|
|
|
|
<!-- 书源编辑 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".ui.book.source.edit.BookSourceEditActivity" |
|
|
|
|
android:configChanges="locale|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout" |
|
|
|
|
android:launchMode="singleTask" |
|
|
|
|
android:windowSoftInputMode="adjustResize|stateHidden" /> <!-- 订阅源编辑 --> |
|
|
|
|
android:windowSoftInputMode="adjustResize|stateHidden" /> |
|
|
|
|
<!-- 订阅源编辑 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".ui.rss.source.edit.RssSourceEditActivity" |
|
|
|
|
android:configChanges="locale|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout" |
|
|
|
|
android:launchMode="singleTask" |
|
|
|
|
android:windowSoftInputMode="adjustResize|stateHidden" /> <!-- 配置界面 --> |
|
|
|
|
android:windowSoftInputMode="adjustResize|stateHidden" /> |
|
|
|
|
<!-- 配置界面 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".ui.config.ConfigActivity" |
|
|
|
|
android:launchMode="singleTask" /> <!-- 搜索界面 --> |
|
|
|
|
android:launchMode="singleTask" /> |
|
|
|
|
<!-- 搜索界面 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".ui.book.search.SearchActivity" |
|
|
|
|
android:launchMode="singleTask" /> <!-- 关于界面 --> |
|
|
|
|
android:launchMode="singleTask" /> |
|
|
|
|
<!-- 关于界面 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".ui.about.AboutActivity" |
|
|
|
|
android:launchMode="singleTask" /> <!-- 捐赠界面 --> |
|
|
|
|
android:launchMode="singleTask" /> |
|
|
|
|
<!-- 捐赠界面 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".ui.about.DonateActivity" |
|
|
|
|
android:launchMode="singleTask" /> <!-- 书源管理 --> |
|
|
|
|
android:launchMode="singleTask" /> |
|
|
|
|
<!-- 书源管理 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".ui.book.source.manage.BookSourceActivity" |
|
|
|
|
android:launchMode="singleTop"> |
|
|
|
@ -195,7 +216,8 @@ |
|
|
|
|
android:host="booksource" |
|
|
|
|
android:scheme="yuedu" /> |
|
|
|
|
</intent-filter> |
|
|
|
|
</activity> <!-- 订阅源管理 --> |
|
|
|
|
</activity> |
|
|
|
|
<!-- 订阅源管理 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".ui.rss.source.manage.RssSourceActivity" |
|
|
|
|
android:launchMode="singleTop"> |
|
|
|
@ -209,7 +231,8 @@ |
|
|
|
|
android:host="rsssource" |
|
|
|
|
android:scheme="yuedu" /> |
|
|
|
|
</intent-filter> |
|
|
|
|
</activity> <!-- 替换规则界面 --> |
|
|
|
|
</activity> |
|
|
|
|
<!-- 替换规则界面 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".ui.replacerule.ReplaceRuleActivity" |
|
|
|
|
android:launchMode="singleTop"> |
|
|
|
@ -223,44 +246,56 @@ |
|
|
|
|
android:host="replace" |
|
|
|
|
android:scheme="yuedu" /> |
|
|
|
|
</intent-filter> |
|
|
|
|
</activity> <!-- 书籍管理 --> |
|
|
|
|
</activity> |
|
|
|
|
<!-- 书籍管理 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".ui.book.arrange.ArrangeBookActivity" |
|
|
|
|
android:launchMode="singleTop" /> <!-- 书源调试 --> |
|
|
|
|
android:launchMode="singleTop" /> |
|
|
|
|
<!-- 书源调试 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".ui.book.source.debug.BookSourceDebugActivity" |
|
|
|
|
android:launchMode="singleTop" /> <!-- 目录 --> |
|
|
|
|
android:launchMode="singleTop" /> |
|
|
|
|
<!-- 目录 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".ui.book.chapterlist.ChapterListActivity" |
|
|
|
|
android:launchMode="singleTop" |
|
|
|
|
android:screenOrientation="behind" /> <!-- RSS条目 --> |
|
|
|
|
android:screenOrientation="behind" /> |
|
|
|
|
<!-- RSS条目 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".ui.rss.article.RssSortActivity" |
|
|
|
|
android:launchMode="singleTop" /> <!-- RSS阅读 --> |
|
|
|
|
android:launchMode="singleTop" /> |
|
|
|
|
<!-- RSS阅读 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".ui.rss.read.ReadRssActivity" |
|
|
|
|
android:configChanges="orientation|screenSize" |
|
|
|
|
android:hardwareAccelerated="true" |
|
|
|
|
android:launchMode="singleTop" /> <!-- 导入书籍 --> |
|
|
|
|
android:launchMode="singleTop" /> |
|
|
|
|
<!-- 导入书籍 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".ui.book.local.ImportBookActivity" |
|
|
|
|
android:launchMode="singleTop" /> <!-- 发现界面 --> |
|
|
|
|
android:launchMode="singleTop" /> |
|
|
|
|
<!-- 发现界面 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".ui.book.explore.ExploreShowActivity" |
|
|
|
|
android:launchMode="singleTop" /> <!-- 订阅源调试 --> |
|
|
|
|
android:launchMode="singleTop" /> |
|
|
|
|
<!-- 订阅源调试 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".ui.rss.source.debug.RssSourceDebugActivity" |
|
|
|
|
android:launchMode="singleTop" /> <!-- Rss收藏 --> |
|
|
|
|
android:launchMode="singleTop" /> |
|
|
|
|
<!-- Rss收藏 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".ui.rss.favorites.RssFavoritesActivity" |
|
|
|
|
android:launchMode="singleTop" /> <!-- 下载界面 --> |
|
|
|
|
android:launchMode="singleTop" /> |
|
|
|
|
<!-- 下载界面 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".ui.book.download.DownloadActivity" |
|
|
|
|
android:launchMode="singleTop" /> <!-- 书源登录 --> |
|
|
|
|
android:launchMode="singleTop" /> |
|
|
|
|
<!-- 书源登录 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".ui.login.SourceLogin" |
|
|
|
|
android:configChanges="orientation|screenSize" |
|
|
|
|
android:hardwareAccelerated="true" /> <!-- 文字处理 --> |
|
|
|
|
android:hardwareAccelerated="true" /> |
|
|
|
|
<!-- 文字处理 --> |
|
|
|
|
<activity |
|
|
|
|
android:name=".receiver.SharedReceiverActivity" |
|
|
|
|
android:label="@string/receiving_shared_label"> |
|
|
|
|