Injectした, 例を追加した

This commit is contained in:
ろむねこ 2023-12-11 15:39:34 +09:00
parent e9f03ed115
commit 14a8b1a66d
No known key found for this signature in database
GPG Key ID: FA1F39A1BA37D168

View File

@ -7,14 +7,27 @@ import androidx.fragment.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Toast;
/**
* A simple {@link Fragment} subclass.
* Use the {@link DebugPlayGroundFragment#newInstance} factory method to
* create an instance of this fragment.
*/
import one.nem.lacerta.data.repository.Documents;
import one.nem.lacerta.data.repository.SharedPref;
import one.nem.lacerta.data.model.shared_pref.enums.SharedPrefType;
import javax.inject.Inject;
import dagger.hilt.android.AndroidEntryPoint;
@AndroidEntryPoint // HiltのDIを有効にするアテーション
public class DebugPlayGroundFragment extends Fragment {
@Inject // DI
Documents documents;
@Inject // DI
SharedPref sharedPref;
public DebugPlayGroundFragment() {
// Required empty public constructor
}
@ -45,5 +58,8 @@ public class DebugPlayGroundFragment extends Fragment {
// ここがいままでのonCreateと同等のものです
// findViewById(R.id.hoge)とかは view.findViewById(R.id.hoge) と書き換える必要アリ
// (viewは引数として受け取ってるviewなので別メソッドに切り出したりするなら渡してあげる
// ShardPrefの要素数をトーストする例
Toast.makeText(getContext(), "SharedPrefの要素数: " + sharedPref.getSharedPreferencesByTag(SharedPrefType.COMMON).getAll().size(), Toast.LENGTH_SHORT).show();
}
}