android 上下偏差怎么写_一种简单粗暴的方式实现Android文本域左右对齐

声明一下:这是一种比较无脑简单粗暴的方式去解决Android文本域对齐的方法,读者可以获取源码根据思路进行改造。迫于项目的紧张压力,需要赶紧上车,不然就没老司机带路了。

欢迎加入交流群:微信群(AndroidRunner )、QQ群(314896948)

欢迎关注微信公众号:AndroidRunner

首先展示一下效果图

据说效果图是这样的

实现过程很简单无脑,下面简单描述一下思路过程

背景:最初是有一个这样的需求,如下图:

背景需求效果

仔细一些,貌似还没做过这种需求,左边一个View,右边及下边所有区域是TextView,于是就有了此文的存在了。

定义属性字段attrs

说明:自定义控件类的属性字段包含:

- AlignedTextView:自定义控件类

- marginAndPaddingOfLeftRight:文本域左右距屏幕的间距总和值

- lineSpacingExtra:文本行距

- offset:单行文本数量微调偏移值

- textSize:文本大小

- textColor:文本颜色

自定义View

package com.lzj.alignedtextview;

/**

* function : 左右对齐TextView

*

* Created by lzj on 2016/5/26.

*/

public class AlignedTextView extends LinearLayout {

private int marginAndPaddingOfLeftRight = dip2px(40);//文本域左右已使用的间距值

private int lineSpacingExtra = dip2px(5);//文本行距

private int offset = dip2px(0);//偏差值,用作于误差调整

private int textSize = dip2px(14);//字体大小

private int textColor = Color.BLACK;// 字体颜色

private LayoutParams layoutParamsMW;

public AlignedTextView(Context context) {

this(context, null);

}

public AlignedTextView(Context context, AttributeSet attrs) {

this(context, attrs, 0);

}

public AlignedTextView(Context context, AttributeSet attrs, int defStyleAttr) {

super(context, attrs, defStyleAttr);

if (attrs != null) {

TypedArray ta = context.obtainStyledAttributes(attrs, R.styleable.AlignedTextView);

marginAndPaddingOfLeftRight = ta.getDimensionPixelSize(R.styleable.AlignedTextView_atv_marginAndPaddingOfLeftRight, marginAndPaddingOfLeftRight);

lineSpacingExtra = ta.getDimensionPixelSize(R.styleable.AlignedTextView_atv_lineSpacingExtra, lineSpacingExtra);

offset = ta.getDimensionPixelSize(R.styleable.AlignedTextView_atv_offset, offset);

textSize = ta.getDimensionPixelSize(R.styleable.AlignedTextView_atv_textSize, textSize);

textColor = ta.getColor(R.styleable.AlignedTextView_atv_textColor, textColor);

ta.recycle();

}

init();

}

private void init() {

layoutParamsMW = new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT);

setLayoutParams(layoutParamsMW);

setOrientation(VERTICAL);

layoutParamsMW.bottomMargin = lineSpacingExtra;

}

public void setText(int resId) {

setText(getResources().getString(resId));

}

public void setText(String content) {

if (TextUtils.isEmpty(content)) {

return;

}

content = content.trim();

int usedWidth = marginAndPaddingOfLeftRight + offset;

int remainWidth = getContext().getResources().getDisplayMetrics().widthPixels - usedWidth;

int lineWordNum = remainWidth / textSize;

if (lineWordNum <= 0) {

return;

}

int contentLength = content.length();

if (contentLength <= lineWordNum) {

addOneLineContent(content);

return;

}

int line = contentLength / lineWordNum + 1;

for (int x = 1; x <= line; x++) {

String lineContent;

if (x == 1) {

lineContent = content.substring(0, lineWordNum);

} else if (x == line) {

lineContent = content.substring(lineWordNum * (x - 1), content.length());

} else {

lineContent = content.substring(lineWordNum * (x - 1), lineWordNum * x);

}

addOneLineContent(lineContent);

}

}

private void addOneLineContent(String content) {

TextView lineText = new TextView(getContext());

lineText.setTextSize(TypedValue.COMPLEX_UNIT_PX, textSize);

lineText.setTextColor(textColor);

lineText.setText(content);

lineText.setLayoutParams(layoutParamsMW);

addView(lineText);

}

private int dip2px(int dip) {

final float scale = getContext().getResources().getDisplayMetrics().density;

return (int) (dip * scale + 0.5f);

}

}

代码一百行左右,实现的逻辑也比较无脑简单,首先在构造函数中初始化属性字段值以及整体布局参数,然后在设置文本是,通过获取到文本域可用范围并进行每一行字数显示数量的计算,通过对内容字符串的长度进行判断并拆分成每一行的文本信息,再一次addView进去即可。就这样简简单单就能简单解决文本域左右对齐的问题,基本上看起来会比原生TextView的效果看起来整洁一些。

来看看demo的内容##

布局文件

xmlns:app="http://schemas.android.com/apk/res-auto"

android:layout_width="match_parent"

android:layout_height="match_parent">

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:orientation="vertical">

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:layout_margin="20dp"

android:lineSpacingExtra="5dp"

android:text="@string/text"

android:textSize="14sp"/>

android:layout_width="match_parent"

android:layout_height="10dp"

android:background="@color/colorPrimary"/>

android:id="@+id/atv"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:layout_margin="20dp"

app:atv_lineSpacingExtra="5dp"

app:atv_marginAndPaddingOfLeftRight="40dp"

app:atv_textColor="@color/colorAccent"

app:atv_textSize="14sp"/>

代码调用,效果图如若初见。

AlignedTextView atv = (AlignedTextView) findViewById(R.id.atv);

atv.setText(R.string.text);

附上效果图里的string,来自QQ空间以为好友的状态(O(∩_∩)O哈哈~)

时间改变着一切,一切改变着我们。原先看不惯的,如今习惯了;曾经很想要的,现在不需要了;开始很执着的,后来很洒脱了。失去产生了痛苦,也铸就了坚强;经历付出了代价,也锤炼了成长。没流泪,不代表没眼泪;无所谓,不代表无所累。当你知道什么是欲哭无泪,欲诉无语,欲笑无声的时候,你成熟了。累了没人疼,你要学会休息;哭了没人哄,你要知道自立;痛了没人懂,你要扛起压力抱怨的话不要说。有些委屈,是说不出来的。即使有人问,也不知从何说起;就算有人疼,也代替不了自己。嘴里有话却说不出,沉默代表了一切;心中有疼却表不明,泪水倾诉着所有。一些经历,只有自己感受;一些心情,只有自己懂得。说不出的委屈,才最委屈;心里的疼痛,才最疼痛!总是为别人着想,却要独自去疗伤;一直在嘴上逞强,心却没那么坚强。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值