让 Eclipse 在图形 xml 视图上显示自定义组件

发布于 2024-12-21 13:10:18 字数 1253 浏览 1 评论 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 的默认行为,它将在图形布局中显示。我读过其他类似的问题,这让我更加困惑。

根据记录,上述代码在实际设备上运行良好。

任何帮助表示赞赏!

I have simply extended the ImageView so an image goes full width. Like so:..

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);
    }
}

In XML I have declared it as follows:

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

I receive the following errors:

main.xml: Unable to resolve drawable "com.android.layoutlib.bridge.ResourceValue@48537a0f" in attribute "src"

then I get the expected null pointer exceptions.

I am confused as I thought since I am not altering the default behaviour of the ImageView it would show in the graphical layout. I have read through the other similar questions and that confused me some more.

For the record the above code works fine on an actual device.

Any help is appreciated!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

双手揣兜 2024-12-28 13:10:18

而不是

android:src="@+drawable/logo"

使用No +

android:src="@drawable/logo"

src 属性

instead of

android:src="@+drawable/logo"

use

android:src="@drawable/logo"

No + for the src attribute

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文