-1

どこかから画像を取得してレイヤーを重ねるかどうか疑問に思っています。

例えば:

Facebook のプロフィール写真を含むこの Drawable オブジェクトがあります。少し大きい別の Drawable オブジェクトがあり、プロフィール写真のフレームになるはずです。これら 2 つのレイヤーを 1 つの 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 に答える