单击按钮选择图像显示图像到ImageView

时间:2018-05-27 17:33:44

标签: android android-layout

我的应用程序包含5个按钮((2)取消按钮),((2)浏览按钮)和“下一步”按钮,用于移动到下一个活动,(2)图像视图。 所以我需要实现的是当点击浏览,从图库中选择图像而不是在图像视图上显示它时,按下取消按钮,从图像视图中取消图像。

相同的花药浏览按钮,单击,从库中选择图像,显示在第二个图像视图,按下取消按钮,从第二个图像视图中删除图像。

单击“下一步”按钮时,将当前“活动”中的2个图像传递给“下一个活动”。请帮忙。

Attachment_class.java

public class Attachment_class extends AppCompatActivity {

ImageView img_One;
Button btn_Browse_Image_One;
Button btn_Cancel_Image_One;

ImageView img_Two;
Button btn_Browse_Image_Two;
Button btn_Cancel_Image_Two;

Button Next;

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

    img_One = (ImageView) findViewById(R.id.ImgView_One);
    btn_Browse_Image_One = (Button) findViewById(R.id.Broswe_image_one);
    btn_Cancel_Image_One = (Button) findViewById(R.id.Cancel_ImgView_One);


    img_Two = (ImageView) findViewById(R.id.ImgView_Two);
    btn_Browse_Image_Two = (Button) findViewById(R.id.Broswe_image_two);
    btn_Cancel_Image_Two = (Button) findViewById(R.id.Cancel_ImgView_Two);

    Next = (Button) findViewById(R.id.Next_Attch_Btn);

}}

1 个答案:

答案 0 :(得分:0)

Uri myUri = Uri.parse(intent.getString("imageUri"));

并以另一项活动接收意图

for (let i = 0; i <= 8; i++) {
    console.log(i);
    if (i % 2) {
        console.log('\n');
    }
}

类似地实现第二个按钮。我希望这有帮助。