如何在android studio的活动中插入图像?

时间:2015-01-23 15:44:38

标签: android image android-layout

我是Android开发的新手,只阅读并完成了android开发网站的第一个指南。我遇到的问题是我无法在活动中放置图片。我在drawables文件夹中有图片。我只是不知道如何在屏幕上显示它。任何帮助表示赞赏。

3 个答案:

答案 0 :(得分:17)

因为你按照教程,我假设你有一个显示Hello World的屏幕。

这意味着你的布局xml中有一些看起来像这样的代码

<TextView        
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/hello_world" />

您想要显示图像,因此您需要使用ImageView而不是TextView。而不是你想要一个src属性的文本属性,它链接到你的drawable资源

<ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:src="@drawable/cool_pic"
/>

答案 1 :(得分:0)

当您将图像放入可绘制的图库时,只需选择图像视图选择选项,然后将其拖入要显示的应用活动中,然后选择所需的图像即可。

答案 2 :(得分:0)

复制要在android应用中显示的图像,然后粘贴到drawable文件夹中。给出以下代码

<ImageView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:src="@drawable/image"
 />