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
-Fragment
今これを試しています)