ไม่สามารถเล่นวิดีโอนี้
ขออภัยในความไม่สะดวก

Expandable Card View with Animation in android studio |

แชร์
ฝัง
  • เผยแพร่เมื่อ 10 ส.ค. 2021
  • In This tutorial we will learn how to create a expandable card view with smooth animations.
    Blog Url
    codevedanam.blogspot.com
    Music: Early Hours
    Musician: @iksonmusic

ความคิดเห็น • 33

  • @CareerHirings
    @CareerHirings ปีที่แล้ว

    ekdum mast...thankyou

  • @yumihazakura2399
    @yumihazakura2399 2 ปีที่แล้ว +1

    i got it thank you sir

  • @MDRakib-sm8bd
    @MDRakib-sm8bd 2 ปีที่แล้ว +1

    If I want to use multiple card view with new text details then what I do? @Code Vedanam

  • @pradeepkumarreddykondreddy7048
    @pradeepkumarreddykondreddy7048 2 ปีที่แล้ว +1

    What other Transitions we can use instead of AutoTransition() ?

  • @parkouralien3606
    @parkouralien3606 2 ปีที่แล้ว +1

    MUCHAS gracias esta de maravillas el video ahora seran mejores mis aplicaciones ; )

    • @CodeVedanam
      @CodeVedanam  2 ปีที่แล้ว

      Glad to hear that 😀

  • @kevinaguilar3914
    @kevinaguilar3914 2 ปีที่แล้ว +1

    Thanks. Great explication.😸

    • @CodeVedanam
      @CodeVedanam  2 ปีที่แล้ว +1

      Happy to hear that

  • @adielmoran6986
    @adielmoran6986 2 ปีที่แล้ว +2

    Buen video, funciona muy bien, gracias

  • @akashshrivastava8422
    @akashshrivastava8422 3 ปีที่แล้ว +2

    This was very helpful 👌👌👌👌

    • @CodeVedanam
      @CodeVedanam  3 ปีที่แล้ว +1

      Thanks

    • @amazon6150
      @amazon6150 2 ปีที่แล้ว

      @@CodeVedanam but when i make 2 card views app is crashing

  • @wesyy29
    @wesyy29 2 หลายเดือนก่อน

    Thanks man, we need you

    • @CodeVedanam
      @CodeVedanam  2 หลายเดือนก่อน

      Any time!

  • @user-xw3ek8sf9t
    @user-xw3ek8sf9t 2 ปีที่แล้ว +1

    Большое спасибо за видео ! Привет из России )

  • @DeepSingh-wk5ts
    @DeepSingh-wk5ts 3 ปีที่แล้ว +1

    Thanks

  • @fareedmatjila6350
    @fareedmatjila6350 2 ปีที่แล้ว +1

    I wrote the card view code in my layout_main.Xml and the other code in the Main Activity.java... Is that right?

    • @CodeVedanam
      @CodeVedanam  2 ปีที่แล้ว +1

      Just make sure the card view layout file will be different than the activity layout file

    • @amazon6150
      @amazon6150 2 ปีที่แล้ว

      @@CodeVedanam but when i make 2 card views app is crashing

  • @amazon6150
    @amazon6150 2 ปีที่แล้ว +2

    but when i make 2 card views app is crashing

    • @mr.fullstop_4074
      @mr.fullstop_4074 2 ปีที่แล้ว

      There maybe an error in one of the variables in the xml file , check it out

    • @nguyenminhkhoa6436
      @nguyenminhkhoa6436 ปีที่แล้ว

      I tested your solution and did not get any trouble

  • @taposhirabea8102
    @taposhirabea8102 ปีที่แล้ว +2

    source code pls

    • @CodeVedanam
      @CodeVedanam  ปีที่แล้ว

      Sorry but source code is not available. You can follow the tutorial and code it and if you face any problem then write back to us.

  • @aneeshkandal6424
    @aneeshkandal6424 ปีที่แล้ว +1

    No need of background music we cant hear what you are explaning bro

    • @CodeVedanam
      @CodeVedanam  ปีที่แล้ว

      We will take care in the upcoming tutorials. Btw thanks for your feedback :)

  • @isuruthiwanka2595
    @isuruthiwanka2595 ปีที่แล้ว +1

    Hey buddy I still get the error:
    @RequiresApi (api = Build.VERSION_CODES.KITKAT)
    public void rule_no_01_expand(View view)
    {
    int v = (rule_01_constraint_layout.getVisibility() == View.GONE)? View.VISIBLE : View.GONE;
    TransitionManager.beginDelayedTransition(rule_01_linear_layout, new AutoTransition());
    }
    here "rule_01_linear_layout" is linear layout.
    Error : 'beginDelayedTransition(android.view.ViewGroup, android.transition.Transition)' in 'android.transition.TransitionManager' cannot be applied to '(android.widget.LinearLayout, androidx.transition.AutoTransition)'
    why is that the case?