我已經創建了一個android測驗應用程序,其中我從web服務加載所有問題。對於這種在onCreate方法我寫了下面的Android中的進度條問題
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.testlayoutforimage);
loadControls();
getPassingValue();
ParserMethod parserMethod=new ParserMethod();
//questionsObj=parserMethod.parseQuestionDetailsFor(passingFeature,numOfQuestion,passingSubject,passingChapter);
questionsObj=parserMethod.parseQuestionImages(passingSubject,passingFeature,passingChapter;
}
但問題是,當問題被加載它需要一定的時間。 我想添加一個進度條。當頁面被加載時,顯示進度並且問題是加載。之後,酒吧是刪除和顯示問題。我可以做到這一點。