自定義簡單的progressbar 加載提示框

<RelativeLayout
    android:id="@+id/loading_ind"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/compListEmptyViewPaddingTop"
    android:gravity="center" >

    <ProgressBar
        android:id="@+id/progressbar"
        style="@android:style/Widget.ProgressBar.Small.Inverse"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:fadingEdge="none" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_marginLeft="13px"
        android:layout_toRightOf="@+id/progressbar"
        android:text="@string/cpt_loading"
        android:textColor="#FFFFFF" />
</RelativeLayout>

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章