我有一个像
这样的可扩展列表视图 <ExpandableListView
android:id="@+id/expList"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/seperator"
android:divider="#ffededed"
android:dividerHeight="0.0dip"
android:groupIndicator="@null"
android:listSelector="#ffededed" >
</ExpandableListView>
使用
列表视图中的组项目布局<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/header"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginBottom="8dp"
android:background="@color/blue"
android:padding="@dimen/common_padding" >
<ImageView
android:id="@+id/icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:importantForAccessibility="no"
android:src="@drawable/ic_launcher" />
<TextView
android:id="@+id/name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/icon"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_toRightOf="@+id/icon" />
</RelativeLayout>
问题是左,右和上边距都有效。但我找不到底部保证金?请帮我弄明白,因为我坚持这个。
答案 0 :(得分:0)
在RelativeLayout的默认子项中,在顶角对齐。
尝试为您的孩子RelativeLayout设置android:layout_alignParentBottom="true"
。
答案 1 :(得分:0)
我的工作是将列表视图放在线性布局中,
所以,改成
principal(data, nfactors =2, rotate = "none", cor="poly", scores = TRUE, weight= NULL, n.obs=NA, missing=FALSE)
到
<ListView
android:id="@+id/xxxx"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:textSize="@dimen/_40sdp"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
问题解决了