我不知道造成这种情况的原因。我添加的唯一内容是recyclelerview和cardview到项目中。然后,它停止工作。我仔细检查了我的@id
是@+id
个,但仍未改变。
我缩小了错误:当我将此textview的ID从我指定的内容更改为title
时,它才会停止发生
以下是观点:
<LinearLayout 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">
<android.support.v7.widget.CardView
android:id="@+id/card_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
android:elevation="3dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="11dp"
android:text="Event Title"
android:textAppearance="@style/TextAppearance.AppCompat.Display1" />
<ImageView
android:id="@+id/eventCardImage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/title"
android:layout_centerHorizontal="true"
android:layout_marginTop="13dp"
android:clickable="true"
app:srcCompat="@mipmap/ic_launcher" />
<TextView
android:id="@+id/eventCardDescription"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/eventCardImage"
android:layout_centerHorizontal="true"
android:layout_marginTop="21dp"
android:text="Big Long Event Description"
android:textAppearance="@style/TextAppearance.AppCompat.Body2" />
</RelativeLayout>
</android.support.v7.widget.CardView>
这真烦人。我猜这是在构建过程中发生的生成事情,内部有一个硬编码的标题,或者我做错了。
编辑:发现错误 编辑:截图 编辑:发布XML
答案 0 :(得分:1)
尝试重建项目希望它能够正常工作,如果它没有尝试重新启动android工作室。 如果您使用cardview或recycle-view,请确保已添加所需的gradle依赖项。 使用作为参考时,从id中删除+号。 替换android:layout_below =&#34; @ + id / title&#34;使用android:layout_below =&#34; @ id / title&#34;