gpt4 book ai didi

android - CardView 中的 layout_margin 无法正常工作

转载 作者:IT老高 更新时间:2023-10-28 21:37:34 26 4
gpt4 key购买 nike

我正在使用新的 CardView,但边距似乎不适用。

<?xml version="1.0" encoding="utf-8"?>

<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/card_view"
android:layout_gravity="center"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="18dp"
android:layout_marginLeft="18dp"
android:layout_marginRight="18dp"
card_view:cardCornerRadius="4dp"
card_view:cardBackgroundColor="#FFA"
card_view:layout_margind="4dp">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<TextView
android:id="@+id/info_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"/>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"/>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"/>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"/>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"/>

</LinearLayout>

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

顺便说一句,我在 ViewPager 中的 Fragment 中使用它。即使我使用的是 android:layout_marginLeft="18dp",卡片也会扩展屏幕的整个宽度 (ma​​tch_parent)和 android:layout_marginRight="18dp"CardView 上。

任何想法我可能做错了什么?

最佳答案

如果你使用RecyclerView添加CardView,android:layout_margin应该足够了。

但是使用 ListView 来添加 CardView,你可能会这样做:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content" >

<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="11dp"
android:layout_marginRight="11dp"
android:layout_marginTop="11dp">
(other layout ...)
</android.support.v7.widget.CardView>

</FrameLayout>

但它通常不是最优的。

关于android - CardView 中的 layout_margin 无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24564233/

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