`
shendixiong
  • 浏览: 398510 次
  • 性别: Icon_minigender_1
  • 来自: 长沙
社区版块
存档分类
最新评论
阅读更多
<TextView android:layout_width="fill_parent"
		android:layout_height="wrap_content" android:id="@+id/text_comments"
		android:layout_weight="1" android:layout_marginLeft="4dip" android:layout_marginRight="4dip"
        android:singleLine="true">
	</TextView>

 android:layout_weight= "1"

  我这个人不喜欢用复杂的语言讲什么理论!

    我想不会用android:layout_weight 的大概是不知道比重是什么!??

 

其实,通俗点讲,就是你所占视图的比例!

  android:layout_weight= "1",android:layout_weight="3";

这两个,在视图中所占比率分别是四分之三,四分之一!所以越小,所占比率也就越大!

 如果还是不懂比率是什么.那我只能说你脑残了!

分享到:
评论

相关推荐

    2011.10.13(4)——— android android:layout_weight

    在Android开发中,`android:layout_weight`是一个非常重要的属性,尤其在布局管理器中,如LinearLayout。这个属性主要用于在有限的空间内分配组件的大小,根据权重比例来决定每个子视图占据的屏幕空间。本篇文章将...

    Android 五种Layout 布局

    在Android开发中,布局(Layout)是构建用户界面的基础元素,它定义了屏幕上各个组件的排列方式和相互关系。本文将深入探讨Android的五种主要布局:LinearLayout、RelativeLayout、FrameLayout、GridLayout以及...

    android 各种Layout用到的一些重要的属性

    ### Android各种Layout的重要属性 #### 一、第一类:布尔属性值 这一类属性值主要用来控制视图在容器中的位置关系,常见的属性包括: - **`android:layout_centerHorizontal`**:设置此属性为 `true` 可以使视图...

    androidlayout-marginBottom的值为负数.docx

    在Android布局设计中,`android:layout_margin`属性用于设置View与周围元素的边距,包括`android:layout_marginTop`、`android:layout_marginBottom`、`android:layout_marginLeft`和`android:layout_marginRight`。...

    Android中的android:layout_weight使用详解

    在Android开发中,`android:layout_weight`是一个关键属性,特别是在使用`LinearLayout`进行界面布局时。`layout_weight`用于指定一个子视图在父视图中的权重,它决定了控件如何分配额外的空间,尤其是在视图的尺寸...

    android:layout_gravity和android:gravity的区别

    1.首先来看看Android:layout_gravity和android:gravity的使用区别。 android:gravity: 这个是针对控件里的元素来说的,用来控制元素在该控件里的显示位置。例如,在一个Button按钮控件中设置如下两个属性, android...

    Android_layout.rar_android_android 布局_layout

    关键属性有`orientation`(设置布局方向,可选垂直或水平)、`weight`(分配子视图的额外空间比例)以及`layout_gravity`(设置子视图在父视图中的位置)。 2. **RelativeLayout**:相对布局允许子视图相对于其他...

    Android中gravity与layout_gravity的使用区别分析

    android:layout_gravity:设置控件本身相对于父控件的显示位置。 看下如下代码段 代码如下:&lt;?xml version=”1.0″ encoding=”utf-8″?&gt;&lt;!– android:gravity设置了按钮上面的文字的显示位置,而android:...

    Android Layout样式布局

    - 示例:`android:layout_weight="1"` - **android:padding** - 用途:设置控件内部内容与边界的距离。 - 示例:`android:padding="10dp"` - **android:singleLine** - 用途:若设置为true,则强制控件内容在...

    Android 控件说明

    - `layout_weight`:用于确定视图在容器中的相对大小,特别是在`LinearLayout`中,当设置了`layout_weight`时,如果`layout_width`或`layout_height`设置为`match_parent`,则会根据权重分配空间。 - `layout_...

    Android学习指南之Layout 布局--千锋培训

    android:layout_weight="1" android:text="Button 2"/&gt; android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="2" android:text="Button 3"/&gt; ``` 在这个例子中,...

    Android的Layout完全介绍

    android:layout_weight="1" android:layout_height="wrap_content" android:text="Button 1" /&gt; android:layout_width="0dp" android:layout_weight="1" android:layout_height="wrap_content" android:...

    Hello_layout_demo

    例如,两个子视图各占50%,则它们的`android:layout_weight`值应设为1。 2. **RelativeLayout**:相对布局允许子视图相对于其他视图的位置进行定位,提供了更灵活的布局方式。使用`android:layout_alignParent...`...

    android layout

    ### Android Layout 概述 在Android开发中,`Layout`起着至关重要的作用,它用于组织和排列用户界面中的各种视图(View)组件。通过使用不同的布局方式,开发者可以创建出灵活且适应不同屏幕尺寸的应用界面。本文将...

    Android应用中通过Layout_weight属性用ListView实现表格

    在Android应用开发中,`Layout_weight`属性是一个非常关键的概念,尤其在使用`LinearLayout`时。`Layout_weight`用于在`LinearLayout`中控制子视图(Views)如何平分剩余空间,这对于创建灵活且响应式的用户界面至关...

    android-autofittextview-master.zip_android_android textview_auto

    android:layout_width= match_parent android:layout_height= wrap_content &gt; &lt;Button android:layout_width= match_parent android:layout_height= wrap_content android:singleLine= true /&gt...

    计算器(android)

    ntent" android:layout_height="wrap_content" android:layout_weight="1" android:text="/" /&gt; &lt;LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap...

    Android实训购物车页面

    -&lt;LinearLayout android:background="@drawable/aaa" android:weightSum="1" android:layout_height="match_parent" android:layout_width="match_parent" android:orientation="vertical" xmlns:android=...

    ex07_layout.rar_android_layout布局

    每个子组件可以设置权重`android:layout_weight`,以按比例分配空间。 4. **相对布局(RelativeLayout)**: 相对布局允许组件相对于其他组件或父布局的边缘定位。每个组件的位置可以通过`android:layout_toLeftOf...

Global site tag (gtag.js) - Google Analytics