Android - CardView 内容未显示
Android - CardView contents not being displayed
我正在尝试创建三个 CardView
,每个都包含一些 ImageView
和 TextView
。我没有使用 RecyclerView
,因为我将始终在 activity 中使用这 3 个 CardViews
。但是为什么 CardView
显示的文本等内容(在预览和应用程序中)?
这是我得到的:
这是我的 XML activity 代码。我在strings.xml
中设置了相应的值。
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.yankee.cw.ll_home">
<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
app:cardUseCompatPadding="true"
android:id="@+id/card_view0"
android:layout_gravity="center"
android:padding="16dp"
android:clickable="true"
card_view:contentPadding="24dp"
android:foreground="?android:attr/selectableItemBackground"
android:layout_width="match_parent"
android:layout_height="200dp"
card_view:cardBackgroundColor="@color/cardview_light_background"
card_view:cardElevation="@dimen/cardview_default_elevation"
card_view:cardCornerRadius="4dp">
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:weightSum="1"
android:layout_height="0dp">
<ImageView
android:layout_width="0dp"
android:layout_weight="0.15"
android:layout_height="match_parent" />
<TextView
android:layout_width="0dp"
android:layout_weight="0.70"
android:layout_gravity="center"
android:textAllCaps="true"
android:text="@string/ll_home_card_title_1"
android:layout_height="match_parent" />
<ImageView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.15"/>
</LinearLayout>
<TextView
android:layout_width="match_parent"
android:text="@string/ll_home_card_content_1"
android:layout_height="0dp" />
</android.support.v7.widget.CardView>
<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
app:cardUseCompatPadding="true"
android:id="@+id/card_view1"
android:layout_gravity="center"
android:padding="16dp"
android:clickable="true"
android:foreground="?android:attr/selectableItemBackground"
android:layout_width="match_parent"
android:layout_height="200dp"
card_view:cardBackgroundColor="@color/cardview_light_background"
card_view:cardElevation="@dimen/cardview_default_elevation"
card_view:cardCornerRadius="4dp">
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:weightSum="1"
android:layout_height="0dp">
<ImageView
android:layout_width="0dp"
android:layout_weight="0.15"
android:layout_height="match_parent" />
<TextView
android:layout_width="0dp"
android:layout_weight="0.70"
android:layout_gravity="center"
android:textAllCaps="true"
android:text="@string/ll_home_card_title_2"
android:layout_height="match_parent" />
<ImageView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.15"/>
</LinearLayout>
<TextView
android:layout_width="match_parent"
android:text="@string/ll_home_card_content_2"
android:layout_height="0dp" />
</android.support.v7.widget.CardView>
<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
app:cardUseCompatPadding="true"
android:id="@+id/card_view2"
android:layout_gravity="center"
android:clickable="true"
android:foreground="?android:attr/selectableItemBackground"
android:padding="16dp"
android:layout_width="match_parent"
android:layout_height="200dp"
card_view:cardBackgroundColor="@color/cardview_light_background"
card_view:cardCornerRadius="4dp">
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:weightSum="1"
android:layout_height="0dp">
<ImageView
android:layout_width="0dp"
android:layout_weight="0.15"
android:layout_height="match_parent" />
<TextView
android:layout_width="0dp"
android:layout_weight="0.70"
android:layout_gravity="center"
android:textAllCaps="true"
android:text="@string/ll_home_card_title_3"
android:layout_height="match_parent" />
<ImageView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.15"/>
</LinearLayout>
<TextView
android:layout_width="match_parent"
android:text="@string/ll_home_card_content_3"
android:layout_height="0dp" />
</android.support.v7.widget.CardView>
</LinearLayout>
</ScrollView>
您需要将LinearLayout中的高度设置为match_parent,而不是0dp,
并且每个 CardView 中的最后一个 TextView 设置为 0 高度,所以你应该改变它,你可以在 LinearLayout 中使用权重但不能在其上使用权重(除非它在其他线性布局中)
我正在尝试创建三个 CardView
,每个都包含一些 ImageView
和 TextView
。我没有使用 RecyclerView
,因为我将始终在 activity 中使用这 3 个 CardViews
。但是为什么 CardView
显示的文本等内容(在预览和应用程序中)?
这是我得到的:
这是我的 XML activity 代码。我在strings.xml
中设置了相应的值。
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.yankee.cw.ll_home">
<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
app:cardUseCompatPadding="true"
android:id="@+id/card_view0"
android:layout_gravity="center"
android:padding="16dp"
android:clickable="true"
card_view:contentPadding="24dp"
android:foreground="?android:attr/selectableItemBackground"
android:layout_width="match_parent"
android:layout_height="200dp"
card_view:cardBackgroundColor="@color/cardview_light_background"
card_view:cardElevation="@dimen/cardview_default_elevation"
card_view:cardCornerRadius="4dp">
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:weightSum="1"
android:layout_height="0dp">
<ImageView
android:layout_width="0dp"
android:layout_weight="0.15"
android:layout_height="match_parent" />
<TextView
android:layout_width="0dp"
android:layout_weight="0.70"
android:layout_gravity="center"
android:textAllCaps="true"
android:text="@string/ll_home_card_title_1"
android:layout_height="match_parent" />
<ImageView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.15"/>
</LinearLayout>
<TextView
android:layout_width="match_parent"
android:text="@string/ll_home_card_content_1"
android:layout_height="0dp" />
</android.support.v7.widget.CardView>
<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
app:cardUseCompatPadding="true"
android:id="@+id/card_view1"
android:layout_gravity="center"
android:padding="16dp"
android:clickable="true"
android:foreground="?android:attr/selectableItemBackground"
android:layout_width="match_parent"
android:layout_height="200dp"
card_view:cardBackgroundColor="@color/cardview_light_background"
card_view:cardElevation="@dimen/cardview_default_elevation"
card_view:cardCornerRadius="4dp">
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:weightSum="1"
android:layout_height="0dp">
<ImageView
android:layout_width="0dp"
android:layout_weight="0.15"
android:layout_height="match_parent" />
<TextView
android:layout_width="0dp"
android:layout_weight="0.70"
android:layout_gravity="center"
android:textAllCaps="true"
android:text="@string/ll_home_card_title_2"
android:layout_height="match_parent" />
<ImageView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.15"/>
</LinearLayout>
<TextView
android:layout_width="match_parent"
android:text="@string/ll_home_card_content_2"
android:layout_height="0dp" />
</android.support.v7.widget.CardView>
<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
app:cardUseCompatPadding="true"
android:id="@+id/card_view2"
android:layout_gravity="center"
android:clickable="true"
android:foreground="?android:attr/selectableItemBackground"
android:padding="16dp"
android:layout_width="match_parent"
android:layout_height="200dp"
card_view:cardBackgroundColor="@color/cardview_light_background"
card_view:cardCornerRadius="4dp">
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:weightSum="1"
android:layout_height="0dp">
<ImageView
android:layout_width="0dp"
android:layout_weight="0.15"
android:layout_height="match_parent" />
<TextView
android:layout_width="0dp"
android:layout_weight="0.70"
android:layout_gravity="center"
android:textAllCaps="true"
android:text="@string/ll_home_card_title_3"
android:layout_height="match_parent" />
<ImageView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.15"/>
</LinearLayout>
<TextView
android:layout_width="match_parent"
android:text="@string/ll_home_card_content_3"
android:layout_height="0dp" />
</android.support.v7.widget.CardView>
</LinearLayout>
</ScrollView>
您需要将LinearLayout中的高度设置为match_parent,而不是0dp, 并且每个 CardView 中的最后一个 TextView 设置为 0 高度,所以你应该改变它,你可以在 LinearLayout 中使用权重但不能在其上使用权重(除非它在其他线性布局中)