Android无法添加另一个卡列表

时间:2013-12-19 10:47:12

标签: android xml android-layout android-listview android-fragments

我想创建像http://ryanharter.com/blog/2013/01/31/how-to-make-an-android-card-list/这样的'卡'列表。我正在使用https://github.com/justmyfreak/android-slidingmenu来创建滑动菜单。

我想将卡片列表放在res/layout/fragment_home.xml内。我在bg_card.xml内创建了res/drawable/bg_card.xml代码:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <shape android:shape="rectangle"
               android:dither="true">

        <corners android:radius="2dp"/>

        <solid android:color="#ccc"/>

    </shape>
</item>

<item android:bottom="2dp">
    <shape android:shape="rectangle"
           android:dither="true">

        <corners android:radius="2dp"/>

        <solid android:color="@android:color/white"/>

        <padding android:bottom="8dp"
                 android:left="8dp"
                 android:right="8dp"
                 android:top="8dp"/>
    </shape>
</item>

在我的fragment_home.xml内写道:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
             android:layout_width="match_parent"
             android:layout_height="?android:attr/listPreferredItemHeight">
<LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginLeft="6dp"
        android:layout_marginRight="6dp"
        android:layout_marginTop="4dp"
        android:layout_marginBottom="4dp"
        android:background="@drawable/bg_card">

    <!-- Card Contents go here -->

    <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="My Text View"
            android:id="@+id/textView"/>
</LinearLayout>

它正在工作并显示:

enter image description here

我尝试在LinearLayout的{​​{1}}内添加FrameLayout来添加第二张卡片列表,但未显示第二张卡片列表。 有什么我错过或错了吗?

谢谢

0 个答案:

没有答案