added media timeline shortcut

This commit is contained in:
Mariotaku Lee 2017-09-02 00:51:02 +08:00
parent 0b965f56bf
commit 2abab7c256
No known key found for this signature in database
GPG Key ID: 15C10F89D7C33535
2 changed files with 47 additions and 0 deletions

View File

@ -422,6 +422,17 @@
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
<activity
android:name=".activity.shortcut.UserMediaTimelineTimelineShortcutCreatorActivity"
android:icon="@mipmap/ic_shortcut_gallery"
android:label="@string/title_media_timeline"
android:theme="@style/Theme.Twidere.NoDisplay">
<intent-filter>
<action android:name="android.intent.action.CREATE_SHORTCUT"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
<activity
android:name=".activity.shortcut.UserShortcutCreatorActivity"
android:icon="@mipmap/ic_shortcut_user"

View File

@ -0,0 +1,36 @@
/*
* Twidere - Twitter client for Android
*
* Copyright (C) 2012-2017 Mariotaku Lee <mariotaku.lee@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.mariotaku.twidere.activity.shortcut
import org.mariotaku.twidere.model.ParcelableUser
import org.mariotaku.twidere.model.UserKey
import org.mariotaku.twidere.util.shortcut.ShortcutCreator
/**
* Created by mariotaku on 2017/8/27.
*/
class UserMediaTimelineTimelineShortcutCreatorActivity : AbsUserRelatedShortcutCreatorActivity() {
override fun onUserSelected(accountKey: UserKey?, user: ParcelableUser) {
addShortcut { ShortcutCreator.userMediaTimeline(this, accountKey, user) }
}
}