1

Dropbox Sync API を使用してファイルをアップロードする Android アプリを開発しています。私はすでに Dropbox でアプリを作成しており、APP_KEY と APP_SECRET を取得しています。必要なライブラリをすべて含め、アクティビティ コードとマニフェストに適切なキーを設定しました。私のアプリは、ドキュメントで提供されている HelloDropbox サンプルに似ていますが、Dropbox 資格情報を入力する場所が表示されるはずの [Link to Dropbox] ボタンをクリックしても、何も起こりません。ソースコードは次のとおりです。

package com.diamondtrust66.helix.player;
import java.io.File;
import java.io.IOException;
import java.util.List;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;

import com.dropbox.client2.DropboxAPI;
import com.dropbox.sync.android.DbxAccountManager;
import com.dropbox.sync.android.DbxFile;
import com.dropbox.sync.android.DbxFileInfo;
import com.dropbox.sync.android.DbxFileSystem;
import com.dropbox.sync.android.DbxPath;

public class HelixPlayer extends Activity {

private static final String appKey = "1234-my-key";
private static final String appSecret = "1234-my-secret";

private static final int REQUEST_LINK_TO_DBX = 0;

private TextView mTestOutput;
private Button mLinkButton;
private DbxAccountManager mDbxAcctMgr;
private DropboxAPI<?> mDBApi;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_helix_player);
    mTestOutput = (TextView) findViewById(R.id.test_output);
    mLinkButton = (Button) findViewById(R.id.link_button);
    mLinkButton.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View v) {
            onClickLinkToDropbox();
        }
    });

    mDbxAcctMgr = DbxAccountManager.getInstance(getApplicationContext(), appKey, appSecret);
}

@Override
protected void onResume() {
    super.onResume();
    if (mDbxAcctMgr.hasLinkedAccount()) {
        showLinkedView();
        doDropboxTest();
    } else {
        showUnlinkedView();
    }
}

private void showLinkedView() {
    mLinkButton.setVisibility(View.GONE);
    mTestOutput.setVisibility(View.VISIBLE);
}

private void showUnlinkedView() {
    mLinkButton.setVisibility(View.VISIBLE);
    mTestOutput.setVisibility(View.GONE);
}

private void onClickLinkToDropbox() {
    mDbxAcctMgr.startLink((Activity)this, REQUEST_LINK_TO_DBX);
}

@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
    if (requestCode == REQUEST_LINK_TO_DBX) {
        if (resultCode == Activity.RESULT_OK) {
            doDropboxTest();
        } else {
            Toast.makeText(getApplicationContext(), "FAILURE", Toast.LENGTH_LONG).show();
            mTestOutput.setText("Link to Dropbox failed or was cancelled.");
        }
    } else {
        super.onActivityResult(requestCode, resultCode, data);
    }
}

private void doDropboxTest() {
    try {
        final String TEST_DATA = "Hello Dropbox";
        final String TEST_FILE_NAME = "be like that.mp3";
        DbxPath testPath = new DbxPath(DbxPath.ROOT, TEST_FILE_NAME);

        // Create DbxFileSystem for synchronized file access.
        DbxFileSystem dbxFs = DbxFileSystem.forAccount(mDbxAcctMgr.getLinkedAccount());





        // Print the contents of the root folder.  This will block until we can
        // sync metadata the first time.
        List<DbxFileInfo> infos = dbxFs.listFolder(DbxPath.ROOT);
        mTestOutput.setText("\nContents of app folder:\n");
        for (DbxFileInfo info : infos) {
            mTestOutput.append("    " + info.path + ", " + info.modifiedTime + '\n');
        }

        // Create a test file only if it doesn't already exist.
        if (!dbxFs.exists(testPath)) {
            DbxFile testFile = dbxFs.create(testPath);
            try {

                File myFile = new File("/mnt/sdcard/alarms/be like that.mp3");
                //testFile.writeString(TEST_DATA);
                testFile.writeFromExistingFile(myFile, false);
            } finally {
                testFile.close();
            }
            mTestOutput.append("\nCreated new file '" + testPath + "'.\n");
        }

        // Read and print the contents of test file.  Since we're not making
        // any attempt to wait for the latest version, this may print an
        // older cached version.  Use getSyncStatus() and/or a listener to
        // check for a new version.
        /*if (dbxFs.isFile(testPath)) {
            String resultData;
            DbxFile testFile = dbxFs.open(testPath);
            try {
                resultData = testFile.readString();
            } finally {
                testFile.close();
            }
            mTestOutput.append("\nRead file '" + testPath + "' and got data:\n    " + resultData);
        } else if (dbxFs.isFolder(testPath)) {
            mTestOutput.append("'" + testPath.toString() + "' is a folder.\n");
        }*/
    } catch (IOException e) {
        mTestOutput.setText("Dropbox test failed: " + e);
    }
}

}

4

2 に答える 2

0

同じ問題に遭遇しました.startLink()は、デバイスにインストールされている別のAndroidアプリで使用していたのと同じドロップボックスアプリの資格情報を使用しようとしたときに何もしませんでしたが(実行されていませんでしたが)、機能しませんでした. したがって、2 つのオプションがあります。同じ資格情報を使用して他の Android アプリをアンインストールするか、別のドロップボックス アプリを作成してアプリ/パス キーのセットを更新します。その後、Dropbox ログイン ダイアログが表示されます。

于 2014-06-12T19:19:41.507 に答える