从计算机添加图像到屏幕

时间:2014-04-23 14:59:11

标签: android

如何将计算机中的图像添加到应用程序的屏幕上?我是否必须将图像从我的电脑复制到某个地方的Android应用程序?然后参考一下? 我到目前为止:

<ImageView
    android:id="@+id/imageView1"
    android:layout_width="128dp"
    android:layout_height="236dp"
    android:layout_gravity="center"
    android:src="@drawable/abc_ab_bottom_solid_light_holo" />

但它不是我想要的。我猜我的照片参考需要去android:src="@drawable/abc_ab_bottom_solid_light_holo"但是怎么样?

2 个答案:

答案 0 :(得分:0)

只需将您的图像复制到您的Android应用程序项目的res / drawable-hdpi,res / drawable-mdpi,res / drawable-xdpi,res / drawable-ldpi中。 您甚至可以直接从文件资源管理器拖放到eclipse工作区。

答案 1 :(得分:0)

1 - 将您想要的照片拖到其中一个可绘制文件夹中:

2 - 在ImageView xml中,如果显示“abc_ab_bottom_solid_light_holo”,请将其替换为刚刚放入其中一个可绘制文件夹中的照片的名称。现在应该可以了。