我想通过android studio在我的应用程序中添加一些图像

时间:2017-06-04 17:24:08

标签: android android-studio-2.2

我想通过android studio在我的应用程序中添加一些图像。但是它不起作用,请帮助我如何添加更多图像。

设计了设计和XML屏幕截图。

请帮助我,

由于 弥若兹

截图: design xml code

3 个答案:

答案 0 :(得分:0)

您需要将线性布局更改为相对布局,以实现您的目标。

答案 1 :(得分:0)

您可以将布局类型更改为线性布局相对布局和" YES"您可以在父母身份中设置值,如下所示: -

ImageView image_view = (ImageView) findViewById(R.id.image_view);
calulate(image_view);



private void calulate(View v) 
{
    int imgWidth = this.getResources().getDisplayMetrics().widthPixels;
    int imgHeight = this.getResources().getDisplayMetrics().heightPixels;
    v.getLayoutParams().height = (int) (0.25*imgHeight);//You can change 0.25 with your value
    v.getLayoutParams().width = (int) (0.25*imgWidth);
}

答案 2 :(得分:0)

在xml中以这种方式添加Src来设置图像,以根据其分辨率将图像添加到drawable或mipmap文件夹中。

<ImageView android:layout_height="wrap_content"
android:layout_width="wrap_content" android:src="@mipmap/ic_launcher"/>