我正在尝试在所有按钮下的画布上绘制一个形状。 这是代码:
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);
不知道为什么我仍然在没有任何东西的情况下获得布局。 关于我做错了什么想法?
提前Thanx!
答案 0 :(得分:0)
你没有在android中绘制这种方式。一切都通过方法覆盖(onDraw)发生。按照本教程开始: http://www.helloandroid.com/tutorials/how-use-canvas-your-android-apps-part-1
此致 斯特凡
答案 1 :(得分:0)
在您的示例中,您将在画布上而不是在视图的画布上绘制视图。 您应该使用一种简单的方法,不要夸大您的布局,而是正常加载它,然后找到根容器并设置其背景。像这样:
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>