エラー時のトーストメッセージ出力

This commit is contained in:
nero 2024-01-16 12:14:14 +09:00
parent 391c093437
commit 7d3d4a0ebf

View File

@ -137,6 +137,7 @@ public class LibraryTopFragment extends Fragment {
} catch (Exception e) { } catch (Exception e) {
// 例外処理 // 例外処理
e.printStackTrace(); e.printStackTrace();
Toast.makeText(getContext(), "エラーが発生しました: " + e.getMessage(), Toast.LENGTH_LONG).show();
} }
// Use a LinearLayoutManager to specify the layout // Use a LinearLayoutManager to specify the layout
return view; return view;