当前位置: 首页 > 编程笔记 >

Android自定View流式布局根据文字数量换行

南宫才英
2023-03-14
本文向大家介绍Android自定View流式布局根据文字数量换行,包括了Android自定View流式布局根据文字数量换行的使用技巧和注意事项,需要的朋友参考一下

本文实例为大家分享了Android根据文字数量换行的具体代码,供大家参考,具体内容如下

//主页 定义数据框

package com.example.customwaterfallviewgroup;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.EditText;

import java.util.ArrayList;
import java.util.List;

public class MainActivity extends AppCompatActivity {
 List<String> stringList = new ArrayList<>();
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
  initView();
 }

 private void initView() {
  final EditText editText = findViewById(R.id.edit);
  final CustomWaterFallViewGroup customWaterFallViewGroup = findViewById(R.id.water_fill);
  findViewById(R.id.button).setOnClickListener(new View.OnClickListener() {
   @Override
   public void onClick(View v) {
    //获取输入框的值
    String str = editText.getText().toString();
    //将文字放入列表
    stringList.add(str);
    //设置数据
    customWaterFallViewGroup.setData(stringList);
   }
  });
 }
}

//zhuye 布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:app="http://schemas.android.com/apk/res-auto"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:orientation="vertical"
 tools:context=".MainActivity">

 <EditText
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:id="@+id/edit"
  android:hint="输入"
  />
 <Button
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:id="@+id/button"
  android:text="add"
  />
 <com.example.customwaterfallviewgroup.CustomWaterFallViewGroup
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:id="@+id/water_fill"
  />
</LinearLayout>

//自定义流式布局

package com.example.customwaterfallviewgroup;

import android.content.Context;
import android.graphics.Canvas;
import android.util.AttributeSet;
import android.util.DisplayMetrics;
import android.view.View;
import android.view.ViewGroup;
import android.widget.LinearLayout;
import android.widget.TextView;
import android.widget.Toast;

import java.util.ArrayList;
import java.util.List;

public class CustomWaterFallViewGroup extends LinearLayout {
 //设置每一行最大的字符串的长度
 int mMaxSize = 22;
 //传入的字符串数组
 List<String> stringList = new ArrayList<>();
 Context mcontext;

 public CustomWaterFallViewGroup(Context context) {
  super(context);
  mcontext = context;
  init();
 }

 public CustomWaterFallViewGroup(Context context,AttributeSet attrs) {
  super(context, attrs);
  mcontext = context;
  init();
 }
 //定义布局
 private void init() {
  //设置最外层的LinearLayout 为垂直布局
  setOrientation(VERTICAL);
 }

 @Override
 protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
  super.onMeasure(widthMeasureSpec, heightMeasureSpec);
  DisplayMetrics displayMetrics = mcontext.getResources().getDisplayMetrics();
  int widthPixels = displayMetrics.widthPixels;
  setMeasuredDimension(widthPixels,heightMeasureSpec);
 }

 @Override
 protected void onLayout(boolean changed, int l, int t, int r, int b) {
  super.onLayout(changed, l, t, r, b);
 }

 @Override
 protected void onDraw(Canvas canvas) {
  super.onDraw(canvas);
 }

 public void setData(List<String> stringList) {
  //上一个输入框里的数据存到这个页面的集合中 
  this.stringList = stringList;
  showData();
 }

 private void showData() {
  //因为每一次都要重新画 ,所以移除之前的布局 显示更新过的布局
  removeAllViews();
  //优先向跟布局添加一条横向布局
  LinearLayout linearLayout_h = (LinearLayout) View.inflate(mcontext,R.layout.item_water_fall_h,null);
  addView(linearLayout_h);
  //定义临时变量。用来计算最后一行已有的字符长度
  int len = 0;
  for (int i = 0;i<stringList.size();i++){
   String str = stringList.get(i);
   //将次字符串长度与记录的已有字符串长度相加
   len += str.length();
   //-判断 如果大于最大长度,说明这一行放不下了
   //需要自动换行
   if (len > mMaxSize){
    //像跟布局添加一条横布局
    linearLayout_h = (LinearLayout) View.inflate(mcontext,R.layout.item_water_fall_h,null);
    addView(linearLayout_h);
    //换行以后因为不添加了 所以 当前的救是最后一行的长度
    len = str.length();
   }
   //添加一个textView控件
   View view = View.inflate(mcontext,R.layout.water_fall_textview,null);
   //获取到它的ID
   TextView textView = view.findViewById(R.id.water_fall_textview);
   //得到后给它赋值 (输入框里的值 给它)
   textView.setText(str);
   //添加到布局中
   linearLayout_h.addView(view);

   //设置权重 让每一行内所有的控件相加充满整行,并合理分配
   LinearLayout.LayoutParams layoutParams = (LinearLayout.LayoutParams) view.getLayoutParams();
   layoutParams.weight = 1;
   view.setLayoutParams(layoutParams);

   final int index = i;
   view.setOnClickListener(new OnClickListener() {
    @Override
    public void onClick(View v) {
     Toast.makeText(mcontext,"您点击了"+stringList.get(index),Toast.LENGTH_SHORT).show();
    }
   });
   view.setOnLongClickListener(new OnLongClickListener() {
    @Override
    public boolean onLongClick(View v) {
     stringList.remove(index);
     showData();
     return false;
    }
   });
  }
 }
}

