2017-04-06 19 views
1

アンドロイドでコーディングを取り戻そうとしています。私の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のアクティビティのいずれかのコンテンツファイルです。おそらく本当に基本的ですが、間違いを見つけることはできません。

答えて

1

NestedScrollViewは、ただ1つ直接childを持つ必要があります。新しいLinear/RelativeレイアウトをコンテナまたはTextViewsとして追加します。

このお試しください:以下のようにあなたのXMLを更新

<NestedScrollView> 
    <LinearLayout> 
     <TextView> 
     <TextView> 
    <LinearLayout> 
<NestedScrollView> 

を:

<?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"> 

    <LinearLayout 
     android:orientation="vertical" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent"> 

     <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" /> 
    </LinearLayout> 

</android.support.v4.widget.NestedScrollView> 
+0

@Oscar Orellanaこの回答がうまくいく場合は、回答として受け入れてください – FAT

0
<?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"> 

    <LinearLayout android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:orientation="vertical"> 


     <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" 
      /> 

    </LinearLayout> 
</android.support.v4.widget.NestedScrollView> 
1

は、このコードを試してください:あなたは、スクロールビュー下子を追加する必要があり、スクロールビューのみが機能します:

<?xml version="1.0" encoding="utf-8"?> 
    <android.support.v4.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
     xmlns:app="http://schemas.android.com/apk/res-auto" 
     xmlns:tools="http://schemas.android.com/tools" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     app:layout_behavior="@string/appbar_scrolling_view_behavior" 
     tools:context="com.example.oscarorellana.physicscalaculators.Math.CompAnalysis" 
     tools:showIn="@layout/activity_comp_analysis"> 

     <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:orientation="vertical"> 

      <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" /> 
     </LinearLayout> 
    </android.support.v4.widget.NestedScrollView> 
関連する問題