`

android_14 线性布局2

 
阅读更多

 

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <LinearLayout 
        android:layout_width="fill_parent"
    	android:layout_height="wrap_content" 
    	android:orientation="horizontal"
    	android:layout_weight="1">

       	<TextView
       	    android:layout_width="wrap_content"
       	    android:layout_height="match_parent"
       	    android:layout_weight="1"
       	    android:background="#ff00ff"
       	    android:text="aaaaaa" />

       	<TextView 
       	    android:layout_width="wrap_content"
       	    android:layout_height="match_parent"
       	    android:layout_weight="1"
       	    android:text="bbbbb"
       	    android:background="#ffff00"
       	    />
       	<TextView 
       	    android:layout_width="wrap_content"
       	    android:layout_height="match_parent"
       	    android:layout_weight="1"
       	    android:text="cccccccc"
       	    android:background="#00ff00"
       	    />
       	<TextView 
       	    android:layout_width="wrap_content"
       	    android:layout_height="match_parent"
       	    android:layout_weight="1"
       	    android:text="ddddddd"
       	    android:background="#0000ff"
       	    />
    </LinearLayout>
    
    <LinearLayout 
        android:layout_width="fill_parent"
    	android:layout_height="fill_content"
    	android:orientation="vertical"
    	android:layout_weight="1">
       	
        <TextView 
       	    android:layout_width="wrap_content"
       	    android:layout_height="wrap_content"
       	    android:text="第一行"
       	    android:layout_weight="1"
       	    />
        <TextView 
       	    android:layout_width="fill_parent"
       	    android:layout_height="wrap_content"
       	    android:text="第二行"
       	    android:layout_weight="1"
       	    />
        <TextView 
       	    android:layout_width="fill_parent"
       	    android:layout_height="wrap_content"
       	    android:text="第三行"
       	    android:layout_weight="1"
       	    />
        <TextView 
       	    android:layout_width="wrap_content"
       	    android:layout_height="wrap_content"
       	    android:text="第四行"
       	    android:layout_weight="1"
       	    />
        
        
        
    </LinearLayout>
   

</LinearLayout>
 


 

 

  • 大小: 7.5 KB
分享到:
评论

相关推荐

    021 _UI_布局 之 线性布局 xml配置方式

    线性布局(LinearLayout)是Android开发中非常基础且常用的布局管理器,主要用于组织应用程序界面中的View组件,如按钮、文本框等。它按照垂直或水平方向将子视图排列成一条直线,支持单行或多列展示。在XML配置文件...

    Android 线性布局使用方法

    在Android开发中,布局管理器是构建用户界面的关键部分,其中线性布局(LinearLayout)是最基础也是最常用的布局之一。线性布局按照垂直或水平方向将子视图(Views)排列,如同一串珠子般依次排开。下面我们将深入...

    Android_layout.rar_android_android 布局_layout

    1. **LinearLayout**:线性布局是最基础的布局,它可以将子视图按照垂直或水平方向进行排列。关键属性有`orientation`(设置布局方向,可选垂直或水平)、`weight`(分配子视图的额外空间比例)以及`layout_gravity`...

    android布局_Android布局_android_

    1. **线性布局(LinearLayout)**:这是最基础的布局,它可以将子视图沿水平或垂直方向线性排列。通过`orientation`属性设置排列方向,`weight`属性可以为子视图分配权重,实现按比例分配空间。 2. **相对布局...

    黑马66期android学习笔记19_线性布局的特性

    线性布局(LinearLayout)是Android开发中常用的一种布局方式,它是Android UI设计的基础。在黑马66期的Android学习笔记中,重点讲解了线性布局的特性及其在实际应用中的运用。下面将详细阐述线性布局的相关知识点。...

    UI.rar_android_android layout_android ui 布局_android widget_andro

    有五种主要的布局管理器:线性布局(LinearLayout)、相对布局(RelativeLayout)、帧布局(FrameLayout)、网格布局(GridLayout)和约束布局(ConstraintLayout)。线性布局按照垂直或水平方向排列元素;相对布局...

    UI.rar_android_android studio_android ui_android ui 布局_页面

    1. **线性布局(LinearLayout)**:按照垂直或水平方向将组件排列。可以设置权重分配空间,使得组件占据相对的屏幕比例。 2. **相对布局(RelativeLayout)**:根据每个组件之间的相对位置进行布局。这种布局方式...

    android的线性布局

    在Android开发中,线性布局(LinearLayout)是基础且至关重要的布局管理器,它用于组织UI元素(如按钮、文本视图等)沿单一方向排列,可以是垂直或水平。本篇文章将深入探讨线性布局的使用方法、属性以及如何在实际...

    Android 五大布局之(一) 线性布局和相对布局

    本篇文章将深入探讨两种最常用的布局管理器——线性布局(LinearLayout)和相对布局(RelativeLayout),它们是Android开发者必须掌握的核心知识。 线性布局是Android中最基础的布局方式,如同它的名字所示,它会...

    Android用户界面设计:线性布局.pdf

    Android 用户界面设计:线性布局 Android 用户界面设计中,线性布局是一个非常重要的概念。线性布局是一种基本的布局类型,通过它可以组织用户界面控件或者小工具在屏幕上垂直或水平地排列。使用得当,线性布局...

    【Android Studio代码】线性布局

    用Android Studio 2.3.3做的线性布局例子,主要用到的标签有:&lt;LinearLayout&gt;&lt;/LinearLayout&gt;;主要用到的设置有:android:orientation="horizontal"、android:layout_weight="1"。

    Android_note.rar_ANDROID Note_Android_note_DEMO_androidnote

    Android_note_DEMO可能会包含各种布局类型,如线性布局、相对布局、网格布局等,以及如何自定义视图和适配器。 4. **数据存储**:Android支持多种数据存储方式,如共享首选项、SQLite数据库、文件系统等。笔记可能...

    android 线性布局

    2. 使用`android:weightSum`属性可以为线性布局内的子视图设置一个总的权重限制。 3. 在实际开发中,为了适配不同屏幕尺寸,应尽量使用`dp`单位而不是像素单位,以保持视觉一致性。 通过下载并研究" Myfirst1 "这个...

    MT6755_Android_scatter.txt

    这部分详细地定义了每个分区的布局信息,包括分区名称、文件名、是否下载、类型、线性起始地址、物理起始地址、分区大小、区域、存储类型、边界检查、是否保留、操作类型、是否可升级等信息。 - **partition_index:...

    Android 线性布局 实例

    在Android开发中,线性布局(LinearLayout)是基础且常用的布局管理器之一,它允许开发者按照垂直或水平方向排列子视图(View)。本实例针对初学者,将深入讲解线性布局的使用方法和特点。 一、线性布局介绍 线性...

    Android代码(线性布局).zip

    在Android开发中,线性布局(LinearLayout)是应用最广泛的布局之一,它允许你将控件按照垂直或水平方向进行排列。在这个“Android代码(线性布局).zip”文件中,很可能包含了一些示例代码,用于展示如何在Android...

    ex07_layout.rar_android_layout布局

    这个名为"ex07_layout.rar"的压缩包显然提供了多种布局类型的示例,包括表格布局(TableLayout)、结构布局(GridLayout)、线性布局(LinearLayout)和相对布局(RelativeLayout)。这些布局在Android应用设计中各...

    022 _UI_布局之线性布局-动态生成与LayoutInflater

    线性布局(LinearLayout)是Android开发中常用的一种布局方式,它允许我们将视图(View)按照垂直或水平的方向进行排列。在本视频教材"022 UI 布局之线性布局-动态生成与LayoutInflater"中,我们将深入探讨如何灵活...

    android线性布局开发文档

    在Android应用开发中,线性布局(LinearLayout)是开发者最常用的一种布局管理器。它按照垂直或水平方向来排列子视图(View),使得每个子视图都沿着一个单一的轴线排列。线性布局简单易用,适用于创建简单的用户...

Global site tag (gtag.js) - Google Analytics