aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorAlex Ning <chineseperson5@gmail.com>2019-08-05 07:28:53 +0000
committerAlex Ning <chineseperson5@gmail.com>2019-08-05 07:28:53 +0000
commit199690355be9fb461ceddc346a9cc68a75940aa1 (patch)
tree983184cdc1c6c17118eabc3b7d29c61d141ce731 /app/src/main/AndroidManifest.xml
parent0d1fcecde60bbb1eb3b43736807883b12e54b2e8 (diff)
downloadinfinity-for-reddit-199690355be9fb461ceddc346a9cc68a75940aa1.tar
infinity-for-reddit-199690355be9fb461ceddc346a9cc68a75940aa1.tar.gz
infinity-for-reddit-199690355be9fb461ceddc346a9cc68a75940aa1.tar.bz2
infinity-for-reddit-199690355be9fb461ceddc346a9cc68a75940aa1.tar.lz
infinity-for-reddit-199690355be9fb461ceddc346a9cc68a75940aa1.tar.xz
infinity-for-reddit-199690355be9fb461ceddc346a9cc68a75940aa1.tar.zst
infinity-for-reddit-199690355be9fb461ceddc346a9cc68a75940aa1.zip
Filtering posts to specific type when the type chip is clicked in posts. Minor bugs fixed related to PostDataSource to continue loading posts.
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r--app/src/main/AndroidManifest.xml8
1 files changed, 6 insertions, 2 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index ed7e1a17..c9493e9a 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -20,6 +20,10 @@
android:theme="@style/AppTheme"
android:usesCleartextTraffic="true">
<activity
+ android:name=".FilteredPostsActivity"
+ android:parentActivityName=".MainActivity"
+ android:theme="@style/AppTheme.NoActionBar" />
+ <activity
android:name=".SearchSubredditsResultActivity"
android:label="@string/search_subreddits_activity_label"
android:parentActivityName=".MainActivity"
@@ -74,8 +78,8 @@
android:name=".PostTextActivity"
android:label="@string/post_text_activity_label"
android:parentActivityName=".MainActivity"
- android:windowSoftInputMode="adjustResize"
- android:theme="@style/AppTheme.NoActionBar" />
+ android:theme="@style/AppTheme.NoActionBar"
+ android:windowSoftInputMode="adjustResize" />
<activity
android:name=".CommentActivity"
android:label="@string/comment_activity_label"