Prepare to add composing private message feature.

This commit is contained in:
Alex Ning
2020-07-07 23:35:18 +08:00
parent ba2a219168
commit 40fd7bf40f
13 changed files with 327 additions and 5 deletions

View File

@@ -23,13 +23,19 @@
android:theme="@style/AppTheme"
android:usesCleartextTraffic="true"
tools:replace="android:label">
<activity android:name=".Activity.SendPrivateMessageActivity"
android:label="@string/send_private_message_activity_label"
android:parentActivityName=".Activity.MainActivity"
android:theme="@style/AppTheme.NoActionBar"
android:windowSoftInputMode="adjustResize" />
<service
android:name=".Service.DownloadRedditVideoService"
android:enabled="true"
android:exported="false" />
<activity android:name=".Activity.ViewPrivateMessagesActivity"
<activity
android:name=".Activity.ViewPrivateMessagesActivity"
android:parentActivityName=".Activity.MainActivity"
android:theme="@style/AppTheme.Slidable"
android:windowSoftInputMode="adjustResize" />