我正在尝试在所有按钮下的画布上绘制形状。
这是代码:
Paint paint = new Paint();
paint.setColor(R.color.Kolor);
View view;
LayoutInflater inflater = (LayoutInflater)
getSystemService(Context.LAYOUT_INFLATER_SERVICE);
view = inflater.inflate(R.layout.menu_glowne, null);
Canvas can = new Canvas(Bitmap.createBitmap(300, 300, Bitmap.Config.ARGB_8888));
can.drawRect(0, 0, 200, 200, paint);
setContentView(view);
view.draw(can);
不知道为什么我仍然得到下面没有任何内容的布局。
关于我在做什么错的任何想法吗?
提前感谢!
最佳答案
在您的示例中,您是在画布上而不是在视图的画布上绘制视图。
您应该使用一种简单的方法,不要膨胀您的布局,而是正常加载它,然后找到根容器并设置其背景。像这样:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Paint paint = new Paint();
paint.setColor(Color.MAGENTA);
Bitmap bgr = Bitmap.createBitmap(480, 800, Bitmap.Config.ARGB_8888);
Canvas can = new Canvas(bgr);
can.drawRect(50, 50, 200, 200, paint);
LinearLayout ll = (LinearLayout) findViewById(R.id.ll);
ll.setBackgroundDrawable(new BitmapDrawable(bgr));
}
主要布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/ll">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
</LinearLayout>
关于android - Android:在 View Canvas 上绘图不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7257678/