-1

アプリに、ボタンを押すと、ユーザーが電話の組み込みギャラリー アプリに移動するボタンが必要です。可能であれば、アプリが作成するディレクトリにユーザーを連れて行ってほしいです。Androidでこれを行う方法はありますか? ギャラリーに入った後にアプリが終了しても問題ありません。

4

2 に答える 2

0

このコードを試してみてください...!

ボタン btn = (ボタン) findViewById(R.id.btn);

btn.setOnClickListener(new OnClickListener()
{
    @Override
    public void onClick(View v) {
        // TODO Auto-generated method stub

        Intent intent = new Intent();
        intent.setType("image/*");
        intent.setAction(Intent.ACTION_GET_CONTENT);
        startActivityForResult(Intent.createChooser(intent, "Picture"), 0);

    }
}); 
于 2013-07-26T04:54:08.080 に答える
0

Androidでdefalut Galleryを使用するインテントを使用できます。コードは次のとおりです-

ボタン GalleryButton=(ボタン)this.findViewById(R.id.galleryview); GalleryButton.setOnClickListener(new OnClickListener() {

    public void onClick(View arg0) {

        // in onCreate or any event where your want the user to
        // select a file
        Intent intent = new Intent();
        intent.setType("image/*");
        intent.setAction(Intent.ACTION_GET_CONTENT);
        startActivityForResult(Intent.createChooser(intent,
                "Select Picture"), SELECT_PICTURE);
    }
});

}

public void onActivityResult(int requestCode, int resultCode, Intent data) {
        if (resultCode == RESULT_OK) {
            if (requestCode == SELECT_PICTURE) {
                Uri selectedImageUri = data.getData();
                filemanagerstring = selectedImageUri.getPath();
                selectedImagePath = getPath(selectedImageUri);

                if(selectedImagePath!=null)
                    System.out.println(selectedImagePath);
                else System.out.println("selectedImagePath is null");
                if(filemanagerstring!=null)
                    System.out.println(filemanagerstring);
                else System.out.println("filemanagerstring is null");

                if(selectedImagePath!=null)
                    System.out.println("selectedImagePath is the right one for you!");
                else
                    System.out.println("filemanagerstring is the right one for you!");
            }
        }
    }

    public String getPath(Uri uri) {
        String[] projection = { MediaStore.Images.Media.DATA };
        Cursor cursor = managedQuery(uri, projection, null, null, null);
        if(cursor!=null)
        {
            int column_index = cursor
            .getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
            cursor.moveToFirst();
            return cursor.getString(column_index);
        }
        else return null;
    }
于 2013-07-26T05:15:18.503 に答える