アンドロイドでコーディングを取り戻そうとしています。私のXMLファイルに別のTextViewを追加すると、私のプログラムがクラッシュするのはなぜですか?NestedScrollViewクラッシュAndroid
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:showIn="@layout/activity_comp_analysis"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.oscarorellana.physicscalaculators.Math.CompAnalysis">
<TextView
android:layout_width="match_parent"
android:layout_height="50dp"
android:text="Enter a complex number below"
android:textSize="20dp"
android:textStyle="bold"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="TEST"
/>
</android.support.v4.widget.NestedScrollView>
XMLファイルは、Androidのアクティビティのいずれかのコンテンツファイルです。おそらく本当に基本的ですが、間違いを見つけることはできません。
@Oscar Orellanaこの回答がうまくいく場合は、回答として受け入れてください – FAT