Android Jetpack: How to smartly use fragments in your UI (Google I/O '18)

Поділитися
Вставка
  • Опубліковано 11 гру 2024

КОМЕНТАРІ • 96

  •  5 років тому +26

    9:16 kotlin doesn't have the keyword "new" :D

  • @70ME3E
    @70ME3E 6 років тому +29

    I feel like I got nothing out of this about how exactly should one use em smartly

    • @nickadams2361
      @nickadams2361 3 роки тому +2

      He is the worst speaker by far. The essence of what is wrong at Android

  • @albertbraun5351
    @albertbraun5351 6 років тому +4

    This talk gives us historical reasons for the invention of fragments, as well as their pros/cons. I found that helpful. Also, I liked the part (somewhere after 44:15) when Adam Powell says he thinks options menus should be deprecated and that android.app.FragmentManager actually is deprecated already. Yay.

    • @RS-kt6is
      @RS-kt6is 6 років тому +1

      what about SupportFragmentManager? :D

  • @Drizzle52693
    @Drizzle52693 6 років тому +68

    Was this conference set in the amazon rain forest?

  • @maxchin2
    @maxchin2 6 років тому +13

    I think the title of this presentation should be called how fragment usage is affected by new components. The content of this presentation is all scattered to many topics. There is no new things from fragment.

  • @Zhuinden
    @Zhuinden 6 років тому +4

    7:51 Fragments, and "Retain objects across configuration changes"? You can retain the Fragment itself, but it doesn't have something like onRetainCustomNonConfigurationInstance. It's one of those things in the Fragment API that is hard to do, and which is why ViewModel exists.

    • @Zhuinden
      @Zhuinden 5 років тому +1

      43:44 if you don't like Fragments, write your own :D

  • @Zissan
    @Zissan 6 років тому +3

    I am relatively new to Android (3 years so far).
    Fragment maybe not perfect, but it works for me.
    Why people hate fragment so much? I don't get it.

    • @omgpuppet
      @omgpuppet 5 років тому +1

      People just like to hate instead of weighing pros and cons logically.

  • @KasemJaffer
    @KasemJaffer 6 років тому +16

    This is all because the activity instance being destroyed and new one created. Why not fix Activity instead of adding a bunch of new classes (I know they are awesome but still ). Why not retain the activity instance on configuration changed?? I don't get it 😬

    • @IanLake
      @IanLake 6 років тому +4

      Android has, since the beginning, allowed you to handle configuration changes yourself. However, that involves you manually changing any resources (layouts, dimensions, etc) that differ between the separate configurations. That process is actually a lot more complicated and error prone assuming you are actually doing anything responsive (which you absolutely should) than just keeping your expensive data in a separate ViewModel object.

    • @KasemJaffer
      @KasemJaffer 6 років тому

      Ian Lake but if the Activity instance was retained we could just rebind our views from any viewmodel variable in the instance. I know this new viewmodel class is helpful for this case but wouldn't it be even better if the Activity instance is retained?

    • @IanLake
      @IanLake 6 років тому

      Kasem Saeed - that doesn't help you in needing to manually inflate a new layout associated with your new configuration or update the padding on every view that you use a @dimen variable on

    • @KasemJaffer
      @KasemJaffer 6 років тому

      Ian Lake That can always be taken from the resources inside onCreate method, no need to store it inside the viewmodel. The main issue I'm referring to is the complex variables , asynchronous tasks that is being destroyed along with the Activity. We had to handle that on our own just because the Activity is being destroyed.

    • @IanLake
      @IanLake 6 років тому

      Kasem Saeed - you need to handle one or the other. Reload every resource by hand or just store your data in something that survives and we'll reload your resources. One is a just a single line of code to access your ViewModel and a simple class, the other requires more and more work as your views and activities grow in complexity. Like I said, you have always been able to do it and for some apps, like a video player, you should definitely consider it. But there's a much, much, much higher chance of forgetting something and doing it wrong. There are specific lint checks to make it very difficult to do anything wrong with a ViewModel

  • @anegine
    @anegine 6 років тому +13

    9:42
    .replace(R.id.container, MyFragment())
    not
    .replace(R.id.container, new MyFragment())

    • @techgo4431
      @techgo4431 6 років тому +7

      Eugene Kirzhanov have to get out of that Java habit lol

    • @davethomas1303
      @davethomas1303 6 років тому +2

      😂

    • @shoebmoin10
      @shoebmoin10 6 років тому +1

      Its kotlin dear

  • @kasperfinne4514
    @kasperfinne4514 6 років тому +1

    So does the Navigation library supports having a backstack for each tab in a BottomNavigationView? Now that you recommend single Activity apps or is it still something we have to invent our self

  • @computerscience901
    @computerscience901 5 років тому +2

    Could you guys attach the slides to these presentations ?

  • @baieEtMotte
    @baieEtMotte 6 років тому +25

    Maybe it's time to make a mature API instead of making everything deprecated and changing paradigm at each iteration...

    • @AchrafAmil
      @AchrafAmil 5 років тому +1

      No. This is not how it works. I don't want a stagnating platform. It's ok to deprecate if you bring a better API.

    • @llothar68
      @llothar68 5 років тому +6

      @@AchrafAmil This is how iOS works. Some call it stagnation some call it stability. The base architecture should work 10 years after release. Android development sucks.

  • @alondiskin5308
    @alondiskin5308 6 років тому

    How would you scale an ever evolving ui module,without the ability to break/encapsulate/apply SRP to it? how would you present a composite ui, showing different ui pieces of different app features,and stay life cycle aware? that's why fragments,or at least the concept of fragments is essential .Api wise i would prefer moving as much abstractions as possible to xml components, keep those ui controllers lean.

  • @gaurav414u
    @gaurav414u 6 років тому +1

    How about maintaining the Toolbar in Single Activity Apps? How to have different toolbar styles for different fragments?

    • @alondiskin5308
      @alondiskin5308 6 років тому

      Fragments do provide a supporting behavior for that scenario, allowing you to manipulate the toolbar/actionbar menu, of the hosting activity.droidmentor.com/how-to-use-fragment-specific-menu-in-android/

    • @baieEtMotte
      @baieEtMotte 6 років тому +2

      Like everything in Android, Do It Yourself :).

    • @gaurav414u
      @gaurav414u 6 років тому

      Ha ha!

  • @typingcat
    @typingcat 6 років тому +9

    The music at the start is too loud compared to the voice volume.

  • @hdkloh
    @hdkloh 5 років тому +5

    Remove the concept of fragments in android and make activity more functional n lighter...

  • @mos6581com
    @mos6581com 6 років тому +12

    RIP Blobmoji

  • @南风不竞-b6b
    @南风不竞-b6b 6 років тому +41

    Still think fragment makes things even worse

    • @areebjamaliam
      @areebjamaliam 6 років тому +3

      But activity is horrible.

    • @alxkub
      @alxkub 6 років тому +15

      南风不竞 It’s not the idea of fragments that’s bad, it’s the API design made by Google is horrible.

    • @ap7467
      @ap7467 6 років тому

      Both have a different purpose

    • @whitecoder7119
      @whitecoder7119 5 років тому

      @@areebjamaliam without activity.. There no fragment.. 😋😋

  • @70ME3E
    @70ME3E 6 років тому

    34:21 what is an "app chrome" in "common app chrome"? I googled it but nothing

    • @4RickB
      @4RickB 6 років тому +1

      Usually when they are talking about "app chrome" (and I've seen this in several of the Google I/O videos), they are talking about the common part of an app that doesn't change like the App Navigation Bar or a bottom navigation bar, etc. (The idea of "chrome" is that's it's the decoration around the changing UI screens.)

  • @sathishgadde1924
    @sathishgadde1924 6 років тому

    How to manage fragment state duting backstack. Like first contains recyclerview and user scroll to end then onitemclick navigate to second screen. now if user back to previous fragment there is not state managed. it is possible or not.if possible how to manage ?

  • @sarahpohler4149
    @sarahpohler4149 6 років тому

    How to change the transition from switching from a drawerlayout to a fragment? How to use the onNavigationItemSelected() with the android navigation component??? MORE EXAMPLES PLS!!!

  • @dead_talash
    @dead_talash 6 років тому +7

    Does anyone still using Loaders?

    • @davideschembari3026
      @davideschembari3026 6 років тому +1

      good question :)

    • @thomash1576
      @thomash1576 6 років тому

      there is an approach for retaining your fragment states by using loaders ;- )

    • @Zhuinden
      @Zhuinden 5 років тому

      @@thomash1576 Which is crazy because it doesn't have onSaveInstanceState, therefore thankfully it was deprecated. I wish ViewModel had onSaveInstanceState...

  • @blockbusterlatefees7713
    @blockbusterlatefees7713 5 років тому +1

    I wish they had live code demos.

  • @hasszhao
    @hasszhao 6 років тому

    Nav-framework doesn't do "share view(element)" transition. Need update.

  • @khalidhamid7448
    @khalidhamid7448 6 років тому +1

    @Android Developers Where can I get this ppt

  • @SHIVASURYA
    @SHIVASURYA 6 років тому +1

    I feel personally lot of bugs in fragment restoring after destroying.

  • @bessermt
    @bessermt 6 років тому

    If a Fragment was designed to do everything an Activity does plus allow you to compose them, why didn't you just allow Activity to be composed? I'm not saying there isn't a good reason, but I would expect you to address this obvious question.

  • @hdkloh
    @hdkloh 5 років тому +4

    Sometimes Google makes simple things more complex eg. Fragments

  • @shababkarim5907
    @shababkarim5907 6 років тому +6

    Will he get fined if he says "pain in the ass"?

    • @GaneshBhambarkar
      @GaneshBhambarkar 6 років тому +1

      I was thinking the same thing! In his place, I would have accidentally said "pain in the ass".

  • @LiranBarsisa
    @LiranBarsisa 6 років тому +3

    Does this shirt mean the blob-emojis might come back?
    One can only hope...

  • @Actinesque
    @Actinesque 6 років тому +4

    Is it just me, or does Ian Lake look like Jimmy Hendricks from Silicon Valley?

  • @witoldsienski1709
    @witoldsienski1709 6 років тому +1

    Google should choose activities or fragments!

  • @nurhusni
    @nurhusni 5 років тому

    Where could I get that emoji shirt?

  • @hdkloh
    @hdkloh 4 роки тому

    Instead of fragments why don't you make activity lightweight....?

  • @ragupatt
    @ragupatt 6 років тому

    Does that mean we don't have to bother with fragment transactions in most cases? This is great!

  • @robatoto
    @robatoto 6 років тому +14

    Fragments are far too complicated and broken. Stop adding new stuff on top of them. You’re building on sand. Create a simple yet powerful replacement that does not use fragments at all.

    • @IanLake
      @IanLake 6 років тому +16

      robatoto - we actually specifically mentioned that we want to get to the point where there's no magic in Fragments and you (or us) can build something totally new on top of those better signals. That's exactly what we've been doing with Lifecycle and ViewModels and more of that to come. If anything, we're removing more and more things from Fragments, not building on top of them

    • @Hamza-ny7rx
      @Hamza-ny7rx 6 років тому

      i love to ues fragment its plug and play

    • @janlukes5833
      @janlukes5833 6 років тому +3

      Then maybe you should not be a developer.

    • @baieEtMotte
      @baieEtMotte 6 років тому +1

      Whole of the Android SDK sucks. You have to write half an OS to make simple things. If you use Qt, Xamarin or something similar, you can develop at least 50% faster

    • @sarahpohler4149
      @sarahpohler4149 6 років тому

      @Ian Lake We need more exmaples. How to change the transition from switching from a drawerlayout to a fragment? How to use the onNavigationItemSelected() with the android navigation component? How we should use this if we don't know how?

  • @damolaOnikoyi
    @damolaOnikoyi 3 роки тому

    hehehe watching this in 2021, I have a lotta of catching up to do as a newbie

  • @app_dev
    @app_dev 6 років тому +1

    What a confusing series of Google I/O. Each presentation is about same thing but nothing is clear.

  • @0877adri
    @0877adri 6 років тому +1

    How to make instant apps, when all your app is in one activity with fragments ?

    • @IanLake
      @IanLake 6 років тому

      The important point is using the activity as the entry point to your app. For Instant Apps, you have multiple entry points (each separate feature), so multiple activities are totally in line with that recommendation.

    • @Zhuinden
      @Zhuinden 6 років тому

      You only need an Activity to enter the app, you can use that entry point to start your "main" activity with the right backstack and just swap out fragments in the main activity container

  • @hungnguyenmanh2069
    @hungnguyenmanh2069 6 років тому +1

    They talked a lot. I want they to describe in pictures

  • @alxkub
    @alxkub 6 років тому +25

    Google keeps adding more and more ways to implement the same thing. This is literally road to hell!

    • @IanLake
      @IanLake 6 років тому +18

      The alternative is to keep the one complicated way of doing things. Creating a much simpler way of doing things and deprecating the old way is going to be a lot better for developers going forward. It just takes a while to get to that point.

    • @AndreRomano272
      @AndreRomano272 6 років тому +2

      Oh man you almost had me fooled, i thought you were being serious until you said 'horrible Android Studio'. :)

    • @davideschembari3026
      @davideschembari3026 6 років тому +3

      "horrible Android Studio"?! Compared to XCode which is just slightly more sophisticated than VI? The Android guys at Google are finally creating a consistent and usable way of doing things, rather than forcing us app devs to reinvent the wheel all the times.

  • @PronabPal
    @PronabPal 6 років тому

    what a struggle to get the foundation right -to clean up the mess! .apparently just to help developers !

  • @davethomas1303
    @davethomas1303 6 років тому

    I prefer to avoid fragments. medium.com/square-corner-blog/advocating-against-android-fragments-81fd0b462c97?source=linkShare-ae009bcd66b-1526096251
    But perhaps the navigation framework with fragments won’t be so bad. I’m going to be giving fragments a second chance.
    Io18 “the rebirth of fragments; one of androids most conflicted components”

  • @kamalamusa1315
    @kamalamusa1315 2 роки тому

    PLEASE HELP ME 🙏🙏🙏🙏🙏🙏

  • @alexsag2151
    @alexsag2151 6 років тому

    Thank you!

  • @WillTesler
    @WillTesler 6 років тому

    I'd rather just use my own lightweight controller

  • @jeghamaymen
    @jeghamaymen 6 років тому +1

    Switching to kotlin was a very lame move...

  • @nicolassanta6324
    @nicolassanta6324 6 років тому

    Nice like it

  • @eddieboston
    @eddieboston 6 років тому

    SHOW THE SLIDES!!! We don't care about these guys' faces. We want to see what's on the slides that they're talking about.

  • @soma7891
    @soma7891 4 роки тому

    Android Development sucks

  • @徐雲亮-x2r
    @徐雲亮-x2r 6 років тому

    我們的訊息者,題供專屬弧度示意,對

  • @hba6018
    @hba6018 Рік тому

    Ugly SDK, bad design, I dont know, maybe I vastly overestimate their engineers.

  • @dong4925
    @dong4925 6 років тому

    gay ?