RelativeLayout
我有 9 张图像在一个(下面的代码)中相互重叠。当我将选项卡(Fragments
在 a 中使用FragmentActivity
)更改为该特定选项卡时,会导致很多延迟。我假设这是因为图像在Tab
更改时重新加载,导致滞后?
这是布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="top|center_horizontal">
<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/idr021background"
android:id="@+id/background"/>
<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/idr021range"
android:id="@+id/range"/>
<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/idr021topography"
android:id="@+id/topography"/>
<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/idr021waterways"
android:id="@+id/waterways"/>
<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/idr021catchments"
android:id="@+id/catchments"/>
<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/idr021wthrdistricts"
android:id="@+id/wthrdistrics"/>
<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/idr021roads"
android:id="@+id/roads"/>
<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/idr021rail"
android:id="@+id/rail"/>
<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/idr021locations"
android:id="@+id/locations"/>
</RelativeLayout>
</LinearLayout>
有没有更好的方法来做到这一点,而不会造成滞后?(也许显示加载圈,然后更改为中onActivityCreated
的图像Fragment
- 我现在正在尝试)