我正在尝试创建Canvas
,在其上绘制内容,然后在View
上显示。我的代码运行时没有错误,但Canvas
没有显示。我只看到一个空白的黑色屏幕。
我知道还有其他方法可以做这个例子,但我实际上要做的是在Canvas
上绘制一些东西,显示它,在Canvas
上绘制更多内容,展示它等等....
我是Android新手。我试过看,但是没有找到任何简单的解决方案[对我来说很简单:)]
MainActivity.java
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//Get screen size. THIS WORKS; when I log the output it's correct.
Display display = getWindowManager().getDefaultDisplay();
Point size = new Point();
display.getSize(size);
//Create Canvas.
Bitmap bmp = Bitmap.createBitmap(size.x, size.y, Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(bmp);
/*
I know the Canvas is created, because when I call
canvas.getWidth() and canvas.getHeight()
I get the correct pixel size of the device; i.e.
(same as size.x and size.y respectively).
*/
canvas.drawColor(Color.WHITE);
//Draw other stuff on the canvas.
View v = findViewById(R.id.view);
v.draw(canvas);
/*
I know v is working because when I call
v.setBackgroundColor(Color.RED);
The whole screen is red.
*/
}
}
activity_main.xml中
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="${relativePackage}.${activityClass}" >
<View
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/view" />
</RelativeLayout>
我不知道这是否必要,但以防万一:
的AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="main.stupidbird"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="17"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" android:persistent="true">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:screenOrientation="landscape" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
答案 0 :(得分:0)
你的做法是错误的。
我相信你的目的是扩展View并在onDraw()中进行绘制。
https://developer.android.com/training/custom-views/custom-drawing.html
如果它不是,你真的只是想绘制一个图像,为什么不把画布绘制的位图放到一个imageview中?
最后,你可以去这里,看到一个类似的问题回答你真的想这样做。