私は現在、それぞれにフラグメントを持つ 3 つのタブを使用するアプリに取り組んでおり、これらのフラグメントのそれぞれに SwipeRefreshLayout を実装しようとしています。これを正しく作成したと思いますが、引き続きエラーが発生します。
android.view.InflateException: Binary XML file line #1: Error inflating class SwipeRefreshLayout
Caused by: java.lang.ClassNotFoundException: Didn't find class "android.view.SwipeRefreshLayout" on path: DexPathList[[zip file "/data/app/com.ryan.brooks.fropllc.frop.app-1.apk"],nativeLibraryDirectories=[/data/app-lib/com.ryan.brooks.fropllc.frop.app-1, /vendor/lib, /system/lib]]
at com.ryan.brooks.fropllc.frop.app.whatsGoingOnFragment.onCreateView(whatsGoingOnFragment.java:23)
今、何が原因なのかまったくわかりません。誰かが私を助けることができれば、それは非常に高く評価されます.
SwipeRefreshLayout を実装しているフラグメント レイアウトを次に示します。
<SwipeRefreshLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/swipe_refresh_whats_going_on">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#343434"></ScrollView>
</SwipeRefreshLayout>
そして、これが SwipeRefreshLayout を呼び出すフラグメント クラスです。
public class WhatsGoingOnFragment extends Fragment {
private SwipeRefreshLayout swipeLayout;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
// Inflate the layout for this fragment
View view = inflater.inflate(R.layout.whats_going_on_fragment, container, false);
// Retrieve the SwipeRefreshLayout and ListView instances
swipeLayout = (SwipeRefreshLayout) view.findViewById(R.id.swipe_refresh_whats_going_on);
// Set the color scheme of the SwipeRefreshLayout by providing 4 color resource ids
swipeLayout.setColorScheme(
android.R.color.holo_blue_bright,
android.R.color.holo_green_light,
android.R.color.holo_orange_light,
android.R.color.holo_red_light);
return view;
}
}
ID 名が変更されているだけで、3 つのフラグメントすべてのレイアウトとクラス構造はまったく同じです。ここで何が問題なのか、私にはまったくわかりません。繰り返しますが、どんな助けも大歓迎です!