我试图在 LinearLayout 上设置重力 =“bottom”,因此它的子视图堆栈在底部。
问题是,当我在 Eclipse 上检查它时,它似乎很好,但是当我在 AVD 上运行时,它不起作用。它就像重力被设置为顶部一样工作。
这是我的代码:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="16dp" >
<com.pepotegames.spotthedifferences.SquareImageView
android:id="@+id/picture"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="bottom"
android:weightSum="4" >
<ImageView
android:id="@+id/stars"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:src="@drawable/stars"
android:background="#55000000"
android:adjustViewBounds="true" />
</LinearLayout>
这是它在 Eclipse 中的外观,以及它应该如何工作:
http://i.imgur.com/ddHJK5S.png
编辑:顺便说一句,我的 SquareImageView 它只是一个扩展的 ImageView。这个问题与它无关,我已经用普通的 ImageView 测试了相同的布局及其相同的结果。
如果你想检查它,这里是:
public class SquareImageView extends ImageView {
public SquareImageView(Context context) {
super(context);
}
public SquareImageView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public SquareImageView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
setMeasuredDimension(getMeasuredWidth(), getMeasuredWidth());
}
}