mirror of
https://github.com/KDE/kdeconnect-android
synced 2025-08-22 09:58:08 +00:00
116 lines
4.2 KiB
Java
116 lines
4.2 KiB
Java
|
/*
|
||
|
* Copyright 2014 Albert Vaca Cintora <albertvaka@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 2 of
|
||
|
* the License or (at your option) version 3 or any later version
|
||
|
* accepted by the membership of KDE e.V. (or its successor approved
|
||
|
* by the membership of KDE e.V.), which shall act as a proxy
|
||
|
* defined in Section 14 of version 3 of the license.
|
||
|
*
|
||
|
* 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.kde.kdeconnect.Plugins.SharePlugin;
|
||
|
|
||
|
import android.app.Activity;
|
||
|
import android.app.Notification;
|
||
|
import android.app.NotificationManager;
|
||
|
import android.content.ContentResolver;
|
||
|
import android.content.Context;
|
||
|
import android.content.Intent;
|
||
|
import android.content.SharedPreferences;
|
||
|
import android.content.res.Resources;
|
||
|
import android.database.Cursor;
|
||
|
import android.net.Uri;
|
||
|
import android.os.Bundle;
|
||
|
import android.os.Handler;
|
||
|
import android.os.Looper;
|
||
|
import android.preference.PreferenceManager;
|
||
|
import android.provider.MediaStore;
|
||
|
import android.support.v4.app.NotificationCompat;
|
||
|
import android.support.v7.app.ActionBar;
|
||
|
import android.support.v7.app.ActionBarActivity;
|
||
|
import android.util.Log;
|
||
|
import android.view.Menu;
|
||
|
import android.view.MenuInflater;
|
||
|
import android.view.MenuItem;
|
||
|
import android.view.View;
|
||
|
import android.widget.AdapterView;
|
||
|
import android.widget.ListView;
|
||
|
import android.widget.Toast;
|
||
|
|
||
|
import org.kde.kdeconnect.BackgroundService;
|
||
|
import org.kde.kdeconnect.Device;
|
||
|
import org.kde.kdeconnect.NetworkPackage;
|
||
|
import org.kde.kdeconnect.UserInterface.List.EntryItem;
|
||
|
import org.kde.kdeconnect.UserInterface.List.ListAdapter;
|
||
|
import org.kde.kdeconnect.UserInterface.List.SectionItem;
|
||
|
import org.kde.kdeconnect_tp.R;
|
||
|
|
||
|
import java.io.File;
|
||
|
import java.io.InputStream;
|
||
|
import java.net.URL;
|
||
|
import java.util.ArrayList;
|
||
|
import java.util.Collection;
|
||
|
|
||
|
|
||
|
public class SendFileActivity extends ActionBarActivity {
|
||
|
|
||
|
String mDeviceId;
|
||
|
|
||
|
@Override
|
||
|
protected void onCreate(Bundle savedInstanceState) {
|
||
|
super.onCreate(savedInstanceState);
|
||
|
|
||
|
mDeviceId = getIntent().getStringExtra("deviceId");
|
||
|
|
||
|
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
|
||
|
intent.setType("*/*");
|
||
|
intent.addCategory(Intent.CATEGORY_OPENABLE);
|
||
|
try {
|
||
|
startActivityForResult(
|
||
|
Intent.createChooser(intent, getString(R.string.send_files)), Activity.RESULT_FIRST_USER);
|
||
|
} catch (android.content.ActivityNotFoundException ex) {
|
||
|
Toast.makeText(this, R.string.no_file_browser, Toast.LENGTH_SHORT).show();
|
||
|
finish();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
|
||
|
switch (requestCode) {
|
||
|
case Activity.RESULT_FIRST_USER:
|
||
|
if (resultCode == RESULT_OK) {
|
||
|
final Uri uri = data.getData();
|
||
|
Log.e("SendFileActivity", "File Uri: " + uri.toString());
|
||
|
BackgroundService.RunCommand(this, new BackgroundService.InstanceCallback() {
|
||
|
@Override
|
||
|
public void onServiceStart(BackgroundService service) {
|
||
|
Device device = service.getDevice(mDeviceId);
|
||
|
if (device == null) {
|
||
|
finish();
|
||
|
}
|
||
|
ArrayList<Uri> uris = new ArrayList<>();
|
||
|
uris.add(uri);
|
||
|
SharePlugin.queuedSendUriList(getApplicationContext(), device, uris);
|
||
|
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
finish();
|
||
|
break;
|
||
|
default:
|
||
|
super.onActivityResult(requestCode, resultCode, data);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|