1

私が抱えている以下の問題の解決策を探しましたが、何も見つかりませんでした。アプリには、定義済みのドローアブルを持つ ImageButton があります。私がいたのは、ユーザーがこの ImageButton をクリックし、電話の画像ギャラリーから画像を選択して、ユーザーが再度変更するまでその画像を表示する機能です。これまでのところ、ImageGallery を表示して写真を選択することができましたが、次のことはできません。

1. Show the Picture from the Picture Gallery in the shape of the original drawable -- it is a circle
2. When I change activity and come back to this activity, the picture chosen is not there anymore.

私のコードは次のようになります: ImageButton の XML は LinearLayout 内にあります。

        <ImageButton 
            android:id="@+id/AddPic"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="0.4"
            android:background="#00FFFFFF"
            android:contentDescription="@string/MyInformation"
            android:gravity="left"
            android:onClick="AddPic"
            android:src="@drawable/dp_holder_large" 
            />

私のJavaコードは次のようになります:

    public class MyInformation extends Activity{

    ImageButton imgButton;   
    public static int RESULT_LOAD_IMAGE = 1;

   @Override  
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.myinformation);


        //Adding the picture bit   

        imgButton = (ImageButton) findViewById(R.id.AddPic);
        imgButton.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                Intent GaleryIntent = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
                startActivityForResult(GaleryIntent, RESULT_LOAD_IMAGE);
            }
        });
    }
    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {

        super.onActivityResult(requestCode, resultCode, data);
        if (requestCode == RESULT_LOAD_IMAGE && resultCode == RESULT_OK && null != data) {
            Uri SelectedImage = data.getData();
            String[] FilePathColumn = {MediaStore.Images.Media.DATA };

            Cursor SelectedCursor = getContentResolver().query(SelectedImage, FilePathColumn, null, null, null);
            SelectedCursor.moveToFirst();

            int columnIndex = SelectedCursor.getColumnIndex(FilePathColumn[0]);
            String picturePath = SelectedCursor.getString(columnIndex);
            SelectedCursor.close();

          //  Drawable d = new BitmapDrawable(getResources(),BitmapFactory.decodeFile(picturePath)); 
           // btnOpenGalery .setImageBitmap(d);
            imgButton.setImageBitmap(BitmapFactory.decodeFile(picturePath));
            Toast.makeText(getApplicationContext(), picturePath, Toast.LENGTH_SHORT).show();

        }

    }   

     @Override
     public boolean onCreateOptionsMenu(Menu menu) {
         // Inflate the menu; this adds items to the action bar if it is present.
         getMenuInflater().inflate(R.menu.main, menu);
         return true;
     }

}

ありがとう!

4

1 に答える 1