作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我根本不明白DialogFragment。如何创建一个,如何从中获取用户输入,并将其设置到 TextView 中。
我希望“标题”按钮在单击时弹出一个 DialogFragment,要求用户输入其情绪板的标题。用户输入标题。当他们单击 PostiveButton“完成”时,用户的标题将设置到情绪板的左上角框架中,其中有一个带有提示的 TextView。
拜托!提出问题,因为我不太了解对话框设置。
这是我的 MainActivity 中的 main_layout 的图片。每个元素都有一个“@+id/”。
最佳答案
您正在寻找的解决方案是回调:
interface Callback {
updateText(String text)
}
class CoolActivity... implements Callback
onCreate {
//find your views
showDialogBtn.setOnClickListener(...
FragmentTransaction ft = getSupportFragmentManager().beginTransaction();
Fragment prev = getSupportFragmentManager().findFragmentByTag("yourTag");
if (prev != null) {
ft.remove(prev);
}
ft.addToBackStack(null);
DialogFragment dialogFragment = ExampleDialogFragment.newInstance();
dialogFragment.show(ft, "yourTag");
)
}
@Override
updateText(String text) {
youtView.setText(text)
}
class CoolDialogFragment extend DialogFragment {
private Callback callback;
@Override
void onAttach(Context context) {
callback = (Callback) context
}
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
Dialog dialog = new Dialog(getActivity());
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
return dialog;
}
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
return inflater.inflate(R.layout.dialog_fragment_example, container, false);
}
@Override
public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
//find the views in the dialog fragment
closeBtn.clickListener(...
callback.updateText(edittext.getText().toString())
dismiss()
)
}
}
这是一个对话框 fragment 的要点 https://gist.github.com/cutiko/7e307efcf7492ea52ef05cd90f9e3203
问题是您想要将对话框 fragment 与另一个组件连接起来,并且想要直接进行。这不被认为是一个好的实践,因为会创建 2 个高度附加的组件,所以最好是使用数据持久性和某种形式的 react 编程
关于java - 如何将按钮连接到将在 FrameLayout 内使用用户输入编辑 TextView 的对话框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58244981/
我是一名优秀的程序员,十分优秀!