0

我是 Android 开发新手

我目前正在测试这里找到的 android 覆盖流:http ://code.google.com/p/android-coverflow/

我在我的项目中成功实现了它,但是我找不到给小部件所需的宽度和高度的方法

我的布局:

<view
    xmlns:coverflow="http://schemas.android.com/apk/res/com.accessdev.myapp"
    android:id="@+id/coverflow"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_marginTop="5dip"
    class="pl.polidea.coverflow.CoverFlow"
    coverflow:imageHeight="150dip"  
    coverflow:imageWidth="100dip" >
</view>

更改 coverflow:imageHeight 和 coverflow:imageWidth 仅影响图像的大小,但小部件不会填充高度的布局(它就像屏幕的 10%,我还没有设法更改它)

4

1 回答 1

1

正如你在方法setAdapter中的类Coverflow中看到的那样,适配器的宽度和高度设置为imageWidth/imageHeight,所以修改parseAttributes方法中两个变量的值。

编辑:我想你可以修改 AbstractCoverflowAdapter 来膨胀一个包含宽度/高度设置为 fill_parent 的 ImageView 的 xml。那应该工作:D

对于 XML:

<?xml version="1.0" encoding="utf-8"?>
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/image"
    android:layout_width="200dip"
    android:layout_height="400dip"
    android:src="@drawable/ic_launcher" />

在适配器的 getView() 中:

        LayoutInflater inflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        row = inflater.inflate(R.layout.your_layout, parent, false);
        ImageView image = (ImageView) row.findViewById(R.id.image);
        image.setImageBitmap(your_bitmap);
于 2012-06-19T09:10:44.683 回答