1

私は約 3000 行の xml レイアウトを持っています。これは、アンケート タイプのアプリのレイアウトとして機能します。View.GONEアンケートの各ページは異なるリニア レイアウト内にあり、またはを使用してコードでリニア レイアウトの可視性を設定しますView.VISIBLEintentsこのようにして、ユーザーは毎回新しいページをロードすることなくページをナビゲートできます。

ただし、アプリをすばやく移動すると (画面を移動するために buttonを押すだけです)、本来あるべき要素の一部が表示され、 VISIBLEアイテムView.GONEに重なって表示されます。これは、内部にリスト ビューがある線形レイアウトでのみ発生します。他のすべてのページ。

それらをすばやくスクロールできますが、View.GONE移動が速すぎると、要素にリストビューがあるものだけが表示されることがあります。どうすればこれを修正できますか? コードが必要な場合はお知らせください...ただし、xml は非常に大きいです。

ティア

編集

これは私の xml コードのサンプルです。xml には 3000 行の繰り返しがあります...

  <LinearLayout
android:id="@+id/package_normal_samplesblood"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

    <LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_marginBottom="70dp"
    android:orientation="vertical">

        <TextView
            android:id="@+id/textview_heading_b1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="23sp"
            android:layout_marginLeft="13dp"
            android:layout_marginRight="10dp"
            android:layout_marginTop="12dp"
            android:layout_marginBottom="12dp"
            android:textColor="#6f6f6f"
            android:layout_gravity="left"
            android:text="Blood Samples"/>

    <Button
    android:id="@+id/button_samples_blood"
    android:text="Add Blood Samples"
    android:layout_width="fill_parent"
    android:layout_height="65dp"
    android:textSize="20sp"
    android:layout_gravity="center"
    android:layout_marginTop="5dp"
    android:layout_marginBottom="5dp"
    android:layout_marginLeft="10dp"
    android:layout_marginRight="10dp"/>

    <ListView
    android:id="@+id/listview_samples_blood"
    android:scrollbarSize="0dp"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#ffffff"
    android:orientation="vertical"
    /> 
        </LinearLayout>
       <RelativeLayout
android:orientation="horizontal"
android:background="#ffffff"
android:layout_width="fill_parent"
android:layout_height="75dp"
android:layout_marginTop="-75dp"

>
        <View
    android:layout_width="fill_parent"
    android:layout_alignParentTop="true"
    android:layout_height="1dp"
    android:background="#DEDEDE"
    android:layout_marginTop="2dp"/>
<ImageButton
            android:id="@+id/left9"
            android:background="@null"
            android:scaleType="fitEnd"
            android:layout_alignParentLeft="true"
            android:layout_centerVertical="true"
            android:layout_marginTop="10dp"
            android:layout_marginLeft="10dp"
            android:layout_width="70px"
            android:layout_height="70px"
            android:src="@drawable/left"/>
<TextView
            android:id="@+id/textview_heading2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="25sp"
            android:layout_centerInParent="true"
            android:layout_marginTop="10dp"
            android:textColor="#6f6f6f"
            android:layout_gravity="center"
            android:text="RhODIS®"/>
<ImageButton
            android:id="@+id/right9"
            android:background="@null"
            android:scaleType="fitEnd"
            android:layout_centerVertical="true"
            android:layout_alignParentRight="true"
            android:layout_marginTop="10dp"
            android:layout_marginRight="10dp"
            android:layout_width="70px"
            android:layout_height="70px"
            android:src="@drawable/right"/>
 </RelativeLayout>
 </LinearLayout>


  <LinearLayout
android:id="@+id/package_normal_sampleshair"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

    <LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_marginBottom="70dp"
    android:orientation="vertical">

        <TextView
            android:id="@+id/textview_heading_b2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="23sp"
            android:layout_marginLeft="13dp"
            android:layout_marginRight="10dp"
            android:layout_marginTop="12dp"
            android:layout_marginBottom="12dp"
            android:textColor="#6f6f6f"
            android:layout_gravity="left"
            android:text="Hair Samples"/>

    <Button
    android:id="@+id/button_samples_hair"
    android:text="Add Hair Samples"
    android:layout_width="fill_parent"
    android:layout_height="65dp"
    android:textSize="20sp"
    android:layout_gravity="center"
    android:layout_marginTop="5dp"
    android:layout_marginBottom="5dp"
    android:layout_marginLeft="10dp"
    android:layout_marginRight="10dp"/>

    <ListView
    android:id="@+id/listview_samples_hair"
    android:scrollbarSize="0dp"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#ffffff"
    android:orientation="vertical"
    /> 
        </LinearLayout>
       <RelativeLayout
android:orientation="horizontal"
android:background="#ffffff"
android:layout_width="fill_parent"
android:layout_height="75dp"
android:layout_marginTop="-75dp"

>
        <View
    android:layout_width="fill_parent"
    android:layout_alignParentTop="true"
    android:layout_height="1dp"
    android:background="#DEDEDE"
    android:layout_marginTop="2dp"/>
<ImageButton
            android:id="@+id/left10"
            android:background="@null"
            android:scaleType="fitEnd"
            android:layout_alignParentLeft="true"
            android:layout_centerVertical="true"
            android:layout_marginTop="10dp"
            android:layout_marginLeft="10dp"
            android:layout_width="70px"
            android:layout_height="70px"
            android:src="@drawable/left"/>
