第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

java.lang.RuntimeException:無(wú)法實(shí)例化活動(dòng)

java.lang.RuntimeException:無(wú)法實(shí)例化活動(dòng)

繁花如伊 2023-08-16 17:50:28
單擊 AccountFragment 中的按鈕后出現(xiàn)此錯(cuò)誤public class AccountFragment extends Fragment  {    private static final String TAG = "Profile" ;    FirebaseAuth firebaseAuth;    FirebaseUser currentUser;    DatabaseReference databaseReference;    TextView tv_name, tv_email, tv_gender, tv_home, tv_phone;    private String userID;    Button btn_update;    public AccountFragment() {        // Required empty public constructor    }    @Override    public View onCreateView(LayoutInflater inflater, ViewGroup container,                             Bundle savedInstanceState) {        // Inflate the layout for this fragment        View view = inflater.inflate(R.layout.fragment_account, container, false);        tv_name=view.findViewById(R.id.tv_name);        tv_email=view.findViewById(R.id.tv_email);        tv_gender=view.findViewById(R.id.tv_gender);        tv_home=view.findViewById(R.id.tv_home);        tv_phone=view.findViewById(R.id.tv_phone);        btn_update=view.findViewById(R.id.btn_update);        //ini        firebaseAuth = FirebaseAuth.getInstance();        currentUser = firebaseAuth.getCurrentUser();        userID = currentUser.getUid();        databaseReference = FirebaseDatabase.getInstance().getReference("Customer").child(firebaseAuth.getUid());        //For Retrieve Information        databaseReference.addValueEventListener(new ValueEventListener() {            @Override            public void onDataChange(@NonNull DataSnapshot dataSnapshot) {                Log.d( TAG, "onDataChange :" +dataSnapshot);                    Customer cust = dataSnapshot.getValue(Customer.class);                    tv_name.setText(cust.getName());                    tv_email.setText(cust.getEmail());                    tv_gender.setText(cust.getGender());                    tv_home.setText(cust.getHome_address());                    tv_phone.setText(cust.getTelephone_number());            }單擊按鈕后,我收到此錯(cuò)誤 2019-09-22 22:20:32
查看完整描述

1 回答

?
智慧大石

TA貢獻(xiàn)1946條經(jīng)驗(yàn) 獲得超3個(gè)贊

您無(wú)法使用 startActivity 打開(kāi)片段,您需要實(shí)現(xiàn)一個(gè)回調(diào),該回調(diào)會(huì)在您的用戶個(gè)人資料成功更新時(shí)觸發(fā)。在您的主機(jī)活動(dòng)中創(chuàng)建一個(gè)界面,如下所示:


public interface UpdateProfileSuccess{

    void presentAccountFragment();

}

還在活動(dòng)中將其實(shí)例化為:


UpdateProfileSuccess callback = new UpdateProfileSuccess(){

@Override

void presentAccountFragment(){

getSupportFragmentManager().beginTransaction().replace(R.id.container,new 

        AccuontFragment()).commit();

    }

}

在您的更新配置文件片段中,創(chuàng)建一個(gè)構(gòu)造函數(shù),將該回調(diào)作為:


private MainActivity.UpdateProfileSuccess callback;

public UpdateProfileFragment(MainActivity.UpdateProfileSuccess callback){

    this.callback = callback;

}

最后在請(qǐng)求的 onComplete 中將該回調(diào)消耗為:


callback.presentAccountFragment();

這樣您的 Activity 將負(fù)責(zé)呈現(xiàn) AccountFragment。


查看完整回答
反對(duì) 回復(fù) 2023-08-16
  • 1 回答
  • 0 關(guān)注
  • 132 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)