什么是android中的等效组件,如iphone中的uiindicator

时间:2010-11-30 05:56:13

标签: iphone android

任何人都可以告诉android中的等效组件,如iphone中的uiindicator给出的例子

由于

1 个答案:

答案 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>