2

私は1つのexpandablelistviewを開発する必要があります。ここでプログラムを実行する必要がある場合は正常に動作することを意味します...しかし私は1つの問題に直面しました...問題は最初のグループをクリックする必要がある場合は最初のグループの子がすべて表示されることを意味しますまた、単純に2番目のグループの子スペースを表示します...ここでも同じ問題が発生します。2番目のグループをクリックする必要がある場合は、最初のグループの子スペースを表示した後、2番目のグループの子スペースを表示します...このエラーがここに表示される理由を参照してください。私のコードと解決策を教えてください。私の質問がはっきりと理解されたら、私のスクリーンショットを参照してください。 ここに画像の説明を入力してください 私を助けてください...ここにどんな問題があります。なぜここにスペースが発生するのですか...私を友達に助けてください。

以下のコードは私のandroid-layoutです:

   <?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="wrap_content"
    android:orientation="vertical" >
    <TextView
    android:id="@+id/payment_method1"
     android:paddingLeft="5px"
     android:textSize="15dip"

    android:textStyle="bold"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"/> 
   <TextView
    android:id="@+id/payment_method"
     android:paddingLeft="75px"
     android:textSize="15dip"
    android:textColor="#10bcc9"
    android:textStyle="bold"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"/>

     <TextView
    android:id="@+id/total1"

     android:paddingLeft="5px"
     android:textSize="15dip"

    android:textStyle="bold"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"/>
       <TextView
    android:id="@+id/total"

     android:paddingLeft="65px"
     android:textSize="15dip"
    android:textColor="#10bcc9"
    android:textStyle="bold"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"/>
    <TextView
     android:id="@+id/firstname1"
    android:paddingLeft="5px"
     android:textSize="15dip"

    android:textStyle="bold"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"/>
     <TextView
     android:id="@+id/firstname"
    android:paddingLeft="65px"
     android:textSize="15dip"
    android:textColor="#10bcc9"
    android:textStyle="bold"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"/>
      <TextView
     android:id="@+id/lastname1"
    android:paddingLeft="5px"
     android:textSize="15dip"

    android:textStyle="bold"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"/>
    <TextView
     android:id="@+id/lastname"
    android:paddingLeft="65px"
     android:textSize="15dip"
    android:textColor="#10bcc9"
    android:textStyle="bold"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"/>

     </LinearLayout>
4

1 に答える 1

1

私のAndroidレイアウトファイルにいくつかの変更を加えた後、私はこれに対する解決策を得ました。

于 2012-08-23T04:30:50.160 に答える