We don’t allow questions seeking recommendations for software libraries, tutorials, tools, books, or other off-site resources. You can edit the question so it can be answered with facts and citations.
Closed 9 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
通过本教程,我学到了很多关于如何创建绘图应用程序的知识。我相信这会有所帮助:
http: //mobile.tutsplus.com/tutorials/android/android-sdk-create-a-drawing-app-interface-creation/
I learned a lot following this tutorial, on how to create a drawing app. I believe it will help:
http://mobile.tutsplus.com/tutorials/android/android-sdk-create-a-drawing-app-interface-creation/
http://www.droidnova.com/playing -with-graphics-in-android-part-ii,160.html
http://www.devdaily.com/java/jwarehouse/android/core/java/android/view/SurfaceView.java.shtml
这些可能会有所帮助...
我想你可以尝试使用 android sdk 中的 Paint 类来做到这一点。
可以做类似的事情:
Paint mypaint = new Paint();
画布 c = new Canvas();
c.drawLine(10,10,20,20,mypaint);
http://www.droidnova.com/playing-with-graphics-in-android-part-ii,160.html
http://www.devdaily.com/java/jwarehouse/android/core/java/android/view/SurfaceView.java.shtml
These might help...
I think you can try doing it by using Paint class in android sdk.
can do something like:
Paint mypaint = new Paint();
Canvas c = new Canvas();
c.drawLine(10,10,20,20,mypaint);
试试这些
http://www.droidnova.com/playing -with-graphics-in-android-part-ii,160.html
http://developer.android.com/guide/topics/graphics/index.html
try these
http://www.droidnova.com/playing-with-graphics-in-android-part-ii,160.html
http://developer.android.com/guide/topics/graphics/index.html