Комментарии:
WOW! Fantastic video. This explained fragments better than my instructors by a massive margin. Keep up the great work!
Ответитьthanks a lot for this helpful vedeo. in the new android ver5sion it is must to add findviewbyid for the two buttons otherwise error will be reported
ОтветитьBest Video on Fragments!
ОтветитьBro..
Where to code inside a fragment. Could u provide code for adding two numbers inside fragments..
Man, thanks!! That tutorial was on point!
Ответить"setonClickListener" this function is not show in my android. can you tell me the reason of it or tell me other way to show it or alternate of this.
Ответитьthank you very much for such a nice tutorial series. I have one query that Every button click is pushing new fragment instance, it may cause memory issue, how to push fragment uniquely in backstack ?
ОтветитьThat was a great video. Thank you!
Ответитьthanks man, after 4 years this video is still very useful :)
ОтветитьExtremely useful, Thank you
ОтветитьHey! How you used button views without binding them to ids?
ОтветитьThank you. I have a question . How to design fragments to get whole screen? I have a recycleview and I want to when I click on one of them, open fragment
ОтветитьVery good explanation thank s
ОтветитьA million subs for this man. Thank you! Danke Schön
ОтветитьAll Super Good . I have doubt and really excited to know how can we use btnFragment1 without declararion in code on MainActivity.
ОтветитьIf you get unknown fragments error just add line tools:layout="@layout/your_fragment"
Ответитьgood tutorial
ОтветитьThank you very much, thank you for sharing . I bow to you.
ОтветитьVery clear and still relevant guide in 2023. Thank you
Ответитьsir it gets framents has bug hot to solve that...
also how you access buttons on clicklistener without declaring it above...
Incredible explanation, thank you so much
ОтветитьAndroid fragments on iPad in thumbnail??
ОтветитьI'm using ANdroid Studio Flamingo. When I create empty project, I'm not able to see Action bar, is this because by default action bar is not set? how to make it visible by default?
ОтветитьThank you so much! Your explanation is really comprehensive))
ОтветитьWonderful tutorial. I have a question. How can you call button by ID without declaring the variable?
ОтветитьGreat job making this concept simple and easy to understand.
ОтветитьThank you so much, itz very useful for me 🎉🎉
Ответитьframelayout, begintransaction, commit, addtobackstack
ОтветитьGREAT Explanation dude!!!
Ответитьdidn't understand how did you use buttons in mainactivity without initialization ?
Ответитьi love u bro
ОтветитьGreat Video, I am new to kotlin, I wonder why your can direct use the button , such as btnFragment1.setOnClickListener , I have to val btnFrament1 botton::
Ответитьthose who can't see their design in replace <fragment with <FrameLayout
ОтветитьFantastic workk
ОтветитьI keep getting unresolved reference fragment
ОтветитьI can't proceed because of the design tab, buttons and fragment won't show up. feels like I need the Gradle Scripts
Ответитьbest video explanation of fragments using Kotlin I have found so far
ОтветитьHey Philip ! Wehe did you learn all these things ? You seemed pretty familiar and sophisticated while coidng. Can you recommend some sources ? I've bought some Udemy courses but they doesn't expalin a lot to me.
ОтветитьConsider this comment as the *Lip Smack NICE* meme.
Ответитьgreat work bro i have created similar video on my channel if you have time do check it
ОтветитьF A N T A S T I C. Thank you so much <3.
ОтветитьComprehensive tutorial. Thanks 🙏
ОтветитьVery useful!! Thank you.
Ответитьwith viewbinding:
binding.btnFirstFragment.setOnClickListener {
supportFragmentManager.beginTransaction().apply {
replace(R.id.fragment, firstFragment)
commit()
}
}
binding.btnSecondFragment.setOnClickListener {
supportFragmentManager.beginTransaction().apply {
replace(R.id.fragment, secondFragment)
commit()
}
}
those lines apparently don't work in my Android Studio. its looks like old lines for my version
rlly dont know
good fundementals - slightly annoying that you use syntetics everywhere so have to google a lot. Why not to use findViewById initially?
Ответить