来自View的ImageView setImageBitmap()

时间:2016-03-16 23:45:28

标签: android imageview android-canvas android-view android-bitmap

我正在做一些实验,我试图做这样的事情:

public class MyActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        MyImageView view = new MyImageView(this);
        setContentView(view);
    }
}


public class MyImageView extends ImageView {

    public MyImageView(Context context) {
        super(context);
        View view = View.inflate(context, R.layout.my_view, null);
        ((TextView) view.findViewById(R.id.view_label)).setText(...);

        Bitmap bitmap = Bitmap.createBitmap(50, 50, Bitmap.Config.ARGB_8888);
        Canvas c = new Canvas(bitmap);
        view.draw(c);

        setImageBitmap(bitmap);
    }
}

我的R.layout.my_view布局文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              xmlns:tools="http://schemas.android.com/tools"
              android:layout_width="30dp"
              android:layout_height="30dp"
              android:background="@drawable/blue_spot"
              android:gravity="center">

    <TextView
            tools:text="99"
            android:id="@+id/view_label"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textColor="@android:color/white"
            android:textStyle="bold"/>
</LinearLayout>

我的形状:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
       android:shape="oval">
    <corners android:radius="10dp"/>
    <solid android:color="#5AB7FF"/>
</shape>

我得到一个空白的空白屏幕......任何想法为什么?
我正在做所有这些变通办法,因为后来我想使用myImageView.setImageMatrix() 感谢。

1 个答案:

答案 0 :(得分:1)

好的,我遇到了问题。它没有绘制任何内容,因为该视图尚未呈现。我需要的是一种渲染此视图而不绘制它(在画布中)然后将该视图绘制到位图的方法。这可以通过以下方式实现:

view.setDrawingCacheEnabled(true);
view.measure(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
view.layout(0, 0, view.getMeasuredWidth(), view.getMeasuredHeight());
view.buildDrawingCache(true);
Bitmap bitmap = Bitmap.createBitmap(view.getDrawingCache());
view.setDrawingCacheEnabled(false);

现在我只需做一些调整,但我已经得到了它 感谢。