mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03: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);
|
||||
|
@ -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");
|
||||
|
|
|
@ -8,7 +8,7 @@ import android.widget.TextView;
|
|||
|
||||
import androidx.fragment.app.Fragment;
|
||||
|
||||
public class LibraryXFragment extends Fragment {
|
||||
public class LibraryDocFragment extends Fragment {
|
||||
|
||||
private TextView textView; // フィールドとして TextView を定義
|
||||
|
||||
|
@ -37,8 +37,8 @@ public class LibraryXFragment extends Fragment {
|
|||
}
|
||||
|
||||
// Factory method for creating a new instance of the fragment
|
||||
public static LibraryXFragment newInstance(String data) {
|
||||
LibraryXFragment fragment = new LibraryXFragment();
|
||||
public static LibraryDocFragment newInstance(String data) {
|
||||
LibraryDocFragment fragment = new LibraryDocFragment();
|
||||
|
||||
// フラグメントにデータを渡す
|
||||
Bundle args = new Bundle();
|
Loading…
Reference in New Issue
Block a user