我在RelativeLayout
(下面的代码)中有9张图像相互重叠。当我将标签(在Fragments
中使用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
的{{1}}中的图片 - 我现在正在尝试此操作)