gpt4 book ai didi

Android CardView 水平居中

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:21:49 25 4
gpt4 key购买 nike

我已经阅读了几个关于如何水平对齐卡片 View 的答案。我正在努力实现以下目标:

Desired Result

到目前为止,这是我编写的代码(我从不同的帖子中得到了大约 20 个答案,没有一个对我有帮助。问题是左边和右边的边距或空间,我需要那个空间,但是卡片 View 扩展了整个宽度。

<RelativeLayout
android:id="@+id/relativeLayout2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentStart="true">

<TextView
android:id="@+id/textView8"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_alignStart="@+id/mProjectCDCNumCardView"
android:layout_marginStart="7dp"
android:layout_marginTop="7dp"
android:text="DETAIL"
android:textColor="#000"
android:textSize="16sp" />

<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/mProjectCDCNumCardView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="13dp"
card_view:cardCornerRadius="2dp"
card_view:contentPaddingLeft="50dp"
card_view:contentPaddingRight="@dimen/activity_horizontal_margin"
card_view:contentPaddingTop="20dp"
card_view:contentPaddingBottom="@dimen/activity_vertical_margin"
android:background="@drawable/cardview_normal"
android:layout_centerHorizontal="true"
android:layout_below="@+id/textView8">

<EditText
android:id="@+id/mProjectCDCNumEditText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:background="@drawable/editborder"
android:hint="Project Number"
android:inputType="textPersonName"
android:padding="10dp" />


</android.support.v7.widget.CardView>

<TextView
android:id="@+id/mProjectAddressLabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:background="@drawable/editborder"
android:layout_below="@id/mProjectCDCNumCardView"
android:ems="16"
android:padding="10dp"
android:hint="Location"
android:textColor="#000"
android:textSize="18sp"
android:drawableRight="@drawable/left_arrow"/>



</RelativeLayout>

谢谢!

最佳答案

参加派对有点晚了,但我真的很喜欢使用 ConstraintLayouts。将 View 置于其中非常容易。

<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">

<android.support.v7.widget.CardView
android:layout_width="200dp"
android:layout_height="wrap_content"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">

... Content ...

</android.support.v7.widget.CardView>

</android.support.constraint.ConstraintLayout>

此代码将使 CardView 在与父级具有相同宽度的 ConstraintLayout 内居中。 CardView 的宽度为 200dp,并且由于约束,它将在布局中水平居中。

More info about ConstraintLayout.

关于Android CardView 水平居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46478830/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com