mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-26 09:43:15 +00:00
名前を修正
前のは適当でわかりにくい名前になっていたため
This commit is contained in:
parent
9d108212dd
commit
142ca57f76
|
@ -22,7 +22,7 @@ public class LibraryArchiveFragment extends AppCompatActivity {
|
||||||
// 文字をタップしたときの処理
|
// 文字をタップしたときの処理
|
||||||
|
|
||||||
// 移動先のアクティビティを指定
|
// 移動先のアクティビティを指定
|
||||||
Intent intent = new Intent(LibraryArchiveFragment.this, LibraryXFragment.class);
|
Intent intent = new Intent(LibraryArchiveFragment.this, LibraryDocFragment.class);
|
||||||
|
|
||||||
// または、移動先のフラグメントを指定
|
// または、移動先のフラグメントを指定
|
||||||
// Intent intent = new Intent(LibraryArchiveFragment.this, TargetFragment.class);
|
// Intent intent = new Intent(LibraryArchiveFragment.this, TargetFragment.class);
|
||||||
|
@ -33,7 +33,7 @@ public class LibraryArchiveFragment extends AppCompatActivity {
|
||||||
// 文字をタップしたときの処理
|
// 文字をタップしたときの処理
|
||||||
|
|
||||||
// 移動先のアクティビティを指定
|
// 移動先のアクティビティを指定
|
||||||
Intent intent = new Intent(LibraryArchiveFragment.this, LibraryXFragment.class);
|
Intent intent = new Intent(LibraryArchiveFragment.this, LibraryDocFragment.class);
|
||||||
|
|
||||||
// データを付加する
|
// データを付加する
|
||||||
intent.putExtra("key_name", "value_data");
|
intent.putExtra("key_name", "value_data");
|
||||||
|
|
|
@ -8,7 +8,7 @@ import android.widget.TextView;
|
||||||
|
|
||||||
import androidx.fragment.app.Fragment;
|
import androidx.fragment.app.Fragment;
|
||||||
|
|
||||||
public class LibraryXFragment extends Fragment {
|
public class LibraryDocFragment extends Fragment {
|
||||||
|
|
||||||
private TextView textView; // フィールドとして TextView を定義
|
private TextView textView; // フィールドとして TextView を定義
|
||||||
|
|
||||||
|
@ -37,8 +37,8 @@ public class LibraryXFragment extends Fragment {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Factory method for creating a new instance of the fragment
|
// Factory method for creating a new instance of the fragment
|
||||||
public static LibraryXFragment newInstance(String data) {
|
public static LibraryDocFragment newInstance(String data) {
|
||||||
LibraryXFragment fragment = new LibraryXFragment();
|
LibraryDocFragment fragment = new LibraryDocFragment();
|
||||||
|
|
||||||
// フラグメントにデータを渡す
|
// フラグメントにデータを渡す
|
||||||
Bundle args = new Bundle();
|
Bundle args = new Bundle();
|
Loading…
Reference in New Issue
Block a user