我想在不更改组视图的情况下设置可扩展列表视图的背景。设置每个子项的背景不符合要求。我认为,expandablelistView 的 childView 在某种程度上就像一个 listview ,并且必须有某个地方可以设置它的背景,而不必逐项设置。非常感谢您的善意回应!谢谢。
问问题
708 次
2 回答
0
将背景设置为必须在适配器中膨胀的布局/子级,而不是父级布局。
于 2012-07-11T08:31:27.660 回答
0
在子视图布局( child_.xml )中放入主布局背景属性。
喜欢
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
</LinearLayout>
它仅更改子视图的背景。
于 2012-07-10T06:01:19.200 回答