如何创建和绘制在从 View 扩展的类中创建的进度条
我想知道是否可以创建一个在从类 View 扩展的类中创建的进度条?
我的目的是在我的动画中添加一个进度条,使用“在视图上”结构在 android 中创建动画:
http://developer.android.com/guide/topics/graphics/index.html
我在视图类中尝试了以下方法,但没有出现。
public class CustomDrawableView extends View {
private ProgressBar mProgress;
public CustomDrawableView(Context context) {
super(context);
mProgress = new ProgressBar(context, null, android.R.attr.progressBarStyleSmall);
}
protected void onDraw(Canvas canvas) {
mProgress.draw(canvas);
}
}
有什么建议吗?
问候
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个
带有触摸事件的画布中的图像
try this
Image in Canvas with touch events