2

だから私は ExpandableListView を持っています。現在、親リストに 3 つの項目があります。それらのいずれかをクリックすると、子リスト (サブリストがポップアップ) が表示されます。私が欲しいのは、テキストボックスがリストではなく下に表示されることです。

親のリストが必要ですが、子のテキストボックスが必要です。これを行う方法がわかりません。これは今私のコードです:

public void onCreate(Bundle savedInstanceState) {
    try{
         super.onCreate(savedInstanceState);
         setContentView(R.layout.activity_assignment);

    SimpleExpandableListAdapter expListAdapter =
        new SimpleExpandableListAdapter(
                this,
                createGroupList(),              // Creating group List.
                R.layout.group_row,             // Group item layout XML.
                new String[] { "Group Item" },  // the key of group item.
                new int[] { R.id.row_name },    // ID of each group item.-Data under the key goes into this TextView.
                createChildList(),              // childData describes second-level entries.
                R.layout.child_row,             // Layout for sub-level entries(second level).
                new String[] {"Sub Item"},      // Keys in childData maps to display.
                new int[] { R.id.grp_child}     // Data under the keys above go into these TextViews.
            );
        setListAdapter( expListAdapter );       // setting the adapter in the list.

    }catch(Exception e){
        System.out.println("Errrr +++ " + e.getMessage());
    }
}


//Create Headings of Assignment attributes
private List createGroupList() {
    ArrayList result = new ArrayList();

    //Create string array for Assignment Topic headings
    String[] topics = {"1", "2", "3"};

    //Iterate through array of names to lay them out correctly
    for( int i = 0 ; i < 3 ; ++i ) { 

      HashMap m = new HashMap();
      m.put( "Group Item", topics[i] ); // the key and it's value. 
      result.add( m );
    }
    return (List)result;

}

@SuppressWarnings("unchecked")
private List createChildList() {

    ArrayList result = new ArrayList();
    for( int i = 0 ; i < 3 ; ++i ) { // this -15 is the number of groups(Here it's fifteen)
      /* each group need each HashMap-Here for each group we have 3 subgroups */
      ArrayList secList = new ArrayList();
      for( int n = 0 ; n < 3 ; n++ ) {
        HashMap child = new HashMap();
        child.put( "Sub Item", "Sub Item " + n );
        secList.add( child );
      }
     result.add( secList );
    }
    return result;
}

明らかに、子をテキスト ボックスにしたい場合は、childList を作成しています。これを実装する方法がわかりません。どんな助けでも大歓迎です!

4

2 に答える 2

0

「R.layout.child_row」にはedittextviewのみを配置してみてください。エラーが発生した場合は、テキストビューも配置しますが、非表示にします。これで問題が解決することを願っています。

于 2012-07-16T08:39:37.180 に答える
0

とても簡単です。child_layout_row というレイアウトを作成する必要があります。

<LinearLayout  xmlns:android="http://schemas.android.com/apk/res/android" android:layout_height="wrap_content" android:layout_width="match_parent"> 
    <EditText android:id="@+id/text_edit_child"
              android:layout_width="match_parent"
              android:layout_height="wrap_content" />
</LinearLayout>

の代わりにR.layout.child_row、それだけを使用R.layout.child_layout_rowしてください....

于 2012-07-16T09:01:42.600 に答える