Как я могу выполнить setOnClickListener для фрагмента, которого нет в моей активности?

#android #kotlin

#Android #kotlin

Вопрос:

Здесь у меня есть 3 фрагмента, я показываю их, у них есть текстовое представление с идентификатором omitir_swipe, и мне нужно использовать его в деятельности, где я показываю эти 3 фрагмента, как бы я этого добился?:

3 фрагмента xml:

 <?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:background="@color/colorWhite"
    >

    <ImageView
        android:id="@ id/image_swipe"
        android:layout_width="200dp"
        android:layout_height="200dp"
        android:src="@drawable/books_swipe"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.246"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.329"

        />

    <TextView
        android:id="@ id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="116dp"
        android:text="Amantium irae amoris integratio est."
        android:textAlignment="center"
        android:textColor="@color/colorBlack"
        android:textSize="16dp"
        android:textStyle="bold"
        app:layout_constraintBottom_toTopOf="@ id/image_swipe"
        app:layout_constraintEnd_toEndOf="@ id/image_swipe"
        app:layout_constraintHorizontal_bias="0.465"
        app:layout_constraintStart_toStartOf="@ id/image_swipe" />

    <TextView
        android:id="@ id/omitir_swipe"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Omitir"
        android:textSize="16sp"
        android:textStyle="bold"
        android:layout_marginRight="30dp"
        android:textColor="@color/colorBlack"
        app:layout_constraintHorizontal_bias="1"
        app:layout_constraintBottom_toBottomOf="@ id/textView"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toEndOf="@ id/textView"
        app:layout_constraintTop_toTopOf="@ id/textView" />

</androidx.constraintlayout.widget.ConstraintLayout>
  

3 одинаковые, поэтому я загружаю только 1, у них одинаковый идентификатор, чтобы использовать только 1, я не знаю, хорошо ли это, не могли бы вы сказать мне, менять его или нет

3 Фрагмента .kt kotlin:

 import android.os.Bundle
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import androidx.fragment.app.Fragment
import com.yr.iolite.R

class SwipeFragement1 : Fragment()
{
    override fun onCreateView(
        inflater: LayoutInflater,
        container: ViewGroup?,
        savedInstanceState: Bundle?
    ): View? {
        return inflater.inflate(R.layout.fragment_splash_screen_1, container, false)
    }
}
  

в 3 измените только это число fragment_splash_screen_change это число

Действие, в котором я показываю 3 фрагмента xml:

 <?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".Splash.SplashActivity">


    <ImageView
        android:id="@ id/bg_snow_splash"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:src="@drawable/bg_snow"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        />

    <ImageView
        android:id="@ id/logo_splash"
        android:layout_width="320dp"
        android:layout_height="200dp"
        android:layout_marginTop="20dp"
        android:src="@drawable/logo"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0"
        />

    <com.airbnb.lottie.LottieAnimationView
        android:id="@ id/penguin_splash"
        android:layout_width="250dp"
        android:layout_height="300dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.391"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@ id/logo_splash"
        app:layout_constraintVertical_bias="0"
        app:lottie_autoPlay="true"
        app:lottie_loop="true"
        app:lottie_rawRes="@raw/party_penguin"
        />

    <com.cuberto.liquid_swipe.LiquidPager
        android:id="@ id/swipe_screen"
        android:layout_width="0dp"
        android:layout_height="0dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        />

</androidx.constraintlayout.widget.ConstraintLayout>
  

Файл .kt из предыдущей активности:

 import android.content.Intent
import android.content.SharedPreferences
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import android.os.Handler
import android.os.Looper
import android.provider.AlarmClock.EXTRA_MESSAGE
import android.view.animation.Animation
import android.view.animation.AnimationUtils
import android.widget.ImageView
import android.widget.TextView
import androidx.fragment.app.Fragment
import androidx.fragment.app.FragmentManager
import androidx.fragment.app.FragmentStatePagerAdapter
import androidx.viewpager.widget.ViewPager
import com.airbnb.lottie.LottieAnimationView
import com.yr.iolite.MainActivity
import com.yr.iolite.R
import com.yr.iolite.WriteProblem.MinOrMax
import kotlinx.android.synthetic.main.activity_splash.*
import kotlinx.android.synthetic.main.fragment_splash_screen_1.*

