gpt4 book ai didi

android - Cardview 屏幕半宽

转载 作者:行者123 更新时间:2023-11-30 01:58:18 25 4
gpt4 key购买 nike

这是我的布局。我正在放入一个 GridView。我想要 GridView 中的两列填充屏幕的宽度。无法使 CardView 布局填满屏幕的一半。我跟着这个link但没有结果。

<?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:layout_width="150dp" android:layout_height="wrap_content"
android:gravity="center"
card_view:cardCornerRadius="2dp"
card_view:cardElevation="2sp"
card_view:cardUseCompatPadding="true"
card_view:contentPadding="5dp"
>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/quote"
android:text="jalkdjlajflkdajf akjfdlajfljal alfjk"
android:layout_margin="3dp"
/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:layout_marginLeft="2dp"
android:layout_below="@+id/quote"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/time"
android:layout_alignParentLeft="true"
android:text="time started"
android:layout_centerVertical="true"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button1"
android:layout_alignParentRight="true"
android:text="5"
android:layout_marginLeft="3dp"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button2"
android:layout_toLeftOf="@+id/button1"
android:text="5"
android:layout_marginLeft="3dp"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button3"
android:layout_toLeftOf="@+id/button2"
android:text="5"
android:layout_marginLeft="3dp"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button4"
android:layout_toLeftOf="@+id/button3"
android:text="5"
android:layout_marginLeft="3dp"
/>
</RelativeLayout>
</RelativeLayout>

最佳答案

因为您正在为您的 GridView 扩充不同的布局文件。您的布局将呈现为全屏宽度 View 。但是当您定义列数或对 GridView 说 span 时,它将有两个并排的 View ,这与您想要实现的完全相同。

所以,只需在 xml 中的 GridView 标记中添加

android:numColumns="2"

或来自 java 代码。

mGridView.setNumColumns(2);

关于android - Cardview 屏幕半宽,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31853922/

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