The News App in Android Studio using Kotlin | Android Knowledge

Поделиться
HTML-код
  • Опубликовано: 27 ноя 2024

Комментарии • 52

  • @memeshorts0113
    @memeshorts0113 11 месяцев назад +1

    Aap mere fav Android teacher ho😊 thankyou didi❤

  • @AdityaEditzYT
    @AdityaEditzYT 11 месяцев назад +7

    Hurray Now Jetpack compose series 🎉🎉❤

  • @gufraanshaikh3798
    @gufraanshaikh3798 11 месяцев назад +6

    Perfect video ✅

  • @sidahmedsarah4826
    @sidahmedsarah4826 5 месяцев назад

    Hello, as always, it's so good how you explain, I still can't find anyone better than you on RUclips, and thanks to your videos I nailed my academic project ! 🤩

  • @iqbalrivaldi2856
    @iqbalrivaldi2856 11 месяцев назад +3

    Thank you mam, i love kotlin❤

  • @ЕлизаветаБалюра
    @ЕлизаветаБалюра 10 месяцев назад +2

    we made the entire application, but for some reason, when you click the favorites button, the application crashes. and also when you select a news item, add it to favorites or just want to open the app, it crashes too. What could be the problem?

  • @novayoutube2937
    @novayoutube2937 11 месяцев назад +2

    You are great youtuber ☺️❤️

  • @aplibrary6836
    @aplibrary6836 10 месяцев назад +2

    Mam please help to find the problem. When I run the app it show error in the article fragment related to the argument that pass in navigation file please mam. Help me to fix my error it will be a great help if you reply me 😢

  • @devabdul
    @devabdul 11 месяцев назад +2

    Thanks Didi ❤

  • @fredjakaa246
    @fredjakaa246 11 месяцев назад +5

    🎉🎉🎉

  • @SudhirRajD
    @SudhirRajD 3 месяца назад

    Great content!
    only suggestion is if you explain a bit more elaborately so that even a beginner would understand will be of great help.
    keep up the good work.

  • @shazneenmukhtarshaikh3925
    @shazneenmukhtarshaikh3925 11 месяцев назад +4

    💯

  • @1337Gun
    @1337Gun 11 месяцев назад +6

    instagram clone app plsss

  • @vikashtiwari8360
    @vikashtiwari8360 11 месяцев назад +6

    Make note taking app with room database

    • @ProspectorB
      @ProspectorB Месяц назад

      you got the answer or i can provide resources for it?

  • @_stalKer___
    @_stalKer___ 11 месяцев назад

    Your videos are crystal clear.
    Where did you learn Android Development.
    Any course recommendations?

    • @shivanggautam541
      @shivanggautam541 11 месяцев назад

      why did she learn android if it was not for providing free source code.

  • @DearNitishsir
    @DearNitishsir 7 месяцев назад

    Click on fab button multiple times to add same item on favourite fragment multiple times why

  • @johnnyguerra2685
    @johnnyguerra2685 10 месяцев назад

    thanks! but app crash on some articles. Could you fix it please ?

  • @adityaverma8463
    @adityaverma8463 9 месяцев назад +1

    I show this error please help me 🙏 🙏 🙏 🙏 🙏 🙏 🙏 🙏 🙏 🙏 java.lang.NullPointerException: Attempt to invoke virtual method 'int java.lang.String.hashCode()' on a null object reference

    • @yashverma3144
      @yashverma3144 9 месяцев назад

      java.lang.NullPointerException: Attempt to invoke virtual method 'int java.lang.String.hashCode()' on a null object
      1 -> Add below code to body of Article.kt
      override fun hashCode(): Int {
      var result = id.hashCode()
      if (url.isNullOrEmpty()) {
      result = 31 * result + url.hashCode()
      }
      if (!urlToImage.isNullOrEmpty()) {
      result = 31 * result + urlToImage.hashCode()
      }
      return result
      }
      2 -> Add below code to body of Source.kt
      override fun hashCode(): Int {
      var result = id.hashCode()
      if (id.isNullOrEmpty()) {
      result = 31 * result + id.hashCode()
      }
      if (name.isNullOrEmpty()) {
      result = 31 * result + name.hashCode()
      }
      return result
      }
      3 -> For navigation fix, just check the id's of bottom_navigation_menu.xml & news_nav_graph.xml id's for the article, favorite and headline frgaments must be same. So, look for it carefully.

    • @MasterOfWindTributes
      @MasterOfWindTributes 6 месяцев назад

      @@yashverma3144 it wont connect to the internet for me while google and other apps work please help me!

  • @4everShorts-funny
    @4everShorts-funny 11 месяцев назад

    Can we share particular news to social platform???

  • @ayushitiwari585
    @ayushitiwari585 2 месяца назад

    I'm getting error on adding dependency please help how to fix it according to new version copy paste isn't working out

  • @sksujon9261
    @sksujon9261 6 месяцев назад

    kotlin with pdf view app published you?

  • @NIKHILKADAM-f6v
    @NIKHILKADAM-f6v 4 месяца назад

    ma'am how can we handle null pointer exceptions and app crashes..pls help me..

  • @balusekhar
    @balusekhar 11 месяцев назад

    how do we use ksp with dagger hilt

  • @shivanjalsharma8377
    @shivanjalsharma8377 6 месяцев назад

    did anyone make synopsis or presentation or any file for submission ???

  • @sudipkashyap8316
    @sudipkashyap8316 11 месяцев назад

    Is there is way to create own api (for json ) for free. 😊
    I want create own api and fetch the detail from there for my app
    Please if you can I want learn step by step

  • @SouravSharma-bh6xk
    @SouravSharma-bh6xk 4 месяца назад

    how to add null pointer exception error in the app

  • @sivakumarpandi6250
    @sivakumarpandi6250 11 месяцев назад

    Could you please create videos on custom views

  • @Md_Nasim_Khan
    @Md_Nasim_Khan 2 месяца назад

    Need a brief explanation.

  • @mdanik223
    @mdanik223 11 месяцев назад

    Null articles throwing crash. Provide solution for it.

  • @s.m.knewupdates2221
    @s.m.knewupdates2221 8 месяцев назад

    Please create this news app using java language please 🙏🙏

  • @ABDULKALAM-ig2dd
    @ABDULKALAM-ig2dd 8 месяцев назад

    Sister , Can you share your LinkedIn URL

  • @SachinSingh-do5ju
    @SachinSingh-do5ju 11 месяцев назад

    got it

  • @МуратМаханов-я7и
    @МуратМаханов-я7и 6 месяцев назад

    api not work

  • @МаргаритаЧепенко
    @МаргаритаЧепенко 10 месяцев назад

    Your videos are awesome!
    Sorry, but after i finished writing the code and launched the application, my headlines was loaded endlessly. And I don't know how solve this problem. Maybe, you can help me?

    • @aryanrajput8552
      @aryanrajput8552 8 месяцев назад +1

      Bhai dependencies hi nahi chal rahi bata de

  • @NayanBawane-c1c
    @NayanBawane-c1c 3 месяца назад

    create video in hindi please

  • @abhaytiwari5107
    @abhaytiwari5107 11 месяцев назад

    source code?

    • @dh-ic2xg
      @dh-ic2xg 6 месяцев назад

      you must pay xd

  • @MasterOfWindTributes
    @MasterOfWindTributes 6 месяцев назад

    hi it says no internet how can i fix this issue?

    • @FaadCode
      @FaadCode 6 месяцев назад

      Allow internet permissions from manifest

  • @uzair5649
    @uzair5649 11 месяцев назад

    crash on some articles

    • @johnnyguerra2685
      @johnnyguerra2685 10 месяцев назад

      me too

    • @yashverma3144
      @yashverma3144 9 месяцев назад

      java.lang.NullPointerException: Attempt to invoke virtual method 'int java.lang.String.hashCode()' on a null object
      1 -> Add below code to body of Article.kt
      override fun hashCode(): Int {
      var result = id.hashCode()
      if (url.isNullOrEmpty()) {
      result = 31 * result + url.hashCode()
      }
      if (!urlToImage.isNullOrEmpty()) {
      result = 31 * result + urlToImage.hashCode()
      }
      return result
      }
      2 -> Add below code to body of Source.kt
      override fun hashCode(): Int {
      var result = id.hashCode()
      if (id.isNullOrEmpty()) {
      result = 31 * result + id.hashCode()
      }
      if (name.isNullOrEmpty()) {
      result = 31 * result + name.hashCode()
      }
      return result
      }
      3 -> For navigation fix, just check the id's of bottom_navigation_menu.xml & news_nav_graph.xml id's for the article, favorite and headline frgaments must be same. So, look for it carefully.