Android 가 Fragment 에서 다른 Activity 로 이동 하 는 간단 한 인 스 턴 스
Android―Fragment 의 정적 등록 과 동적 등록
Fragment 에서 다른 Activity 로 전환 하기 위해 다음 파일 을 만들어 야 합 니 다.
첫 번 째 단계:레이아웃 파일 을 간단하게 작성 합 니 다 fragmentactivity.xml 와 추상 클래스 Template Fragment Activity.java 코드 는 다음 과 같 습 니 다.
fragment_activity.xml
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/temp_fragment_activity"
android:layout_width="match_parent"
android:layout_height="match_parent">
</FrameLayout>
fragment_activity.xml 레이아웃 은 주로 각 fragment 레이아웃 을 불 러 오 는 데 사 용 됩 니 다.예 를 들 어 fragmentone.xml 와 fragmenttwo.xml。TemplateFragmentActivity.java
package com.example.myapplication;
import android.os.Bundle;
import androidx.annotation.Nullable;
import androidx.appcompat.app.AppCompatActivity;
import androidx.fragment.app.Fragment;
import androidx.fragment.app.FragmentManager;
import androidx.fragment.app.FragmentTransaction;
public abstract class TemplateFragmentActivity extends AppCompatActivity
{
private FragmentManager fm;
private FragmentTransaction ts;
private Fragment fragment;
// , Fragment
protected abstract Fragment createFragment();
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.fragment_activity);
fm = getSupportFragmentManager();
ts = fm.beginTransaction();
if (fragment == null){
fragment = createFragment();
ts.add(R.id.temp_fragment_activity,fragment);
ts.commit();
}
}
}
두 번 째 단계:클래스 Fragment OneActivity 와 Fragment Two Activity 계승 클래스 Template Fragment Activity 를 추상 적 인 방법 으로 createFragment()실현FragmentOneActivity.java
package com.example.myapplication;
import androidx.fragment.app.Fragment;
public class FragmentOneActivity extends TemplateFragmentActivity {
@Override
protected Fragment createFragment() {
return new FragmentOne();
}
}
Fragment Two Activity.java 는 Fragment One Activity.java 와 유사 하 며 중복 되 지 않 습 니 다.세 번 째 단계:각각 fragment 작성one.xml 와 fragmentto.xml 레이아웃 파일 을 작성 하고 FragmentOne.java 와 FragmentTwo.java 를 통 해 해당 하 는 레이아웃 파일 을 연결 하고 구체 적 인 기능 을 수행 합 니 다.
fragment_one.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:background="@color/colorPrimaryDark"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:text=" FragmentTwoActivity"
android:textSize="20sp"
android:textAllCaps="false"
android:textColor="#F70505">
</TextView>
<Button
android:id="@+id/btn_fm_one"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" "
android:textSize="30dp"
android:layout_marginTop="20dp">
</Button>
</LinearLayout>
fragment_to.xml 와 fragmentone.xml 와 유사 하여 중복 되 지 않 습 니 다.FragmentOne.java
package com.example.myapplication;
import android.content.Intent;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.fragment.app.Fragment;
public class FragmentOne extends Fragment {
private Button mBtnFragmentOne;
@Nullable
@Override
public View onCreateView(@NonNull LayoutInflater inflater,
@Nullable ViewGroup container,
@Nullable Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.fragment_one,container,false);
mBtnFragmentOne = view.findViewById(R.id.btn_fm_one);
mBtnFragmentOne.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(getActivity(),FragmentTwoActivity.class);
startActivity(intent);
}
});
return view;
}
}
Fragment 에서 Activity 로 전환 하 는 방법 은 Activity 에서 Activity 로 전환 하 는 방법 과 유사 합 니 다.다음 과 같 습 니 다.
Intent intent = new Intent(getActivity(),FragmentTwoActivity.class);
startActivity(intent);
Fragment Two.java 는 Fragment One.java 와 유사 하 며 중복 되 지 않 습 니 다.시연
총결산
위 에서 기술 한 것 은 여러분 에 게 소 개 된 Android 가 Fragment 에서 다른 Activity 로 이동 하 는 간단 한 실례 입 니 다.여러분 에 게 도움 이 되 기 를 바 랍 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Kotlin의 기초 - 2부지난 글에서는 Kotlin이 무엇인지, Kotlin의 특징, Kotlin에서 변수 및 데이터 유형을 선언하는 방법과 같은 Kotlin의 기본 개념에 대해 배웠습니다. 유형 변환은 데이터 변수의 한 유형을 다른 데이터...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.