<TextView
            android:id="@+id/textview_heading2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="25sp"
            android:layout_centerInParent="true"
            android:layout_marginTop="10dp"
            android:textColor="#6f6f6f"
            android:layout_gravity="center"
            android:text="RhODIS®"/>
<ImageButton
            android:id="@+id/right10"
            android:background="@null"
            android:scaleType="fitEnd"
            android:layout_centerVertical="true"
            android:layout_alignParentRight="true"
            android:layout_marginTop="10dp"
            android:layout_marginRight="10dp"
            android:layout_width="70px"
            android:layout_height="70px"
            android:src="@drawable/right"/>
 </RelativeLayout>
 </LinearLayout>

そして、これはコードで線形レイアウトを表示および非表示にする方法のサンプルです。これは、24 個の左ボタンと 24 個の右ボタンに対して繰り返されます。

left24.setOnClickListener(new View.OnClickListener()
    {
        public void onClick(View v)
        {
            package_normal_welcomescreen.setVisibility(View.GONE);
            package_normal_package_details.setVisibility(View.GONE);
            package_normal_openbag.setVisibility(View.GONE);
            package_normal_kitnumber.setVisibility(View.GONE);
            package_normal_emptybag.setVisibility(View.GONE);
            package_normal_gpscoordinates.setVisibility(View.GONE);
            package_normal_image_scene.setVisibility(View.GONE);
            package_normal_samplesblood.setVisibility(View.GONE);
            package_normal_sampleshair.setVisibility(View.GONE);
            package_normal_samplestissue.setVisibility(View.GONE);
            package_normal_sampleshorn.setVisibility(View.GONE);
            package_normal_samplesother.setVisibility(View.GONE);
            package_normal_packsamples.setVisibility(View.GONE);
            package_normal_returnbag.setVisibility(View.GONE);
            package_normal_sealreturnbag.setVisibility(View.GONE);
            package_normal_image_sealedbag.setVisibility(View.GONE);
            package_normal_scanned.setVisibility(View.GONE);
            package_normal_animal_details.setVisibility(View.GONE);
            package_normal_animal_horn_details.setVisibility(View.GONE);
            package_normal_animal_ears.setVisibility(View.GONE);
            package_normal_area_details.setVisibility(View.GONE);

            package_normal_collecter_details.setVisibility(View.GONE);
            package_normal_additional_information.setVisibility(View.GONE);

             package_normal_owner_details.setVisibility(View.VISIBLE);
             package_normal_owner_details.bringToFront();
        }
    });

    right24.setOnClickListener(new View.OnClickListener()
    {
        public void onClick(View v)
        {
            if(Session.signatureIsCaptured)
            {
            package_normal_welcomescreen.setVisibility(View.GONE);
            package_normal_package_details.setVisibility(View.GONE);
            package_normal_openbag.setVisibility(View.GONE);
            package_normal_kitnumber.setVisibility(View.GONE);
            package_normal_emptybag.setVisibility(View.GONE);
            package_normal_gpscoordinates.setVisibility(View.GONE);
            package_normal_image_scene.setVisibility(View.GONE);
            package_normal_samplesblood.setVisibility(View.GONE);
            package_normal_sampleshair.setVisibility(View.GONE);
            package_normal_samplestissue.setVisibility(View.GONE);
            package_normal_sampleshorn.setVisibility(View.GONE);
            package_normal_samplesother.setVisibility(View.GONE);
            package_normal_packsamples.setVisibility(View.GONE);
            package_normal_returnbag.setVisibility(View.GONE);
            package_normal_sealreturnbag.setVisibility(View.GONE);
            package_normal_image_sealedbag.setVisibility(View.GONE);
            package_normal_scanned.setVisibility(View.GONE);
            package_normal_animal_details.setVisibility(View.GONE);
            package_normal_animal_horn_details.setVisibility(View.GONE);
            package_normal_animal_ears.setVisibility(View.GONE);
            package_normal_area_details.setVisibility(View.GONE);
            package_normal_owner_details.setVisibility(View.GONE);
            package_normal_collecter_details.setVisibility(View.GONE);
            package_normal_additional_information.setVisibility(View.VISIBLE);
            package_normal_additional_information.bringToFront();
            }
            else
            {
                Toast.makeText(Screen_Package_Normal.this, "Authorized Signature Required", Toast.LENGTH_LONG).show();
            }

        }

    });

さまざまなタイプのリストビューとアダプター、カスタムおよびアンドロイドが組み込まれています。リストビューを表示するのは非常にうまく機能し、リストビューが読み込まれる前でも問題が発生するため、問題はアダプターにあるとは思いません...

4

1 に答える 1

0

これが答えとしてどれほど正しいかはわかりませんが、これで問題は解決しました...これをレイアウト全体に適用し、レイアウトを非表示および表示するときにアニメーションを追加するため、レイアウトが少し遅くなります、重なっている要素が表示されないようにします。

これは私が私のレイアウトに追加したものです:

android:animateLayoutChanges="true"

于 2013-09-10T07:20:04.877 に答える