我是一个正在创建简历的Android应用,但TextView之后为空 在CardView内部
below image
在我将CardView作为LinearChild的父级子级实现的xml代码下面。
在我将CardView作为LinearChild的父级子级实现的xml代码下面。
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="30dp"
android:scaleType="fitXY" />
<Space
android:layout_width="50dp"
android:layout_height="20dp" />
<TextView
android:id="@+id/about"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:layout_marginRight="250dp"
android:gravity="center"
android:text="@string/about_me"
android:textSize="16sp"
android:textStyle="bold" />
<TextView
android:id="@+id/introduction"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:layout_marginTop="16dp"
android:gravity="start" />
</LinearLayout>
</android.support.v7.widget.CardView>
答案 0 :(得分:1)
从imageView删除此行
android:layout_margin="30dp"
并给予
android:layout_marginTop="30dp"
android:layout_marginRight="30dp"
android:layout_marginLeft="30dp"