0

我只是扩展了 ImageView,所以图像变成全宽。像这样:..

public class BannerImageView extends ImageView {

    public BannerImageView(Context context) {
        super(context);
    }

    public BannerImageView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public BannerImageView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        int width = MeasureSpec.getSize(widthMeasureSpec);
        int height = width * getDrawable().getIntrinsicHeight() / getDrawable().getIntrinsicWidth();
        setMeasuredDimension(width, height);
    }
}

在 XML 中,我将其声明如下:

<com.whatever.next.BannerImageView
      android:id="@+id/banner"
      android:src="@+drawable/logo"
      android:layout_width="fill_parent"
      android:layout_height="wrap_content" />

我收到以下错误:

main.xml:无法解析属性“src”中的可绘制“com.android.layoutlib.bridge.ResourceValue@48537a0f”

然后我得到预期的空指针异常。

我很困惑,因为我没有改变它会在图形布局中显示的 ImageView 的默认行为。我已经阅读了其他类似的问题,这让我更加困惑。

作为记录,上面的代码在实际设备上运行良好。

任何帮助表示赞赏!

4

1 回答 1

0

代替

android:src="@+drawable/logo"

采用

android:src="@drawable/logo"

没有属性+_src

于 2011-12-16T23:17:48.550 回答