About 11,100 results
Open links in new tab
  1. Create a linear layout | Views | Android Developers

    Jun 27, 2024 · LinearLayout is a view group that aligns all children in a single direction, vertically or horizontally. You can specify the layout direction with the android:orientation attribute. Note: …

  2. LinearLayout and its Important Attributes with Examples in

    Jul 23, 2025 · LinearLayout is one of the most basic layouts in android studio, that arranges multiple sub-views (UI elements) sequentially in a single direction i.e. horizontal or vertical …

  3. Android Linear Layout - Online Tutorials Library

    Android LinearLayout is a view group that aligns all children in either vertically or horizontally.

  4. Android LinearLayout

    LinearLayout widget supports many attributes. In the above code snippet, we have given some of them: layout_width, layout_height, orientation and gravity. We will go through each one of …

  5. Android LinearLayout - Tutorial Ride

    LinearLayout is a view group that aligns all children in a single direction, vertically or horizontally. It is a commonly used view group that lays out its children views either horizontally or …

  6. LinearLayout - Android SDK | Android Developers

    When set to false, prevents the layout from aligning its children's baselines. When a linear layout is part of another layout that is baseline aligned, it can specify which of its children to baseline …

  7. Android LinearLayout Tutorial with Examples | o7planning.org

    LinearLayout is a ViewGroup that arranges the child View (s) in a single direction, either vertically or horizontally. You can specify its orientation by using the android:orientation attribute.

  8. Linear Layout Tutorial With Examples In Android | Abhi Android

    Jan 26, 2018 · In the Linear layout all the elements are displayed in linear fashion means all the childs/elements of a linear layout are displayed according to its orientation. The value for …

  9. LinearLayout | API reference | Android Developers

    Build AI-powered Android apps with Gemini APIs and more. Get started . Start by creating your first app. Go deeper with our training courses or explore app development on your own. Hello …

  10. Android LinearLayout in Kotlin - GeeksforGeeks

    Feb 24, 2025 · LinearLayout in Android is a ViewGroup subclass, used to arrange child view elements one by one in a singular direction either horizontally or vertically based on the …