您好,登錄后才能下訂單哦!
Android如何從Fragment跳轉(zhuǎn)到其他Activity的,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
為了更好的理解以下內(nèi)容,我們需要簡單了解一下Fragment的動態(tài)注冊方法
Android——Fragment的靜態(tài)注冊和動態(tài)注冊
為了實現(xiàn)從Fragment跳轉(zhuǎn)到其他Activity,下面需要創(chuàng)建以下文件:
第一步:簡單編寫布局文件fragment_activity.xml和抽象類TemplateFragmentActivity.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布局,例如fragment_one.xml和fragment_two.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; //抽象方法,用于創(chuàng)建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(); } }}
第二步:分別使類FragmentOneActivity和FragmentTwoActivity繼承類TemplateFragmentActivity并實現(xiàn)抽象方法createFragment()
FragmentOneActivity.java
package com.example.myapplication;import androidx.fragment.app.Fragment;public class FragmentOneActivity extends TemplateFragmentActivity { @Override protected Fragment createFragment() { return new FragmentOne(); }}
FragmentTwoActivity.java與FragmentOneActivity.java類似,不在重復。第三步:分別編寫fragment_one.xml和fragment_two.xml布局文件并通過編寫FragmentOne.java和FragmentTwo.java綁定對應(yīng)的布局文件,并實現(xiàn)其具體功能。
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="點擊下面的按鈕跳轉(zhuǎn)到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="跳轉(zhuǎn)" android:textSize="30dp" android:layout_marginTop="20dp"> </Button></LinearLayout>
fragment_two.xml與fragment_one.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跳轉(zhuǎn)到Activity與Activity跳轉(zhuǎn)到Activity方法類似,如下:
Intent intent = new Intent(getActivity(),FragmentTwoActivity.class);startActivity(intent);
FragmentTwo.java與FragmentOne .java類似,不在重復。
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。