3

我是 Android 应用程序开发的新手,我想创建一个应用程序,我可以在其中为图库中的图像添加边框或框架。我搜索了一些博客,但没有得到答案。

我想像这样创建 https://play.google.com/store/apps/details?id=com.tndev.loveframes&hl=en

谁能告诉我有关如何执行该应用程序的想法或任何概念?

4

2 回答 2

8

以编程方式:

ImageView i = new ImageView(mContext);
Drawable d = null;
i.setImageDrawable(d);
        i.setAdjustViewBounds(true);
        i.setScaleType(ScaleType.CENTER_INSIDE);
        i.setBackgroundColor(Color.WHITE); //providing color to the background. 
        i.setPadding(3,3,3,3);//providing padding to the image.
        i.setLayoutParams(new Gallery.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));

要将一个图像覆盖在另一个图像上,请使用 Canvas 类并检查以下链接: Android: How to overlay-a-bitmap/draw-over a bitmap?

于 2013-02-18T06:56:33.433 回答
0

方法1。如果你想要边框,你可以把你的imageView放在一个布局中。

然后为布局设置背景颜色

为布局提供填充,以便图像和布局有空间(可以看到背景颜色)

方法2。您可以使用相对布局并将图像(第一个图像视图)放在边框(第二个图像视图)上。为此,边界应具有精确的大小。

样本布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<!-- Bottom layer -->
<ImageView 
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:src="bkgrnd"/>
<!-- Middle layer -->
<ImageView 
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:src="your_pic"/>
<!-- Top Layer -->
<ImageView 
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:src="ribbon_pic"/>

于 2013-02-18T06:37:55.013 回答