我正在构建一个浏览器,我在WebView上有一个地址栏(如EditText).我想要做的是在EditText的背景中以图形方式显示页面的加载,就像在iPhone的浏览器中一样.这可能吗?
谢谢
UPDATE
到目前为止,我已经尝试过ClipDrawable方法.我做的是采取股票drawable android.R.drawable.editBox_background并创建2个版本 – 白色背景和蓝色背景(以显示进度).然后我会像这样创建一个LayerDrawable:
barDrawable = addressBar.getBackground(); Drawable progress = getResources().getDrawable(R.drawable.editBox_progress); cbarDrawable = new ClipDrawable(progress,Gravity.LEFT,ClipDrawable.HORIZONTAL); cbarDrawable.setLevel(0); layerlist = new LayerDrawable(new Drawable[] { barDrawable,cbarDrawable }); addressBar.setBackgroundDrawable(layerlist);
然后我会在加载过程中调用setLevel.现在的问题是存在一些奇怪的问题,例如:白色可绘制太大或者移动到顶部.
你怎么看?
解决方法
看一下
this link,它讨论了重写ProgressBar的onDraw()方法并在其上绘制文本.这应该至少让你开始.