gpt4 book ai didi

android - 如何在Android中没有 Activity 和 fragment 的功能中使用布局组件?

转载 作者:行者123 更新时间:2023-12-02 13:42:25 26 4
gpt4 key购买 nike

我有一个布局,我想在一个函数中使用它的组件。我怎样才能做到这一点?

这是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="wrap_content"
android:orientation="vertical">
<com.google.android.material.textview.MaterialTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:id="@+id/title"
android:layout_gravity="center"
android:textColor="#0055FF"
android:textSize="30dp"/>
</LinearLayout>

这是函数:
fun Context.Dialog(){
title.setOnItemClickListener{
Toast.makeText(this,"OK",Toast.LENGTH_LONG).show()
}
}

但是 对话框函数无法识别 标题。我不想在 Activity 或片段中使用 对话框函数。

最佳答案

我不会将OnCLickListener的初始化移出 Activity 或片段,因为在那里( Activity 或片段中)您可以访问布局中定义的所有 View 。但是,如果您要根据 Activity 或片段创建单独的函数,则需要将 View 或 Activity 或片段作为参数传递:

// passing views
fun showDialog(title: View) {
title.setOnClickListener { Toast.makeText(title.context, "OK", Toast.LENGTH_LONG).show() }
}

// passing activity
fun showDialog(activity: Activity) {
val title: View = activity.findViewById(R.id.title);
title.setOnClickListener { Toast.makeText(activity, "OK", Toast.LENGTH_LONG).show() }
}

// passing fragment
fun showDialog(fragment: Fragment) {
val title: View? = fragment.view?.findViewById(R.id.title);
title?.setOnClickListener { Toast.makeText(fragment.context, "OK", Toast.LENGTH_LONG).show() }
}

您也可以在 View上创建扩展功能:
fun View.showDialogWhenClick() {
setOnClickListener { Toast.makeText(context, "OK", Toast.LENGTH_LONG).show() }
}

像这样在Activity或Fragment中使用它:
title.showDialogWhenClick()

关于android - 如何在Android中没有 Activity 和 fragment 的功能中使用布局组件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62227726/

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