class SplashActivity : AppCompatActivity()
{
    var bg: ImageView? = null
    var logo: ImageView? = null
    var penguin: LottieAnimationView? = null
    var anim: Animation? = null
    private var pagerAdapter : ScreenSliderPagerAdapter? = null
    private val SPLASH_TIME_OUT : Int = 5500
    private var sharedPref : SharedPreferences ? = null
    private var omitir_swipe : TextView? = null
    override fun onCreate(savedInstanceState: Bundle?)
    {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_splash)
        bg = findViewById(R.id.bg_snow_splash)
        logo = findViewById(R.id.logo_splash)
        penguin = findViewById(R.id.penguin_splash)
        omitir_swipe = findViewById(R.id.omiti_swipe)

        val viewPager : ViewPager = findViewById(R.id.swipe_screen)
        pagerAdapter = ScreenSliderPagerAdapter(supportFragmentManager)
        viewPager.adapter = pagerAdapter
        anim = AnimationUtils.loadAnimation(this, R.anim.swipe_screen_anim)
        viewPager.startAnimation(anim)
        bg_snow_splash.animate().apply {
            duration = 1000
            startDelay = 4000
            translationY(-1600f)
        }
        logo_splash.animate().apply {
            duration = 1000
            startDelay = 4000
            translationY(-1400f)
        }
        penguin_splash.animate().apply {
            duration = 1000
            startDelay = 4000
            translationY(1400f)
        }

        Handler(Looper.getMainLooper()).postDelayed({
            var sharedPref= getSharedPreferences("SharedPref", MODE_PRIVATE)
            var isFirstTime : Boolean = sharedPref.getBoolean("firstTime", true)
            if(isFirstTime)
            {
                var editor : SharedPreferences.Editor = sharedPref.edit()
                editor.putBoolean("firstTime", false)
                editor.commit()
            }
            else
            {
                val intent = Intent(this, MinOrMax::class.java).apply {
                    putExtra(EXTRA_MESSAGE, "Intento con exito")
                }
                startActivity(intent)
                finish()
            }
        }, 5000)

        /*findViewById<TextView>(R.id.omitir_swipe).setOnClickListener{
            val intent = Intent(this, MainActivity::class.java).apply {
                putExtra(EXTRA_MESSAGE, "xd")
            }
            startActivity(intent)
            finish()
        }*/
    }
    private class ScreenSliderPagerAdapter (fm : FragmentManager) : FragmentStatePagerAdapter(fm)
    {
        val NUM_TABS = 3
        override fun getItem(position: Int): Fragment
        {
            return when (position)
            {
                0 -> SwipeFragement1()
                1 -> SwipeFragement2()
                else -> SwipeFragement3()
            }
        }
        override fun getCount(): Int = NUM_TABS
    }
}
  

У меня нет никаких ошибок, но когда я раскомментирую setOnClickListener, он не работает, он выдает ошибку исключения нулевого указателя, и это потому, что идентификатор omit_swipe отсутствует в activity xml, как вы можете видеть выше, вместо этого он находится во фрагментах.

Комментарии:

1. Вы не можете получить доступ к представлениям фрагмента в activity. Установите ClickListener в самом фрагменте.

2. @iamanbansal Итак, как выполняются действия splash?

3. что делать? что вы хотите сделать?

4. @iamanbansal Как работают приложения с приветственными фрагментами, которые скользят и в конце нужно нажать кнопку пропустить, и она просто переходит к MainActivity?

5. Вы также можете вызвать startactivity из fragment и finish

Ответ №1:

Вы можете запустить новое действие и завершить текущее из фрагмента.

 class SwipeFragement1 : Fragment(){
    override fun onCreateView(
        inflater: LayoutInflater,
        container: ViewGroup?,
        savedInstanceState: Bundle?
    ): View? {
        val view = inflater.inflate(R.layout.fragment_splash_screen_1, container, false)
        view.findViewById<TextView>(R.id.omitir_swipe).setOnClickListener{
            val intent = Intent(activity, MainActivity::class.java).apply {
                putExtra(EXTRA_MESSAGE, "xd")
            }
            activity.startActivity(intent)
            activity.finish()
        }
        return view
    }
}
  

Комментарии:

1. Мне кажется, это очень хорошо, но как мне выполнить часть обработчика (Looper.getMainLooper()).postDelayed поскольку это помогает мне, чтобы это действие больше не отображалось

2. И где будет возврат?