我有一个包含3行的TableLayout:
RelativeLayout
,其中包含2 EditTexts
和a
Button
ExpandableListView
我通过AsyncTask
填写列表。它工作正常,列表显示记录,但是,当它显示时,第二行的控件消失。
这恰好在我打电话之后发生:
expListView.setAdapter(listAdapter);
这是我的布局
<TableLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentStart="true"
android:weightSum="1">
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="Los 5 productos maś vendidos en la web"
android:id="@+id/textView2" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/dateFrom"
android:layout_weight="1"
android:enabled="true"
android:editable="false"
android:background="#d9fcff"
android:text="2015-10-01"
android:height="40dp"
android:layout_marginTop="5dp"
android:gravity="center_vertical|center_horizontal"
android:width="140dp"
android:layout_toStartOf="@+id/dateTo" />
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/dateTo"
android:layout_weight="1"
android:enabled="true"
android:editable="false"
android:background="#eafccf"
android:text="2015-10-30"
android:height="40dp"
android:gravity="center_vertical|center_horizontal"
android:width="140dp"
android:layout_centerVertical="true"
android:layout_alignParentEnd="true"
android:layout_marginEnd="52dp" />
<Button
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="OK"
android:id="@+id/button12"
android:width="30dp"
android:layout_weight="0.08"
android:layout_centerVertical="true"
android:layout_alignParentEnd="true" />
</RelativeLayout>
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent">
<ExpandableListView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/expandableListView"
android:layout_weight="1.04"
android:layout_marginTop="10dp" />
</TableRow>
</TableLayout>
在活动的onCreate方法中,我致电:
new RetrieveFeedTask(this).execute();
onPostExecute代码是:
activityStats.setProductsList(listDataHeader, listDataChild);
而setProductsList方法是:
public void setProductsList(List<String> listDataHeader, HashMap<String, List<String>> listDataChild) {
listAdapter = new ExpandableListAdapter(getApplicationContext(), listDataHeader, listDataChild);
listAdapter.notifyDataSetChanged();
expListView.setAdapter(listAdapter);
}