実行中Android Studio 2.1.2、Windows 7。
ScrollViewをNestedScrollViewに置き換えたところ、
Android.view.InflateException:Binary XML file line#2:Error inflatating class NestedScrollView
Java.lang.ClassNotFoundException:パスにクラス「Android.view.NestedScrollView」が見つかりませんでした:/data/app/com.assemblyguide.remote-48.apk
...そのXMLファイルでSetContentView()を呼び出すと。 ScrollViewしか持っていなかったので、取得できませんでした。
キャッシュをクリーンアップして無効化し、再構築してみました。 XMLは次のようになります。 。 。
<?xml version="1.0" encoding="utf-8"?>
<NestedScrollView xmlns:Android="http://schemas.Android.com/apk/res/Android"
Android:layout_width="wrap_content"
Android:layout_height="match_parent"
Android:orientation="vertical" >
<!-- This linear layout is because the scrollview can have only 1 direct child -->
<LinearLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"
Android:orientation="vertical" >
<!-- Relative layout for Workorder -->
<RelativeLayout
Android:id="@+id/rellayWorkorder"
Android:background="#383838"
Android:layout_width="match_parent"
Android:layout_height="wrap_content"
Android:layout_marginTop="30dp"
Android:layout_marginBottom="2dp">
<TextView
Android:id="@+id/workorderlabel"
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"
Android:layout_alignParentLeft="true"
Android:layout_margin="2dp"
Android:gravity="left"
Android:textAppearance="?android:attr/textAppearanceMedium"
Android:text="Work Order:"/>
<TextView
Android:id="@+id/workorderContent"
Android:layout_width="150dp"
Android:layout_height="wrap_content"
Android:layout_alignParentRight="true"
Android:layout_margin="2dp"
Android:gravity="right"
Android:textAppearance="?android:attr/textAppearanceMedium"
Android:text="---workorder---"/>
</RelativeLayout>
<!-- Relative layout for Required Time
<FrameLayout
Android:layout_width="match_parent"
Android:layout_height="wrap_content"
Android:layout_gravity="center_horizontal"></FrameLayout> -->
<RelativeLayout
Android:id="@+id/rellayRequiredTime"
Android:layout_width="match_parent"
Android:layout_height="wrap_content"
Android:layout_marginTop="30dp"
Android:layout_marginBottom="2dp">
<TextView
Android:id="@+id/requiredTimelabel"
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"
Android:layout_alignParentLeft="true"
Android:layout_margin="2dp"
Android:gravity="left"
Android:textAppearance="?android:attr/textAppearanceMedium"
Android:text="Required Time:"/>
<TextView
Android:id="@+id/requiredTimeContent"
Android:layout_width="150dp"
Android:layout_height="wrap_content"
Android:layout_alignParentRight="true"
Android:layout_margin="2dp"
Android:gravity="right"
Android:textAppearance="?android:attr/textAppearanceMedium"
Android:text="--- 00 minutes ---"/>
</RelativeLayout>
<!-- Relative layout for Time remaining -->
<RelativeLayout
Android:id="@+id/rellayTimeRemaining"
Android:layout_width="match_parent"
Android:layout_height="wrap_content"
Android:layout_marginTop="30dp"
Android:layout_marginBottom="2dp">
<TextView
Android:id="@+id/timeremaininglabel"
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"
Android:layout_alignParentLeft="true"
Android:layout_margin="2dp"
Android:gravity="left"
Android:textAppearance="?android:attr/textAppearanceMedium"
Android:text="Time Remaining:"/>
<TextView
Android:id="@+id/tviewtimeremainingContent"
Android:layout_width="150dp"
Android:layout_height="wrap_content"
Android:layout_alignParentRight="true"
Android:layout_margin="2dp"
Android:gravity="right"
Android:textAppearance="?android:attr/textAppearanceMedium"
Android:text="--- 0:00:00---"/>
</RelativeLayout>
<!-- Linear layout for Record Start / Record End buttons -->
<LinearLayout
Android:orientation="horizontal"
Android:layout_width="match_parent"
Android:layout_height="wrap_content"
Android:layout_marginTop="10dp" >
<Button
Android:id="@+id/debulkrecordStart"
Android:layout_width="150dp"
Android:layout_height="wrap_content"
Android:layout_marginTop="6dp"
Android:layout_marginRight="4dp"
Android:gravity="center"
Android:textAppearance="?android:attr/textAppearanceMedium"
Android:onClick="OnSetRecordStartTimeClick"
Android:text="Record Start"/>
<Button
Android:id="@+id/debulkrecordEnd"
Android:layout_width="150dp"
Android:layout_height="wrap_content"
Android:layout_marginTop="6dp"
Android:layout_marginRight="4dp"
Android:gravity="center"
Android:textAppearance="?android:attr/textAppearanceMedium"
Android:onClick="OnSetRecordEndTimeClick"
Android:text="Record End"/>
</LinearLayout>
<!-- Relative layout for Vacuum level -->
<RelativeLayout
Android:id="@+id/rellayvacuumlevel"
Android:layout_width="match_parent"
Android:layout_height="wrap_content"
Android:layout_marginBottom="2dp">
<TextView
Android:id="@+id/vaclabel"
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"
Android:layout_alignParentLeft="true"
Android:layout_margin="2dp"
Android:gravity="left"
Android:textAppearance="?android:attr/textAppearanceSmall"
Android:text="Vacuum Level (inches Hg):"/>
<EditText
Android:id="@+id/vacleveledit"
Android:layout_width="120dp"
Android:layout_height="wrap_content"
Android:layout_alignParentRight = "true"
Android:layout_margin="2dp"
Android:gravity="left"
Android:textAppearance="?android:attr/textAppearanceSmall"
Android:inputType="text|textCapCharacters"
Android:text="vac level"
Android:layout_marginRight="2dp"
Android:layout_marginTop="2dp"
Android:layout_marginBottom="2dp"/>
</RelativeLayout>
<!-- Relative layout for Vac Gauge Equipment # -->
<RelativeLayout
Android:id="@+id/rlayvacuumGauge"
Android:layout_width="match_parent"
Android:layout_height="wrap_content"
Android:layout_marginBottom="2dp">
<TextView
Android:id="@+id/vacgaugelabel"
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"
Android:layout_alignParentLeft="true"
Android:layout_margin="2dp"
Android:gravity="left"
Android:textAppearance="?android:attr/textAppearanceSmall"
Android:text="Vac Gauge Equipment #:"/>
<EditText
Android:id="@+id/vacgaugeedit"
Android:layout_width="120dp"
Android:layout_height="wrap_content"
Android:layout_alignParentRight = "true"
Android:layout_margin="2dp"
Android:gravity="left"
Android:textAppearance="?android:attr/textAppearanceSmall"
Android:inputType="text|textCapCharacters"
Android:text="equip. #"/>
</RelativeLayout>
<!-- Relative layout for Calibration Due date -->
<RelativeLayout
Android:id="@+id/rlaycalibdue"
Android:layout_width="match_parent"
Android:layout_height="wrap_content"
Android:layout_marginBottom="2dp">
<TextView
Android:id="@+id/calibduelabel"
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"
Android:layout_alignParentLeft="true"
Android:layout_margin="2dp"
Android:gravity="left"
Android:textAppearance="?android:attr/textAppearanceSmall"
Android:text="Calibration Due Date:"/>
<EditText
Android:id="@+id/calibdueedit"
Android:layout_width="120dp"
Android:layout_height="wrap_content"
Android:layout_alignParentRight = "true"
Android:layout_margin="2dp"
Android:gravity="left"
Android:textAppearance="?android:attr/textAppearanceSmall"
Android:inputType="text|textCapCharacters"
Android:text="mm/dd/yyyy"/>
</RelativeLayout>
<CalendarView
Android:id="@+id/debulkcalendar"
Android:layout_width="300dp"
Android:layout_height="250dp"
Android:minDate="01/01/2016"
Android:maxDate="11/30/2016"
/>
<!-- this linear layout is for the debulk override and done buttons -->
<LinearLayout
Android:orientation="horizontal"
Android:layout_width="match_parent"
Android:layout_height="wrap_content"
Android:layout_marginTop="10dp" >
<Button
Android:id="@+id/debulkOverride"
Android:layout_width="150dp"
Android:layout_height="wrap_content"
Android:layout_marginTop="6dp"
Android:layout_marginRight="4dp"
Android:onClick="OnResetClick"
Android:gravity="center"
Android:textAppearance="?android:attr/textAppearanceMedium"
Android:text="Override"/>
<Button
Android:id="@+id/debulkDone"
Android:layout_width="150dp"
Android:layout_height="wrap_content"
Android:layout_marginTop="6dp"
Android:layout_marginRight="2dp"
Android:onClick="onDoneBtnClick"
Android:gravity="center"
Android:textAppearance="?android:attr/textAppearanceMedium"
Android:text="Done"/>
</LinearLayout>
</LinearLayout>
</NestedScrollView>
このエラーの意味と修正方法を教えてください。
完全なクラス名はAndroid.support.v4.widget.NestedScrollView
。 <NestedScrollView>
要素と<Android.support.v4.widget.NestedScrollView>
そしてそれはうまくいくはずです。 build.gradleファイルにもv4サポートライブラリがあることを確認してください。
Androidxを使用している場合は、<NestedScrollView>
または完全なクラス名<Android.support.v4.widget.NestedScrollView>
with<androidx.core.widget.NestedScrollView>
この行を依存関係に追加する必要があります。
compile 'com.Android.support:support-v4:23.4.0'
また、チェスドルクが言ったようにAndroid.support.v4.widget.NestedScrollView
ではないNestedScrollView
に変更
<androidx.core.widget.NestedScrollView
Android:layout_width="match_parent"
Android:layout_height="wrap_content">
androidx.core.widget.NestedScrollViewを使用すると、この行が削除され、正常に動作します。これを追加すると、アプリがクラッシュします(レイアウトにもNestedScrollView内にrecyclerviewがあります)
Android:nestedScrollingEnabled="false"
NestedScrollView が バージョン22.1.0 に追加されました
次の方法でNestedScrollViewを使用する必要があります:
<?xml version="1.0" encoding="utf-8"?>
<Android.support.v4.widget.NestedScrollView xmlns:Android="http://schemas.Android.com/apk/res/Android"
Android:layout_width="match_parent"
Android:layout_height="match_parent">
</Android.support.v4.widget.NestedScrollView>
build.gradle(モジュール)
dependencies {
implementation 'com.Android.support:appcompat-v7:<greater than or equal to 22.1.0>'
//...
}