本篇文章给大家分享的是有关Android中怎么利用TextView实现微信可折叠效果,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。
成都创新互联是一家专业提供洱源企业网站建设,专注与成都网站建设、网站设计、H5开发、小程序制作等业务。10年已为洱源众多企业、政府机构等服务。创新互联专业网站建设公司优惠进行中。
1.自定义的View:
import android.content.Context; import android.content.res.TypedArray; import android.util.AttributeSet; import android.view.LayoutInflater; import android.view.MotionEvent; import android.view.View; import android.view.ViewTreeObserver; import android.widget.LinearLayout; import android.widget.TextView; /** * 可折叠的textview */ public class ExpandTextView extends LinearLayout { public static final int DEFAULT_MAX_LINES = 3; private TextView contentText; private TextView textPlus; private int showLines; private ExpandStatusListener expandStatusListener; private boolean isExpand; public ExpandTextView(Context context) { super(context); initView(); } public ExpandTextView(Context context, AttributeSet attrs) { super(context, attrs); initAttrs(attrs); initView(); } public ExpandTextView(Context context, AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); initAttrs(attrs); initView(); } private void initAttrs(AttributeSet attrs) { TypedArray typedArray = getContext().getTheme().obtainStyledAttributes(attrs, R.styleable.ExpandTextView, 0, 0); try { showLines = typedArray.getInt(R.styleable.ExpandTextView_showLines, DEFAULT_MAX_LINES); }finally { typedArray.recycle(); } } private void initView() { setOrientation(LinearLayout.VERTICAL); LayoutInflater.from(getContext()).inflate(R.layout.layout_magic_text, this); contentText = (TextView) findViewById(R.id.contentText); if(showLines > 0){ contentText.setMaxLines(showLines); } textPlus = (TextView) findViewById(R.id.textPlus); textPlus.setOnClickListener(new OnClickListener() { @Override public void onClick(View view) { String textStr = textPlus.getText().toString().trim(); if("全文".equals(textStr)){ contentText.setMaxLines(Integer.MAX_VALUE); textPlus.setText("收起"); setExpand(true); }else{ contentText.setMaxLines(showLines); textPlus.setText("全文"); setExpand(false); } //通知外部状态已变更 if(expandStatusListener != null){ expandStatusListener.statusChange(isExpand()); } } }); } public void setText(final CharSequence content){ //在开始绘制contentText内容时,进行监听 contentText.getViewTreeObserver().addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() { @Override public boolean onPreDraw() { // 避免重复监听 contentText.getViewTreeObserver().removeOnPreDrawListener(this); //获取当前文本的行数 int linCount = contentText.getLineCount(); if(linCount > showLines){ if(isExpand){ contentText.setMaxLines(Integer.MAX_VALUE); textPlus.setText("收起"); }else{ contentText.setMaxLines(showLines); textPlus.setText("全文"); } textPlus.setVisibility(View.VISIBLE); }else{ textPlus.setVisibility(View.GONE); } return true; } }); contentText.setText(content); } public void setExpand(boolean isExpand){ this.isExpand = isExpand; } public boolean isExpand(){ return this.isExpand; } public void setExpandStatusListener(ExpandStatusListener listener){ this.expandStatusListener = listener; } public interface ExpandStatusListener{ void statusChange(boolean isExpand); } @Override public boolean onTouchEvent(MotionEvent event) { return textPlus.dispatchTouchEvent(event); } }
2.相关布局文件
3.自定义属性
4.开始引用
以上就是Android中怎么利用TextView实现微信可折叠效果,小编相信有部分知识点可能是我们日常工作会见到或用到的。希望你能通过这篇文章学到更多知识。更多详情敬请关注创新互联行业资讯频道。