我想创建像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>
它正在工作并显示:
我尝试在LinearLayout
的{{1}}内添加FrameLayout
来添加第二张卡片列表,但未显示第二张卡片列表。
有什么我错过或错了吗?
谢谢