Java FlowLayout 🌊

แชร์
ฝัง
  • เผยแพร่เมื่อ 23 พ.ย. 2024

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

  • @BroCodez
    @BroCodez  4 ปีที่แล้ว +38

    import java.awt.FlowLayout;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    public class Main{
    public static void main(String[] args) {
    // Layout Manager = Defines the natural layout for components within a container

    // FlowLayout = places components in a row, sized at their preferred size.
    // If the horizontal space in the container is too small,
    // the FlowLayout class uses the next available row.

    JFrame frame = new JFrame();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setSize(500, 500);
    frame.setLayout(new FlowLayout(FlowLayout.CENTER,0,0));

    frame.add(new JButton("1"));
    frame.add(new JButton("2"));
    frame.add(new JButton("3"));
    frame.add(new JButton("4"));
    frame.add(new JButton("5"));
    frame.add(new JButton("6"));
    frame.add(new JButton("7"));
    frame.add(new JButton("8"));
    frame.add(new JButton("9"));

    frame.setVisible(true);
    }
    }

    • @bhms-binary
      @bhms-binary 2 ปีที่แล้ว +2

      You deserve a subscription)

    • @joyceasante8292
      @joyceasante8292 ปีที่แล้ว +4

      (Full code)
      import java.awt.FlowLayout;
      import javax.swing.JButton;
      import javax.swing.JFrame;
      import javax.swing.JPanel;
      import java.awt.Dimension;
      import java.awt.Color;
      public class Main{
      public static void main(String[]args){
      JFrame frame = new JFrame();
      frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      frame.setSize(500, 500);
      //frame.setLayout(new FlowLayout(FlowLayout.TRAILING));
      frame.setLayout(new FlowLayout(FlowLayout.CENTER,10,10));
      frame.add(new JButton("1"));
      frame.add(new JButton("2"));
      frame.add(new JButton("3"));
      frame.add(new JButton("4"));
      frame.add(new JButton("5"));
      frame.add(new JButton("6"));
      frame.add(new JButton("7"));
      frame.add(new JButton("8"));
      frame.add(new JButton("9"));
      frame.add(new JButton("0"));
      JPanel panel = new JPanel();
      panel.setPreferredSize(new Dimension(125,125));
      panel.setBackground(Color.lightGray);
      panel.setLayout(new FlowLayout());
      panel.add(new JButton("1"));
      panel.add(new JButton("2"));
      panel.add(new JButton("3"));
      panel.add(new JButton("4"));
      panel.add(new JButton("5"));
      panel.add(new JButton("6"));
      panel.add(new JButton("7"));
      panel.add(new JButton("8"));
      panel.add(new JButton("9"));
      panel.add(new JButton("0"));
      frame.add(panel);
      frame.setVisible(true);
      }
      }

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

    This is the best Java tutorial for beginners, so you can learn Java and English in one hit. Please keep going! I vote for Java advance tutorial. Thanks a lot Bro

  • @ousmanjallow1643
    @ousmanjallow1643 4 ปีที่แล้ว +6

    Thanks 🙏 prof 👨‍🏫. I had benefited a lot from your previous videos..

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

      thank you for watching Ousman!
      Watching my videos helps the channel grow. I appreciate it

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

    Thank you soooo much for your tutorial, it is so simple and beginner friendly, even me who don't speak fluently english i understood everything. Thank You!!

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

      i'm in the same situation

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

      @@josesamuel7615 ah mais t'es un français comme moi ??

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

    Learned a lot. Haven’t seen all your videos but would like to see some Java programming projects importing files, adding to sql table and run query to fill out forms etc. Thanks

  • @monwil3296
    @monwil3296 4 ปีที่แล้ว +8

    Free Java & Python 🎉. Bro you're 💯 😇

  • @omar100k6
    @omar100k6 4 ปีที่แล้ว +8

    College professors hate BroCode but no one can stop him

    • @BroCodez
      @BroCodez  4 ปีที่แล้ว +6

      also: Coding boot camps hate him! lol

  • @noah77
    @noah77 4 ปีที่แล้ว +6

    Awesome! Just waiting for a neural network tutorial in Java

    • @BroCodez
      @BroCodez  4 ปีที่แล้ว +6

      uhhhh I looked into this. I'll admit that it's above my skill level right now lol

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

      @@BroCodez np

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

      @@BroCodez you probably can do it now bro

  • @omersond4891
    @omersond4891 3 ปีที่แล้ว

    my favorite code channel

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

    You can used arrays for more shortcut

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

    Regarding the order of frame.setVisible(true) and frame.add(component) , the bug has been fixed .

  • @hasithadhananjaya2806
    @hasithadhananjaya2806 5 หลายเดือนก่อน

    Superb

  • @surendramaharjan3129
    @surendramaharjan3129 5 หลายเดือนก่อน

    how can i change the size of the button. I used setSize() method but no use.

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

    bro, i used the shortcut to create an object of the JButton but if i want to modify my button using methods how should i call the methods with no name?

  • @CJ-ri3cf
    @CJ-ri3cf 2 หลายเดือนก่อน

    Thank you so much you are a live saver

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

    You're the best youtube prof bro. keep it up!

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

    Thank you for this video many doubts got clear 😊

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

    Great work bro. Please make video for mobile app development

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

    Great explanation thank you

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

    bro you are my hero.....

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

    let's go bro!

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

    I love you sir 😘💖😘💖 your video is very useful n understanding but i have only little bit English 😅

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

    Nice video

  • @danny.3036
    @danny.3036 3 ปีที่แล้ว

    Thanks, Bro! ☕ You're awesome!

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

    Bro, this is awesome

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

    Nice, bro.

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

    Great job man... thanks a lot

  • @sabermmirza
    @sabermmirza 4 ปีที่แล้ว

    your amazing thanks for sharing :)

  • @曾毓哲-b1t
    @曾毓哲-b1t ปีที่แล้ว

    Thank you very MUCHHHHHHHHH!!!!!!!

  • @henriquefelinimena3693
    @henriquefelinimena3693 3 ปีที่แล้ว

    Thank you for the content

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

    Best teacher

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

    Awesome

  • @kemann3815
    @kemann3815 3 ปีที่แล้ว

    Much love ❤

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

    you are awesome

  • @blabberq
    @blabberq 3 ปีที่แล้ว

    Thank you!

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

    This is the best of all thanks bro code

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

    thanks! very helpful!!!!

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

    Thx, Bro!

  • @eugenezuev7349
    @eugenezuev7349 6 หลายเดือนก่อน

    Bro is king

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

    respect

  • @MrLoser-ks2xn
    @MrLoser-ks2xn 2 ปีที่แล้ว

    Thanks

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

    Thanks.

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

    thanks bro

  • @nawfalnjm5699
    @nawfalnjm5699 3 ปีที่แล้ว

    thank you !

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

    I'm now a fellow bro :)

  • @ctluwua7695
    @ctluwua7695 3 ปีที่แล้ว

    I think what will be left in the WORLD if your channel never existed!!

  • @Fnaf-vh9cs
    @Fnaf-vh9cs 3 ปีที่แล้ว

    god bless you

  • @lorenzschwarz5877
    @lorenzschwarz5877 3 ปีที่แล้ว

    noice

  • @greeneggsandmushrooms9855
    @greeneggsandmushrooms9855 3 ปีที่แล้ว

    aunt flow

  • @sujayirrinki4915
    @sujayirrinki4915 10 หลายเดือนก่อน

    for the algo

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

  • @ottttoooo
    @ottttoooo 3 ปีที่แล้ว

    brau

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

    comment

  • @techtalk9548
    @techtalk9548 3 ปีที่แล้ว

    ......

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

    Thank you!

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

    thanks bro

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

    Thanks!

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

    thanks bro