mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03:15 +00:00
Injectした, 例を追加した
This commit is contained in:
parent
e9f03ed115
commit
14a8b1a66d
|
@ -7,14 +7,27 @@ import androidx.fragment.app.Fragment;
|
||||||
import android.view.LayoutInflater;
|
import android.view.LayoutInflater;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.view.ViewGroup;
|
import android.view.ViewGroup;
|
||||||
|
import android.widget.Toast;
|
||||||
|
|
||||||
/**
|
import one.nem.lacerta.data.repository.Documents;
|
||||||
* A simple {@link Fragment} subclass.
|
|
||||||
* Use the {@link DebugPlayGroundFragment#newInstance} factory method to
|
import one.nem.lacerta.data.repository.SharedPref;
|
||||||
* create an instance of this fragment.
|
|
||||||
*/
|
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 {
|
public class DebugPlayGroundFragment extends Fragment {
|
||||||
|
|
||||||
|
@Inject // DI
|
||||||
|
Documents documents;
|
||||||
|
|
||||||
|
@Inject // DI
|
||||||
|
SharedPref sharedPref;
|
||||||
|
|
||||||
public DebugPlayGroundFragment() {
|
public DebugPlayGroundFragment() {
|
||||||
// Required empty public constructor
|
// Required empty public constructor
|
||||||
}
|
}
|
||||||
|
@ -45,5 +58,8 @@ public class DebugPlayGroundFragment extends Fragment {
|
||||||
// ここがいままでのonCreateと同等のものです。
|
// ここがいままでのonCreateと同等のものです。
|
||||||
// findViewById(R.id.hoge)とかは view.findViewById(R.id.hoge) と書き換える必要アリ
|
// findViewById(R.id.hoge)とかは view.findViewById(R.id.hoge) と書き換える必要アリ
|
||||||
// (viewは引数として受け取ってるviewなので、別メソッドに切り出したりするなら渡してあげる)
|
// (viewは引数として受け取ってるviewなので、別メソッドに切り出したりするなら渡してあげる)
|
||||||
|
|
||||||
|
// ShardPrefの要素数をトーストする例
|
||||||
|
Toast.makeText(getContext(), "SharedPrefの要素数: " + sharedPref.getSharedPreferencesByTag(SharedPrefType.COMMON).getAll().size(), Toast.LENGTH_SHORT).show();
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user