由于前段时间项目中使用 到了自动换行的线性布局,本来打算用表格布局在里面一个个的用Java代码添加ImageView的,但是添加的View控件是不确定的,因为得靠服务器 的数据返回,就这样手动用Java代码画布局的方式就这样夭折了,因为在表哥布局中我无法确定一行显示多少个ImageView的数目,所以无法动态添 加,最后自能自己去看看那种能够换行的线性布局了,线性布局比较不好的是不能自动换行,也就是当设置LinearLayout的orentation 设置为vertical 为竖直方向也就是只有一列,每行只能显示一个View或者View的子类,当设置LinearLayout的orentitation为 Horizontal,LinearLayout的只能显示为一行,横向显示,当屏幕满了的时候,View控件并不会自动换行,所以我们要做的就是在 LinearLayout满的时候自动换行。
需 要了解的是怎么样绘制根据子控件的长宽绘制父控件的宽度与高度,所以需要传入的参数控件的高度,视图分为两种一种是View类型的,代表控件有 TextView,Button,EditText 等等,还有一种是装视图的容器控件继承自ViewGroup的控件,如LinearLayout,RelativeLayout,TabHost等等控 件,需要自动换行的线性布局的话,就需要根据子控件的高度与宽度,来动态加载父控件的高度与宽度,所以需要在构造函数中传入每一个子控件的固定的高度,或 者是动态设置子控件的高度与宽度。
将 自定义的LinearLayout 也继承自ViewGroup 并且重写抽象类ViewGrouop的几个方法:onMeasure(),onLayout(),dispathDraw() 三个方法的意思分别是:第一个onMeasure()是用来计算控件以及子控件所占用的区域,第二个onLayout()是控制子控件的换行,第三个可 写可不写,主要是用来绘制控件的边框,
自定义LinearLayout的代码如下:
- package com.huanglong.mylinearlayout;
- import android.content.Context;
- import android.graphics.Canvas;
- import android.graphics.Color;
- import android.graphics.Paint;
- import android.graphics.Rect;
- import android.util.AttributeSet;
- import android.view.View;
- import android.view.ViewGroup;
- /**
- * @author huanglong 2013-5-28 自定义自动换行LinearLayout
- */
- public class FixGridLayout extends ViewGroup {
- private int mCellWidth;
- private int mCellHeight;
- public FixGridLayout(Context context) {
- super(context);
- }
- public FixGridLayout(Context context, AttributeSet attrs) {
- super(context, attrs);
- }
- public FixGridLayout(Context context, AttributeSet attrs, int defStyle) {
- super(context, attrs, defStyle);
- }
- public void setmCellWidth(int w) {
- mCellWidth = w;
- requestLayout();
- }
- public void setmCellHeight(int h) {
- mCellHeight = h;
- requestLayout();
- }
- /**
- * 控制子控件的换行
- */
- @Override
- protected void onLayout(boolean changed, int l, int t, int r, int b) {
- int cellWidth = mCellWidth;
- int cellHeight = mCellHeight;
- int columns = (r - l) / cellWidth;
- if (columns < 0) {
- columns = 1;
- }
- int x = 0;
- int y = 0;
- int i = 0;
- int count = getChildCount();
- for (int j = 0; j < count; j++) {
- final View childView = getChildAt(j);
- // 获取子控件Child的宽高
- int w = childView.getMeasuredWidth();
- int h = childView.getMeasuredHeight();
- // 计算子控件的顶点坐标
- int left = x + ((cellWidth - w) / 2);
- int top = y + ((cellHeight - h) / 2);
- // int left = x;
- // int top = y;
- // 布局子控件
- childView.layout(left, top, left + w, top + h);
- if (i >= (columns - 1)) {
- i = 0;
- x = 0;
- y += cellHeight;
- } else {
- i++;
- x += cellWidth;
- }
- }
- }
- /**
- * 计算控件及子控件所占区域
- */
- @Override
- protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
- // 创建测量参数
- int cellWidthSpec = MeasureSpec.makeMeasureSpec(mCellWidth, MeasureSpec.AT_MOST);
- int cellHeightSpec = MeasureSpec.makeMeasureSpec(mCellHeight, MeasureSpec.AT_MOST);
- // 记录ViewGroup中Child的总个数
- int count = getChildCount();
- // 设置子空间Child的宽高
- for (int i = 0; i < count; i++) {
- View childView = getChildAt(i);
- /*
- * 090 This is called to find out how big a view should be. 091 The
- * parent supplies constraint information in the width and height
- * parameters. 092 The actual mesurement work of a view is performed
- * in onMeasure(int, int), 093 called by this method. 094 Therefore,
- * only onMeasure(int, int) can and must be overriden by subclasses.
- * 095
- */
- childView.measure(cellWidthSpec, cellHeightSpec);
- }
- // 设置容器控件所占区域大小
- // 注意setMeasuredDimension和resolveSize的用法
- setMeasuredDimension(resolveSize(mCellWidth * count, widthMeasureSpec),
- resolveSize(mCellHeight * count, heightMeasureSpec));
- // setMeasuredDimension(widthMeasureSpec, heightMeasureSpec);
- // 不需要调用父类的方法
- // super.onMeasure(widthMeasureSpec, heightMeasureSpec);
- }
- /**
- * 为控件添加边框
- */
- @Override
- protected void dispatchDraw(Canvas canvas) {
- // 获取布局控件宽高
- int width = getWidth();
- int height = getHeight();
- // 创建画笔
- Paint mPaint = new Paint();
- // 设置画笔的各个属性
- mPaint.setColor(Color.BLUE);
- mPaint.setStyle(Paint.Style.STROKE);
- mPaint.setStrokeWidth(10);
- mPaint.setAntiAlias(true);
- // 创建矩形框
- Rect mRect = new Rect(0, 0, width, height);
- // 绘制边框
- canvas.drawRect(mRect, mPaint);
- // 最后必须调用父类的方法
- super.dispatchDraw(canvas);
- }
- }
然后在Xml文件中引用自己定义的控件,在Java代码中调用:
- package com.huanglong.mylinearlayout;
- import android.os.Bundle;
- import android.app.Activity;
- import android.view.Menu;
- import android.view.MenuItem;
- import android.widget.CheckBox;
- import android.widget.SimpleAdapter;
- import android.support.v4.app.NavUtils;
- public class MainActivity extends Activity {
- private SimpleAdapter adapter;
- @Override
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_main);
- FixGridLayout fixGridLayout = (FixGridLayout) findViewById(R.id.ll);
- fixGridLayout.setmCellHeight(30);
- fixGridLayout.setmCellWidth(100);
- for (int i = 0; i < 7; i++) {
- CheckBox box = new CheckBox(MainActivity.this);
- box.setText("第"+i+"个");
- fixGridLayout.addView(box);
- }
- }
- @Override
- public boolean onCreateOptionsMenu(Menu menu) {
- getMenuInflater().inflate(R.menu.activity_main, menu);
- return true;
- }
- }
效果截图:
相关推荐
Flowlayout是一种自定义的布局,它是LinearLayout的一个扩展,主要功能是支持子视图自动换行。这个自定义布局使得开发者能够更灵活地处理大量需要在屏幕上排列的控件,尤其适用于创建类似标签云或者商品属性列表等...
但是,原生的`LinearLayout`并不具备自动换行的能力。为了实现自动换行,我们需要继承`LinearLayout`并重写其核心逻辑。 1. **创建自定义布局类** 创建一个新的Java类,例如`LinearLayoutAutoSwapRow.java`,继承...
在默认情况下,LinearLayout会一直沿指定的方向(水平或垂直)延伸,直到所有子视图都排列完毕,不会自动换行。然而,通过一些设置,我们可以使LinearLayout在空间不足时自动换行,实现类似于网格布局的效果。这个...
Android LinearLayout 实现自动换行 Android LinearLayout 实现自动换行是 Android 开发中常见的需求。LinearLayout 是 Android 中最常用的布局控件之一,但它有一个缺陷,就是不能自动换行。今天,我们将详细介绍...
标题提到的“android 自动换行layout”是指一种能够根据屏幕宽度自动将子视图换行显示的LinearLayout实现。这种功能通常用于创建网格或列表,例如商品展示、菜单选项等场景。下面我们将详细探讨如何自定义一个自动...
在这个“android计算器小实例”中,我们主要关注的是`LinearLayout`布局管理和`Listener`事件监听机制。 `LinearLayout`是Android中最基础的布局之一,它允许我们将视图组件按照垂直或水平方向进行排列。在这个...
在Android开发中,"多个view自动换行"通常是指在一个布局容器中,当视图(View)数量过多,无法在一行内显示时,系统能够自动将它们换行展示,以适应不同的屏幕尺寸和布局需求。这涉及到对ViewGroup的管理和布局管理...
然而,当ListView的子项(item)宽度超过屏幕宽度时,如何实现自动换行就成了一个需要解决的问题。在本篇中,我们将深入探讨如何在Android中为ListView实现自动换行的功能。 首先,我们需要理解ListView的工作原理...
在Android中,我们可以使用`HorizontalScrollView`、`GridLayout`、`LinearLayout`等布局来实现类似的效果,但这些布局并不完全符合自动换行的需求。为了实现真正的自动换行,开发者通常会使用`FlowLayout`或自定义...
本项目是一个年前的Android应用源码示例,专为学生毕业设计学习而准备,旨在教授如何让TextView根据文本长度自动换行,以适应不同屏幕尺寸和用户需求。 在Android中,TextView默认情况下会自动换行,当一行文本无法...
标题提到的"android 自动换行 layout"是指一种能够自动换行显示子视图的布局,它适用于创建标签展示,尤其在需要显示多行标签且数量不确定的情况下,这种布局能够提供优秀的可读性和用户体验。在描述中提到,该布局...
开发者可以通过继承Android的现有布局类(如LinearLayout或GridView),然后重写相关方法来实现自动换行和自定义间距、对齐效果。这样的自定义布局通常会包含一个测量过程,计算每个子视图的位置,以及何时开始新的...
首先,`TagViewLayout`通常是一个自定义的布局容器,它继承自Android的`LinearLayout`或`RelativeLayout`,并添加了对标签自动换行的支持。在实现过程中,关键在于计算每个标签的宽度和调整它们的位置,以确保在屏幕...
要实现ListView中的文字编辑自动换行,我们需要结合EditText控件和自定义Adapter来完成这一功能。以下将详细阐述如何实现这一需求。 首先,我们创建一个布局文件,用于定义ListView中每一项的视图。在这个布局中,...
总之,`FlowLayout`提供了一种实用的解决方案,解决了`LinearLayout`等默认布局无法自动换行的问题。通过理解和运用`FlowLayout`,开发者可以创建更具动态性和适应性的Android界面,提高用户体验。
"自动换行的ViewGroup",如其名所示,是一种特殊的LinearLayout,它具有自动将子视图在达到容器边界时换行的功能,类似于常见的网格或流式布局。这个特性使得在不预先确定子视图数量和大小的情况下,仍然可以创建...
本项目“Android自定义标签view——可自动换行”提供了一种解决方案,使得在界面上显示的标签可以按照屏幕大小自动换行,从而避免了内容溢出的问题。下面将详细介绍这个项目及其相关知识点。 1. 自定义View:在...