在片段科特林中调用DialogFragment

时间:2019-05-26 19:51:31

标签: android android-fragments kotlin

我试图将我的dialogfragment称为loginfragment,并显示一个警告对话框,show方法显示:

  

以下任何一个函数都不能通过参数调用   提供。 show(FragmentManager !, String!)在   org.greenstand.android.TreeTracker.fragments.CustomDialogFragment   show(FragmentTransaction !, String!)在   org.greenstand.android.TreeTracker.fragments.CustomDialogFragment

val newFragment = CustomDialogFragment.newInstance("pass content here")

val fm = fragmentManager
newFragment.show(fm, "look")

这是我的CustomDialogFragment代码:

import android.app.Activity
import android.content.Intent
import android.content.pm.PackageManager
import android.os.Bundle
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import android.widget.Toast
import androidx.fragment.app.Fragment
import androidx.lifecycle.Observer
import kotlinx.android.synthetic.main.activity_main.*
import kotlinx.android.synthetic.main.fragment_login.*
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.GlobalScope
import kotlinx.coroutines.launch
import kotlinx.coroutines.withContext
import org.greenstand.android.TreeTracker.R
import org.greenstand.android.TreeTracker.application.Permissions
import org.greenstand.android.TreeTracker.utilities.*
import org.greenstand.android.TreeTracker.viewmodels.LoginViewModel
import org.koin.android.viewmodel.ext.android.viewModel
import timber.log.Timber
class CustomDialogFragment : DialogFragment()
{
    private var content: String? = null

    override fun onCreate(savedInstanceState: Bundle?)
    {
        super.onCreate(savedInstanceState)
        content = arguments!!.getString("content")

        val style = DialogFragment.STYLE_NO_FRAME
        val theme = R.style.DialogTheme
        setStyle(style, theme)
    }


    override fun onAttach(context: Context) {
        super.onAttach(context)
    }

    override fun onCreateView(inflater: LayoutInflater, container: ViewGroup, savedInstanceState: Bundle): View
    {
        val view = inflater!!.inflate(R.layout.layout_dialog, container, false)

        val btnAccept = view.findViewById<View>(R.id.buttonAccept) as Button

        val textViewContent = view.findViewById<View>(R.id.textViewContent) as TextView
        textViewContent.text = content;

        btnAccept.setOnClickListener{
            dismiss();
        }

        return view;
    }

    companion object
    {
        fun newInstance(content: String) : CustomDialogFragment
        {
            val f = CustomDialogFragment()

            val args = Bundle()
            args.putString("content", content)
            f.arguments = args

            return f
        }
    }

}

有人可以指出我需要传递给show方法的确切信息吗?任何帮助表示赞赏,谢谢:)

3 个答案:

答案 0 :(得分:1)

[更新] 问题在于该方法可以接收FragmentManager,但不必感谢,请看一下错误和不感谢Kotlin符号

FragmentManager!

所以你可以做

fm?.let {newFragment.show(fm, "your tag")}

请参阅Noushad Hasan答案中的评论

您正在将FragmentManager传递给方法,它需要FragmentTransactionString作为标记:

val transaction = supportFragmentManager.beginTransaction()
newFragment.show(transaction, "SOME_TAG")

一些建议:

通过使用Kotlin标准函数

,您可以使您DialogFragment更多 kotliny
companion object {

        private const val KEY = "param1"

        @JvmStatic
        fun newInstance(param1: String) =
            ExampleDialogFragment().apply {
                arguments = Bundle().apply {
                    putString(KEY, param1)
                }
            }
    }

通过使用Android Studio向导创建Fragment并选中工厂方法选项,您可以得到一个很好的例子。

此外,由于该标记将用于您的DialogFragment,因此您可以将其设为公共常量:

 companion object {
        const val TAG = "TAG"
 }

也许您想仔细检查对话框片段是否已经存在并将其删除,以实际用作新对话框

        val transaction = supportFragmentManager.beginTransaction()
        val previous = supportFragmentManager.findFragmentByTag(ExampleDialogFragment.TAG)
        if (previous != null) {
            transaction.remove(previous)
        }
        transaction.addToBackStack(null)

        val dialogFragment = ExampleDialogFragment.newInstance("parameter")
        dialogFragment.show(transaction, ExampleDialogFragment.TAG)

答案 1 :(得分:0)

请确保您的活动是https://developer.android.com/reference/androidx/fragment/app/FragmentActivity.html的子级,例如,您可以将https://developer.android.com/reference/androidx/appcompat/app/AppCompatActivity用作父级活动。

然后使用getSupportFragment()方法或仅使用val fm = supportFragmentManager

来获取fragmentManager

答案 2 :(得分:0)

在您的DialogFragment类中没有看到customDialog()导入。实际上,line no: 9上有一个片段导入。您确定要从正确的DialogFragment扩展吗?