gpt4 book ai didi

android - Cardslib 卡片的 LinearLayout wrap_content

转载 作者:行者123 更新时间:2023-11-30 02:47:03 25 4
gpt4 key购买 nike

使用 https://github.com/gabrielemariotti/cardslib ,我想要一个如下所示的布局:

----------- (this card has dynamic text 
|this is | and its height should adjust
|a card | to the amount of text automatically)
-----------
=========== (separator)
-----------
|this is |
|a |
|CardsList|
-----------

这是我现在拥有的:

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

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:id="@+id/wrapper">

<it.gmariotti.cardslib.library.view.CardView
android:id="@+id/card"
android:layout_width="match_parent"
android:layout_height="match_parent" />

</LinearLayout>

<View
android:layout_width="fill_parent"
android:layout_height="1dp"
android:background="#ddd"
android:layout_below="@+id/wrapper"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />

<it.gmariotti.cardslib.library.view.CardListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/match_ongoing_hand"
android:layout_below="@+id/list" />

</RelativeLayout>

问题是 LinearLayout 占据了整个屏幕,即使顶部卡片中只有少量文本。如果我将 LinearLayout 设置为特定的 layout_height,我可以看到 CardListView。在 CardListView 中,卡片自然地换行到它们的文本中。我希望 LinearLayout 换行到顶部卡片的高度。我怎样才能做到这一点?谢谢。

最佳答案

我认为这个布局应该做你想做的:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<it.gmariotti.cardslib.library.view.CardView
android:id="@+id/card"
android:layout_width="match_parent"
android:layout_height="wrap_content" />

<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#ddd"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />

<it.gmariotti.cardslib.library.view.CardListView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:id="@+id/match_ongoing_hand" />

</LinearLayout>

此外,我认为您可以安全地从分隔符 View 中删除 layout_alignParentLeftlayout_alignParentStart 属性。

关于android - Cardslib 卡片的 LinearLayout wrap_content,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24847850/

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