3

我正在开发一个应用程序,我需要在其中创建相册并将它们显示在 GridView 中。现在我只是在没有任何背景的情况下显示它们,但我需要专辑封面的背景,以便它看起来像一堆照片。背景是这样的:

在此处输入图像描述

我试过了,但没有奏效:

首先,我创建了一个这样的背景:

<shape xmlns:android="http://schemas.android.com/apk/res/android" >

    <solid android:color="#FFFFFF" />

    <stroke
        android:width="1dp"
        android:color="#000000" />

    <padding
        android:bottom="1dp"
        android:left="1dp"
        android:right="1dp"
        android:top="1dp" />

</shape>

然后我使用一个图层列表来绘制带有旋转的堆栈:

<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >

    <rotate
        android:drawable="@drawable/thumb_bg"
        android:fromDegrees="90"
        android:pivotX="50%"
        android:pivotY="50%"
        android:toDegrees="100" />
    <rotate
        android:drawable="@drawable/thumb_bg"
        android:fromDegrees="90"
        android:pivotX="50%"
        android:pivotY="50%"
        android:toDegrees="110" />
    <rotate
        android:drawable="@drawable/thumb_bg"
        android:fromDegrees="90"
        android:pivotX="50%"
        android:pivotY="50%"
        android:toDegrees="120" />

</layer-list>
4

2 回答 2

0

我使用位图来创建堆栈视图并将其显示在图像视图中。您可以基于此将位图保存为资源,然后将其添加到 gridview 中,或者在我认为的 getView 中的 gridview 适配器中使用它。

在此处输入图像描述

Bitmap m1c = BitmapFactory.decodeResource(getResources(), R.drawable.cat_13);
Bitmap m2c = BitmapFactory.decodeResource(getResources(), R.drawable.cat_13);


int w = m1c.getWidth();
int h = m1c.getHeight();

Matrix mtx = new Matrix();
mtx.postRotate(4);
Bitmap rotatedBMP = Bitmap.createBitmap(m1c, 0, 0, w, h, mtx, true);

Matrix mtx2 = new Matrix();
mtx2.postRotate(-4);

Bitmap rotatedBMP2 = Bitmap.createBitmap(m1c, 0, 0, w, h, mtx2, true);


Canvas comboImage = new Canvas(rotatedBMP);
comboImage.drawBitmap(rotatedBMP2, -10 , -10 , null);
comboImage.drawBitmap(m2c, 10 , 10 , null);

ImageView image = (ImageView) findViewById(R.id.imageView1);
image.setImageBitmap(rotatedBMP);
于 2013-07-12T07:56:38.293 回答
0

将您的相册拇指放在虚拟图像上(其中包含 2 或 3 张 diff allign 图像)。

于 2013-02-06T11:17:08.910 回答