我有一个 FrameLayout,里面有一个GridView
. 然后我需要在加载之后在底部的网格视图之后添加一个进度条GridView
,但是进度条是在GridView
. 下面是我的代码。
我正在使用TabHost
其中包含选项卡(3)的选项卡小部件,FrameLayout
如下GridView
所示:
<
FrameLayout android:id="@android:id/tabcontent" android:layout_width="fill_parent" android:layout_height="fill_parent"
android:layout_below="@+id/EmptyFonesLayout" >
<GridView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/gridview" android:layout_width="fill_parent" android:layout_height="wrap_content" android:verticalSpacing="4dp" android:horizontalSpacing="4dp" android:numColumns="auto_fit" android:columnWidth="90dp" android:stretchMode="columnWidth" android:gravity="center_horizontal"
android:textFilterEnabled="true" android:background="#00ffff"/>
<RelativeLayout
android:id="@+id/linlaProgressBar"
android:layout_width="fill_parent"
android:layout_height="20dp"
android:orientation="horizontal"
android:layout_gravity="bottom"
android:gravity="center"
android:background="#00FFFF"
android:visibility="gone"
android:layout_alignParentBottom="true">
<!-- android:layout_below="@+id/gridview" -->
<ProgressBar
style="?android:attr/progressBarStyleSmall"
android:layout_width="20dp"
android:layout_height="20dp"/>
<TextView
android:id="@+id/emptyfonetext"
android:text="Loading"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="10dp"
android:paddingRight="15dp"
android:textSize="16dp"/>
</RelativeLayout> -->
</FrameLayout>