kotlin migration

This commit is contained in:
Mariotaku Lee 2017-05-13 19:42:18 +08:00
parent 9c6a79518d
commit 0883109a57
No known key found for this signature in database
GPG Key ID: 15C10F89D7C33535
2 changed files with 40 additions and 56 deletions

View File

@ -1,56 +0,0 @@
/*
* Twidere - Twitter client for Android
*
* Copyright (C) 2012-2014 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.preference;
import android.content.ContentResolver;
import android.content.Context;
import android.provider.SearchRecentSuggestions;
import android.util.AttributeSet;
import org.mariotaku.twidere.R;
import org.mariotaku.twidere.provider.RecentSearchProvider;
import org.mariotaku.twidere.provider.TwidereDataStore.SearchHistory;
public class ClearSearchHistoryPreference extends AsyncTaskPreference {
public ClearSearchHistoryPreference(final Context context) {
this(context, null);
}
public ClearSearchHistoryPreference(final Context context, final AttributeSet attrs) {
this(context, attrs, R.attr.preferenceStyle);
}
public ClearSearchHistoryPreference(final Context context, final AttributeSet attrs, final int defStyle) {
super(context, attrs, defStyle);
}
@Override
protected void doInBackground() {
final Context context = getContext();
if (context == null) return;
final SearchRecentSuggestions suggestions = new SearchRecentSuggestions(context,
RecentSearchProvider.AUTHORITY, RecentSearchProvider.MODE);
suggestions.clearHistory();
final ContentResolver cr = context.getContentResolver();
cr.delete(SearchHistory.CONTENT_URI, null, null);
}
}

View File

@ -0,0 +1,40 @@
/*
* 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.preference
import android.content.Context
import android.provider.SearchRecentSuggestions
import android.util.AttributeSet
import org.mariotaku.twidere.provider.RecentSearchProvider
import org.mariotaku.twidere.provider.TwidereDataStore.SearchHistory
class ClearSearchHistoryPreference(context: Context, attrs: AttributeSet? = null) :
AsyncTaskPreference(context, attrs) {
override fun doInBackground() {
val context = context ?: return
val suggestions = SearchRecentSuggestions(context,
RecentSearchProvider.AUTHORITY, RecentSearchProvider.MODE)
suggestions.clearHistory()
val cr = context.contentResolver
cr.delete(SearchHistory.CONTENT_URI, null, null)
}
}