2

我有一个FrameLayout如下(两个 android:src 属性都引用文件/res/drawable夹中的 .png 文件):

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/frameLayout1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" >

    <ImageView
        android:id="@+id/ivFrame"
        android:adjustViewBounds="true"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/frame" />

    <ImageView
        android:id="@+id/ivContent"
        android:adjustViewBounds="true"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/content" />

</FrameLayout>

现在,我需要对第二个ImageView(指的是@drawable/content)进行一些调试。为此,我创建了一个自定义 BitmapDrawable,如下所示:

public class CustomDrawable extends BitmapDrawable {


    public CustomDrawable(Resources res, Bitmap bitmap) {
        super(res, bitmap);
        // TODO Auto-generated constructor stub
    }

    public CustomDrawable(Resources res, InputStream is) {
        super(res, is);
        // TODO Auto-generated constructor stub
    }

    public CustomDrawable(Resources res, String filepath) {
        super(res, filepath);
        // TODO Auto-generated constructor stub
    }

    public CustomDrawable(Resources res) {
        super(res);
        // TODO Auto-generated constructor stub
    }

    @Override
    protected void onBoundsChange(Rect bounds) {
        Log.d(Constants.LOG_TAG,"CustomDrawable.onBoundsChanged: "+bounds);
        super.onBoundsChange(bounds);
    }

}

问题:

  1. 如何CustomDrawable在 XML 中指定我的(并告诉它使用@drawable/content
  2. 然后我如何告诉ImageView布局 XML 指向我的CustomDrawable
4

1 回答 1

2

你不能做 xml 文件,但你可以在代码中做:

((ImageView) findViewById(R.id.ivContent)).setImageDrawable(new CustomDrawable(...))
于 2012-02-13T12:38:26.210 回答