我正在尝试将我的 ProgressBar 放在 TableLayout 的顶部。
代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:baselineAligned="false"
android:orientation="vertical" >
<ProgressBar
android:id="@+id/bar_Update"
style="?android:attr/progressBarStyleLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="250dp"
android:visibility="visible" />
<ScrollView
android:id="@+id/ScrollView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TableLayout
android:id="@+id/tableLayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:shrinkColumns="*"
android:stretchColumns="*"
android:gravity="center_horizontal"
android:layout_gravity="top">
<TableRow
android:id="@+id/RowTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:id="@+id/Title"
android:layout_width="fill_parent"
android:layout_height="60px"
android:gravity="center"
android:text="Unterichtsausfall: \n"
android:textSize="20dp"
android:textStyle="bold"
android:typeface="serif" >
</TextView>
<ImageView
android:id="@+id/imgUpdate"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="false"
android:baselineAlignBottom="false"
android:clickable="true"
android:src="@drawable/refresh" />
</TableRow>
</TableLayout>
</ScrollView>
</LinearLayout>
我setVisibility(View.VISIBLE)
在我的代码中使用以在布局顶部显示进度条,但它不起作用。为了显示它消失了,我正在使用setVisibility(View.INVISIBLE)
. 我究竟做错了什么?我的目标是从互联网上获取数据。在此期间,微调器正在显示。一旦获取数据,它就会显示在表格中,并且 Spinner 消失了。
谢谢!