任何人都可以告诉android中的等效组件,如iphone中的uiindicator给出的例子
由于
答案 0 :(得分:1)
在活动java类中:
protected void startProgress() {
ProgressBar pbSpinner = (ProgressBar)findViewById(R.id.activity_progress_bar);
pbSpinner.setVisibility(View.VISIBLE);
}
protected void stopProgress() {
ProgressBar pbSpinner = (ProgressBar)findViewById(R.id.activity_progress_bar);
pbSpinner.setVisibility(View.INVISIBLE);
}
在布局xml文件中,您可以添加进度条:
<ProgressBar android:id="@+id/activity_progress_bar"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:layout_centerHorizontal="true" android:layout_centerVertical="true">
</ProgressBar>