我想在卡片视图中的图片后面添加一些文字。 这是我写的XML布局:
<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<ImageView
android:id="@+id/image_main"
android:layout_gravity="top"
android:layout_width="match_parent"
android:layout_height="250dp"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:src="@drawable/main_img"
android:scaleType="centerCrop"
/>
<TextView
android:id="@+id/info_text"
android:text="Hello World"
android:textAlignment="center"
android:textColor="@color/white"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>
</android.support.v7.widget.CardView>
此处文字未显示在图像下方。仅显示图像和空白区域。如何纠正这个?
答案 0 :(得分:0)
你有
android:textColor="@color/white"
我相信你使用白色背景
显示空白区域