gpt4 book ai didi

android - fragment 回调到另一个带有 fragment 的 Activity ,导致 fragment View 出现空指针

转载 作者:搜寻专家 更新时间:2023-11-01 09:06:59 24 4
gpt4 key购买 nike

所以我有一个带有 View 寻呼机和 3 个 fragment 的 Activity(我们称之为 A),其中一个 fragment (我们称之为 fragment A)加载了一个列表。此列表的 onclickitem 列表将触发对 Activity (A) 的回调,因此它会启动一个带有新 fragment (也称为 B)的新 Activity (我们称之为 B):

带有列表的 fragment (A),包含接口(interface)和onclickItemListener():

// Container Activity must implement this interface
public interface onProcessSelectedListener{

public void onMyProcessSelected(MyProcessDTO process);
}

actualListView.setOnItemClickListener(
new OnItemClickListener() {

@Override
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {

IpdmsMobileMenuItemListDTO dto=(IpdmsMobileMenuItemListDTO) parent.getItemAtPosition(position);

if(getView().findViewById(R.id.myprocessdetail)!=null)
updateProcess((MyProcessDTO) dto.getDto());
else{

mListener.onMyProcessSelected((MyProcessDTO) dto.getDto());
}
}
});

如果布局不显示特定 View ,它将在包含带有此 fragment 的 View 寻呼机的 Activity(A) 上启动回调方法:

@Override
public void onMyProcessSelected(MyProcessDTO process) {

Intent showContent = new Intent(getApplicationContext(),MyProcessDetail.class);
showContent.putExtra("Process", process);
startActivity(showContent);
}

它将调用新 Activity (B):

@Override
public void onCreate() {

this.setTheme(getThemeId());
super.onCreate(bundle);

//get extras from bundle
extras = getIntent().getExtras();
//requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);

setContentView(getLayoutId());

MyProcessDTO process= (MyProcessDTO) extras.get("Process");

//get fragment
MyProcessDetailsFragment contentProcess= (MyProcessDetailsFragment) getSupportFragmentManager()
.findFragmentById(R.id.view_fragment);

contentProcess.updateProcess(process);
}

在 Activity(B) 中加载的布局,包含指向 Fragment(B) 类的 fragment 标签Activity(B) 调用 fragment(B) 方法 updateProcess():

public void updateProcess(MyProcessDTO 进程){

    nrProcTV.setText(process.getNrprocesso());
tipoTV.setText(process.getVariante());
}

但由于某些原因,这些 TextView 为空。它们在 fragment(B) 的 onActivityCreated 方法上初始化。:

@Override
public void initializeFragment(Bundle savedInstanceState) {

super.initializeFragment(savedInstanceState);

nrProcTV= (TextView) getView().findViewById(R.id.nrprocesso_value);
tipoTV= (TextView) getView().findViewById(R.id.tipoprocesso_value);

}

为什么在调用updateProcess方法之前没有执行onActivityCreated方法??

问候,

.

最佳答案

textView 为空,因为您在 fragment 通过 onViewCreated() 之前访问它们。您可以通过让 Activity 在 Fragment 中设置一个字段来解决您的问题,并让 Fragment 使用该字段在其 onViewCreated 方法中查看 view.setText。

关于android - fragment 回调到另一个带有 fragment 的 Activity ,导致 fragment View 出现空指针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11122875/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com