我有一个相对布局,里面有4个卡片视图,每个都会固定在相对布局的一角(左上角,右上角,左下角,右下角)但是,只有前两张卡片视图(按照排序通过代码)按照他们应该的方式行事,而最后两个(按代码排序)坚持左上角。
我不知道为什么会发生这种情况,但我觉得这很明显,我被难倒了。
非常感谢任何帮助! :)
<RelativeLayout
android:id="@+id/cardContainer"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.CardView
android:layout_width="210dp"
android:layout_height="170dp"
app:cardCornerRadius="15dp" />
<android.support.v7.widget.CardView
android:layout_width="210dp"
android:layout_height="170dp"
app:cardCornerRadius="15dp"
android:layout_alignParentEnd="true" />
<android.support.v7.widget.CardView
android:layout_width="210dp"
android:layout_height="170dp"
app:cardCornerRadius="15dp"
android:layout_alignParentBottom="true"/>
<android.support.v7.widget.CardView
android:layout_width="210dp"
android:layout_height="170dp"
app:cardCornerRadius="15dp"
android:layout_alignParentEnd="true"
android:layout_alignParentBottom="true"/>
</RelativeLayout>
编辑:傻我。我在滚动视图中有相对布局,这意味着没有底部。无论如何,谢谢你的帮助!
答案 0 :(得分:0)
试试这段代码
<RelativeLayout
android:id="@+id/cardContainer"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_alignParentBottom="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<android.support.v7.widget.CardView
android:layout_width="210dp"
android:layout_height="170dp"
app:cardCornerRadius="15dp" />
<android.support.v7.widget.CardView
android:layout_width="210dp"
android:layout_height="170dp"
app:cardCornerRadius="15dp" />
<android.support.v7.widget.CardView
android:layout_width="210dp"
android:layout_height="170dp"
app:cardCornerRadius="15dp"/>
<android.support.v7.widget.CardView
android:layout_width="210dp"
android:layout_height="170dp"
app:cardCornerRadius="15dp"/>
</LinearLayout>
</RelativeLayout>
答案 1 :(得分:0)
<RelativeLayout android:id="@+id/cardContainer"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<android.support.v7.widget.CardView
android:layout_width="210dp"
android:layout_height="170dp"
app:cardCornerRadius="15dp" />
<android.support.v7.widget.CardView
android:layout_width="210dp"
android:layout_height="170dp"
app:cardCornerRadius="15dp"
android:layout_alignParentRight="true" />
<android.support.v7.widget.CardView
android:layout_width="210dp"
android:layout_height="170dp"
app:cardCornerRadius="15dp"
android:layout_alignParentLeft="true"
android:layout_alignParentBottom="true"/>
<android.support.v7.widget.CardView
android:layout_width="210dp"
android:layout_height="170dp"
app:cardCornerRadius="15dp"
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"/>
尝试以上代码。