I am loading a textview value and and image view at runtime using asychtask and it takes time and I don’t want to show the progressDialog on the whole screen. Instead I want a small progress bar in the place of textview and image view. How can I achieve the same. Is it possible??
In some apps I have seen the same.
Thanks
This is what you can do. ProgressBar can be added as view in the layout so just add this as view on top of your image view and text view (Using say FrameLayout) and once you have the data you can set the visibility of the
ProgressViewtoINVISIBLEorGONE.The javadoc page of
ProgressBaralso has code sample that you can use use.