Layouts In Android | Constraintlayout and Linearlayout

Sdílet
Vložit
  • čas přidán 6. 09. 2024

Komentáře • 33

  • @pn2696
    @pn2696 Před 2 lety +6

    Most of the content on youtube is outdated.Yours is up to date and is easy to follow.Enjoying it.

  • @royal_yash.gaming.2863
    @royal_yash.gaming.2863 Před 3 měsíci

    Bro this video is very helpful to me....❤ But make one video for what is the next process of the app making...

  • @glidingcoop7686
    @glidingcoop7686 Před 8 měsíci +2

    Why no one is speaking about the intro? Its one damn good intro.. simple and elegant

    • @CodesEasy
      @CodesEasy  Před 8 měsíci

      Happy that you liked it 👍

  • @satyampandey8799
    @satyampandey8799 Před 3 lety +2

    I am currently in class 10 and couldn't find any proper study/syllabus analysers so i decided to make my own. So want to make a interface which will have texts and buttons in the corresponding sides that is:-
    Class-
    10(*button*)
    11(*button*)
    12(*button*)
    Neet(*button*)
    Jee(*button*)
    And for class 10 I want to add all the five subjects and then the corresponding syllabus in reference to term 1 and term 2 and so on and so on...

    • @CodesEasy
      @CodesEasy  Před 3 lety

      Check out the playlist on android development on our channel

  • @darkfire586
    @darkfire586 Před 2 lety +1

    Man u r awesome..! I came after learning frm udemy... m impressed with jst ur 1 video...
    Thanks

    • @CodesEasy
      @CodesEasy  Před 2 lety

      Happy to hear that. We are soon launching complete courses. Currently working on it.

  • @dimagculangsherivicmae292

    what should i use to make my app responsive

  • @vimalankm8466
    @vimalankm8466 Před 3 lety +5

    Bro this is really a great content 🤩🤩

  • @amanhusain5725
    @amanhusain5725 Před 3 lety +3

    You are going good upload more video about this

  • @satyampandey8799
    @satyampandey8799 Před 3 lety +1

    Ur content is underatted by the way

    • @CodesEasy
      @CodesEasy  Před 3 lety

      Yes, we don't get time to post regularly. We will try our best.

  • @Deepthipriya-cl4ms
    @Deepthipriya-cl4ms Před 5 měsíci

    why these utube channel don't give source code in the discription ? what is the use of the video

  • @mohamedajaf411
    @mohamedajaf411 Před 2 lety +1

    Here, now can we do the same one which u did for constraint layout?

  • @xernan8147
    @xernan8147 Před 3 lety +1

    Bro, can you make a tutorial about making a form.
    The user will input their name email mobile number to the form.
    And pls make a data base on that app. Thank you.

  • @methivandikottam8431
    @methivandikottam8431 Před 2 lety +1

    Teaching is good

  • @mattrickbeats
    @mattrickbeats Před rokem +1

    Great Video!

    • @CodesEasy
      @CodesEasy  Před rokem +1

      Glad you enjoyed it

    • @mattrickbeats
      @mattrickbeats Před rokem

      @@CodesEasy bro! I'm so close to finishing my 1st basic app and I can't fix the simplest if errors!

    • @CodesEasy
      @CodesEasy  Před rokem

      Join our groups and feel free to ask

  • @chandankumarms4288
    @chandankumarms4288 Před 3 lety +2

    Bro what is the use of these layouts

    • @CodesEasy
      @CodesEasy  Před 3 lety

      To design the app, to hold elements at proper positions

  • @kritharthsingh6986
    @kritharthsingh6986 Před 2 lety +1

    Man how can i send values through gsm to android studio?

    • @CodesEasy
      @CodesEasy  Před 2 lety

      You mean messaging,
      Intent smsIntent = new Intent(Intent.ACTION_VIEW);
      smsIntent.setData(Uri.parse("smsto:"));
      smsIntent.setType("vnd.android-dir/mms-sms");
      smsIntent.putExtra("address" , new String ("01234"));
      smsIntent.putExtra("sms_body" , "Test ");
      startActivity(smsIntent);

    • @kritharthsingh6986
      @kritharthsingh6986 Před 2 lety

      @@CodesEasy I mean through hardware (Trying with arduino) actually with gsm sending longitude and latitude to app to locate on map in app . but thanks for your support