//每一行的布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:id="@+id/water_fall_h"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:orientation="horizontal">

</LinearLayout>

//流式布局

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

 <TextView
  android:id="@+id/water_fall_textview"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:background="@color/colorAccent"
  android:layout_weight="1"
  android:textSize="20dp"
  android:layout_marginRight="5dp"
  android:layout_marginLeft="5dp"
  android:layout_marginTop="10dp"
  android:gravity="center"
  />
</LinearLayout>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持小牛知识库。

 类似资料:
  • 本文向大家介绍Android自定义ViewGroup实现流式布局,包括了Android自定义ViewGroup实现流式布局的使用技巧和注意事项,需要的朋友参考一下 本文实例为大家分享了Android自定义ViewGroup实现流式布局的具体代码,供大家参考,具体内容如下 1.概述 本篇给大家带来一个实例,FlowLayout,什么是FlowLayout,我们常在App 的搜索界面看到热门搜索词,就

  • 本文向大家介绍Android自定义ViewGroup之实现FlowLayout流式布局,包括了Android自定义ViewGroup之实现FlowLayout流式布局的使用技巧和注意事项,需要的朋友参考一下 整理总结自鸿洋的博客,希望可以帮到大家。 一、FlowLayout介绍 所谓FlowLayout,就是控件根据ViewGroup的宽,自动的往右添加,如果当前行剩余空间不足,则自动添加到下一行

  • 对你来说有点困惑...... 我有一个730px宽,自动高度div。在这里面,我将小div的数量164px X 261px。 这些将被动态地拉入模板,所以我可以有1个,或者我可以有18个,或者为了这个练习,我可以有1000个,或者介于两者之间的任何地方。 我需要把它们隔开,这样每一行之间就有相等的距离。简单,如果我们处理多达4个,我可以这样做: 然而,当有人说5。我想要3个在最上面一排,2个在最下

  • 本文向大家介绍Android简单实现自定义流式布局的方法,包括了Android简单实现自定义流式布局的方法的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了Android简单实现自定义流式布局的方法。分享给大家供大家参考,具体如下: 首先来看一下 手淘HD - 商品详情 - 选择商品属性 页面的UI 商品有很多尺码,而且展现每个尺码所需要的View的大小也不同(主要是宽度),所以在从服务器端

  • 问题内容: 我正在尝试使用Android中的XML文件定义GUI布局。据我所知,没有办法指定您的小部件应在XML文件中使用一种自定义字体(例如,您放置在资产/字体/中的字体),并且只能使用系统安装的字体。 我知道,在Java代码中,我可以使用唯一ID手动更改每个小部件的字体。另外,我可以遍历Java中的所有小部件以进行此更改,但这可能会很慢。 我还有什么其他选择?有没有更好的方法来制作具有自定义外

  • 在移动终端兴起的时代,可以预见的是,未来还会涌现出更多大小不一的屏幕,人们需要一种灵活的、能够适应未知设备的方法,使得我们的设计在所有屏幕中都能完美显示,这就催生了流式布局。 使用流式布局时,尺寸不再使用像素,而是使用百分百进行设置。这种布局可以自适应用户的分辨率,并根据浏览器窗口尺寸自由伸缩,非常高效的利用空间。当浏览器窗口变大,元素的尺寸会变宽,当浏览器窗口变小,元素的尺寸也会跟着变小。页面周