1

我正在尝试使用 Android 中的布局来执行类似http://i.stack.imgur.com/vcPcu.jpg的操作。我得到的只是扭曲的背景(http://i.stack.imgur.com/43l3Y.png)。

如果我尝试显示一张简单的卡片,没有网格视图;一切都很好。而在这个时候,我心不在焉。请帮忙。

这是我的代码。

主要的.xml

<?xml version="1.0" encoding="utf-8"?>
<GridView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/gridView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
    android:padding="5dp"
    android:verticalSpacing="5dp"
    android:horizontalSpacing="20dp"
    android:numColumns="auto_fit"
    android:columnWidth="60dp"
    android:stretchMode="columnWidth"
    android:gravity="center_horizontal"
    android:background="#ffffff">
</GridView>

项目.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/card"
android:orientation="vertical" >
<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"/>
<ImageView
    android:id="@+id/bug_item_set_img"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="right"/>
<TextView
    android:id="@+id/bug_item_set_txt_name"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    />
<TextView
    android:id="@+id/bug_item_set_txt_desc"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    />
 </LinearLayout>
4

0 回答 0