-1

我想知道我是否从某个地方获得图像并对其进行分层。

例如:

我有这个包含我的 Facebook 个人资料图片的 Drawable 对象。我有另一个更大的可绘制对象,它应该是我的个人资料图片的框架。如何以编程方式将这两层添加到一个 Drawable 对象?

框架:

框架 http://site.pelecode.co.il/profile/background.png

资料图片:

框架 http://site.pelecode.co.il/profile/profile.jpg

一起:

框架 http://site.pelecode.co.il/profile/together.png

4

1 回答 1

1

您可以执行以下操作

<ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:padding="5dip"
    android:background="@drawable/frame"
    android:src="@drawable/content" />

填充是你的框架

于 2012-04-12T19:44:24.183 回答