Android可收缩/扩展的TextView【2】

简介: Android可收缩/扩展的TextView【2】我写的可扩展/收缩的TextView:PhilExpandableTextView使用方法在附录文章1中已经说明。


Android可收缩/扩展的TextView【2】

我写的可扩展/收缩的TextView:PhilExpandableTextView使用方法在附录文章1中已经说明。简单的使用,可以直接写在布局中,初始默认是收缩成3行(可修改继续定制),当用户从触发expand事件后,PhilExpandableTextView将伸展成完全的行数。
PhilExpandableTextView在ListView一类的使用中,有些特殊,现在以PhilExpandableTextView在Android RecyclerView中的使用为例加以说明。
测试的主Activity MainActivity.java:

package zhangphil.text;

import java.util.ArrayList;

import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.LinearLayout;

public class MainActivity extends Activity {

	private ArrayList<Boolean> flags;

	private MyRecyclerViewAdapter adapter;
	private String test_str = "";

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);

		// 测试的字符串
		for (int i = 0; i < 100; i++)
			test_str = test_str + " " + i;

		setContentView(R.layout.activity_main);

		RecyclerView mRecyclerView = (RecyclerView) findViewById(R.id.recyclerView);

		LinearLayoutManager mLayoutManager = new LinearLayoutManager(this);
		mLayoutManager.setOrientation(LinearLayout.VERTICAL);
		mRecyclerView.setLayoutManager(mLayoutManager);

		adapter = new MyRecyclerViewAdapter(this);

		mRecyclerView.setAdapter(adapter);
	}

	private class MyViewHolder extends RecyclerView.ViewHolder {

		private PhilExpandableTextView text;
		private Button button;

		public MyViewHolder(View itemView) {
			super(itemView);

			text = (PhilExpandableTextView) itemView.findViewById(R.id.textView);
			button = (Button) itemView.findViewById(R.id.button);
		}
	}

	private class MyRecyclerViewAdapter extends RecyclerView.Adapter<MyViewHolder> {

		private LayoutInflater inflater;

		public MyRecyclerViewAdapter(Context context) {
			inflater = LayoutInflater.from(context);

			flags = new ArrayList<Boolean>();
			for (int i = 0; i < this.getItemCount(); i++) {
				flags.add(false);
			}
		}

		@Override
		public int getItemCount() {
			return 100;
		}

		@Override
		public void onBindViewHolder(MyViewHolder holder, final int pos) {

			holder.text.setText("position:" + pos + " -> " + test_str);

			holder.button.setOnClickListener(new View.OnClickListener() {

				@Override
				public void onClick(View v) {
					boolean b = flags.get(pos);
					b = !b;
					flags.set(pos, b);

					adapter.notifyDataSetChanged();
				}
			});

			boolean b = flags.get(pos);
			holder.text.setExpandable(b);

			String s = "";
			if (b)
				s = "收缩 " + pos;
			else
				s = "展开 " + pos;

			holder.button.setText(s);
		}

		@Override
		public MyViewHolder onCreateViewHolder(ViewGroup group, int pos) {
			View v = inflater.inflate(R.layout.item, null);
			MyViewHolder holder = new MyViewHolder(v);
			return holder;
		}
	}
}


MainActivity.java需要的布局文件:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="zhangphil.text.MainActivity" >

    <android.support.v7.widget.RecyclerView
        android:id="@+id/recyclerView"
        android:divider="#ff5252"
        android:dividerHeight="10dip"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

</RelativeLayout>



item.xml布局文件:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="5dip"
    android:background="@android:color/white"
    tools:context="zhangphil.text.MainActivity" >

    <zhangphil.text.PhilExpandableTextView
        android:id="@+id/textView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="10dip"
        android:background="#03a9f4"
        android:textColor="@android:color/white" />

    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_below="@+id/textView"
        android:text="展开" />
</RelativeLayout>


我写的PhilExpandableTextView.java:

package zhangphil.text;

import android.content.Context;
import android.util.AttributeSet;
import android.view.ViewTreeObserver;
import android.widget.TextView;

public class PhilExpandableTextView extends TextView {

	// 最大的行,默认只显示3行
	private final int MAX = 3;

	// 如果完全伸展需要多少行?
	private int lines;

	private PhilExpandableTextView mPhilTextView;

	// 标记当前TextView的展开/收缩状态
	// true,已经展开
	// false,以及收缩
	private boolean expandableStatus = false;

	public PhilExpandableTextView(Context context, AttributeSet attrs) {
		super(context, attrs);

		mPhilTextView = this;

		init();
	}

	private void init() {

		// ViewTreeObserver View观察者,在View即将绘制但还未绘制的时候执行的,在onDraw之前
		final ViewTreeObserver mViewTreeObserver = this.getViewTreeObserver();

		mViewTreeObserver.addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() {

			@Override
			public boolean onPreDraw() {
				// 避免重复监听
				mPhilTextView.getViewTreeObserver().removeOnPreDrawListener(this);

				lines = getLineCount();
				// Log.d(this.getClass().getName(), lines+"");

				return true;
			}
		});

		setMaxLines(MAX);
		
		//setEllipsize(TextUtils.TruncateAt.END);
	}

	// 是否展开或者收缩,
	// true,展开;
	// false,不展开
	public void setExpandable(boolean isExpand) {
		if (isExpand) {
			setMaxLines(lines + 1);
		} else
			setMaxLines(MAX);

		expandableStatus = isExpand;
	}

	public boolean getExpandableStatus() {
		return expandableStatus;
	}
}


代码运行结果:


附录我写的相关文章:
【文章1】《Android可收缩/扩展的TextView【1】》链接地址:http://blog.csdn.net/zhangphil/article/details/50088465

相关文章
|
3月前
|
XML 存储 Java
浅谈Android的TextView控件
浅谈Android的TextView控件
52 0
|
4月前
|
Android开发
Android经典实战之Textview文字设置不同颜色、下划线、加粗、超链接等效果
本文介绍了 `SpannableString` 在 Android 开发中的强大功能,包括如何在单个字符串中应用多种样式,如颜色、字体大小、风格等,并提供了详细代码示例,展示如何设置文本颜色、添加点击事件等,助你实现丰富文本效果。
361 3
|
7月前
|
XML IDE 开发工具
13. 【Android教程】文本框 TextView
13. 【Android教程】文本框 TextView
135 2
|
7月前
|
编解码 Android开发
Android 解决TextView多行滑动与NestedScrollView嵌套滑动冲突的问题
Android 解决TextView多行滑动与NestedScrollView嵌套滑动冲突的问题
133 0
|
8月前
|
Android开发
android TextView HTML 的效果
android TextView HTML 的效果
57 2
|
Java Android开发
安卓增加或修改现有app apk的功能(apk功能扩展)
安卓增加或修改apk android apk app的功能(apk功能扩展)
安卓增加或修改现有app apk的功能(apk功能扩展)
|
8月前
|
XML 搜索推荐 Java
Android TextView的字体设置
【5月更文挑战第13天】
356 0
|
8月前
|
XML Java Android开发
Android控件之基础控件——进度条类的view——TextView、Checkbox复选控件、RadioButton单选控件、ToggleButton开关、SeekBar拖动条、menu、弹窗
Android控件之基础控件——进度条类的view——TextView、Checkbox复选控件、RadioButton单选控件、ToggleButton开关、SeekBar拖动条、menu、弹窗
791 1
|
8月前
|
Android开发
Android开发小技巧:怎样在 textview 前面加上一个小图标。
Android开发小技巧:怎样在 textview 前面加上一个小图标。
152 0

热门文章

最新文章