这是我的布局。我正在使用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>
答案 0 :(得分:1)
因为您为GridView
充气了不同的布局文件。您的布局将呈现为全屏宽度视图。但是当你定义列数或者说GridView
的跨度时,它会有两个并排的视图,与你想要实现的完全相同。
因此,只需在xml内的GridView
标记中添加
android:numColumns="2"
或者来自java代码。
mGridView.setNumColumns(2);