Android导航控制器+动态片段按钮动作

时间:2019-07-15 22:47:43

标签: android android-fragments android-architecture-components

我正在尝试实现一个通用片段来显示标题,消息和按钮操作(这是问题所在)。我无法以一般方式解析executeAction()方法。我至少有20个屏幕,唯一的区别是标题消息和按钮操作。

class InfoTemplateFragment : BaseFragment() {

    override fun getLayoutResId() = R.layout.fragment_template_info

    private val args: InfoTemplateFragmentArgs by navArgs()

    override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
        super.onViewCreated(view, savedInstanceState)
        templateInfoTitleTextView.setText(args.title)
        templateInfoMessageTextView.setText(args.message)
        templateInfoButton.setText(args.buttonText)
        templateInfoButton.setOnClickListener {
            **executeAction() make dynamic this???????**
        }
    }
}

UI XML

<androidx.appcompat.widget.AppCompatTextView
    android:id="@+id/templateInfoTitleTextView"
    style="@style/Heading1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="@dimen/default_margin_super_extra_large"
    tools:text="Title"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

<androidx.appcompat.widget.AppCompatTextView
    android:id="@+id/templateInfoMessageTextView"
    style="@style/BodyText"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="@dimen/default_margin_extra_large"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/templateInfoTitleTextView"
    tools:text="Message" />

<com.google.android.material.button.MaterialButton
    android:id="@+id/templateInfoButton"
    style="@style/PrimaryOutlinedButtonRoundedCorner"
    android:layout_width="match_parent"
    tools:text="Button"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent" />

导航图为:

<fragment
    android:id="@+id/infoTemplateFragment"
    android:name="ui.templates.InfoTemplateFragment"
    android:label="InfoTemplateFragment"
    tools:layout="@layout/fragment_template_info">
    <argument
        android:name="title"
        app:argType="reference" />
    <argument
        android:name="message"
        app:argType="reference" />
    <argument
        android:name="button_text"
        app:argType="reference" />
</fragment>

我要导航到一个新片段:

var bundle = bundleOf("title" to R.string.title_one,
"message" to R.string.message_one, "button_text" to R.string.accept)
view.findNavController().navigate(R.id.infoTemplateFragment, bundle)

enter image description here

欢迎提出任何想法。

非常感谢

0 个答案:

没有答案