如何将图像添加到android studio中的空白活动?

时间:2014-10-27 14:23:26

标签: android android-layout android-studio android-drawable

我希望你很好。

首先,如果这似乎是一个愚蠢的问题,请道歉,但有人可以解释一下我是如何在android studio中为空白活动添加图像的?

我使用的是API版本19,并在新项目中创建了一个空白活动。我有一个我想用PNG格式的图像,它有一个透明的背景。

谢谢,

2 个答案:

答案 0 :(得分:1)

http://developer.android.com/reference/android/widget/ImageView.html

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="match_parent"
    android:layout_width="match_parent">

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:src="@drawable/img_swoosh_image" />
</RelativeLayout>

您可能希望使用LinearLayout或FrameLayout,具体取决于您想要显示的内容。

答案 1 :(得分:0)

1)使用可在设计选项卡中访问的ImageView

2)将图像粘贴(例如&#34; xyz.png&#34;)到项目的drawable文件夹

3)稍后在ImageView的属性部分中,在src属性中作为&#34; @ drawable / xyz.png&#34;

4)一切顺利!希望它有所帮助。