textview是否超过一行_Android中TextView实现超过固定行数显示“...展开全部”
时间: 2024-03-27 09:35:46 浏览: 157
要判断 TextView 是否超过一行,可以通过以下代码实现:
```
TextView textView = findViewById(R.id.text_view);
textView.post(new Runnable() {
@Override
public void run() {
if (textView.getLineCount() > 1) {
// 超过一行
} else {
// 只有一行
}
}
});
```
如果要实现超过固定行数显示“...展开全部”,可以使用自定义布局和代码来实现。具体步骤如下:
1. 自定义布局,将 TextView 和展开/收起按钮放在一个布局中,例如:
```
<LinearLayout
android:id="@+id/expandable_text_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="10dp">
<TextView
android:id="@+id/text_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="2"
android:ellipsize="end"/>
<TextView
android:id="@+id/expand_collapse_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="14sp"
android:textColor="@color/colorAccent"
android:text="展开全部"/>
</LinearLayout>
```
其中,TextView 的 maxLines 属性设置为固定的行数,ellipsize 属性设置为 end,表示超过固定行数后用省略号代替。
2. 通过代码实现 TextView 的展开和收起。具体实现方式可以参考以下代码:
```
private boolean isTextExpanded = false;
// 展开/收起按钮点击事件
TextView expandCollapseTextView = findViewById(R.id.expand_collapse_text);
expandCollapseTextView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
TextView textView = findViewById(R.id.text_view);
if (isTextExpanded) {
// 收起状态,将 TextView 的 maxLines 属性设置为固定的行数
textView.setMaxLines(2);
expandCollapseTextView.setText("展开全部");
isTextExpanded = false;
} else {
// 展开状态,将 TextView 的 maxLines 属性设置为 Integer.MAX_VALUE
textView.setMaxLines(Integer.MAX_VALUE);
expandCollapseTextView.setText("收起");
isTextExpanded = true;
}
}
});
// 监听 TextView 的 layout 变化,如果高度变化说明文本内容发生了变化,需要重新判断是否需要显示展开/收起按钮
TextView textView = findViewById(R.id.text_view);
textView.addOnLayoutChangeListener(new View.OnLayoutChangeListener() {
@Override
public void onLayoutChange(View v, int left, int top, int right, int bottom,
int oldLeft, int oldTop, int oldRight, int oldBottom) {
if (bottom != oldBottom) {
if (textView.getLineCount() > 2) {
expandCollapseTextView.setVisibility(View.VISIBLE);
} else {
expandCollapseTextView.setVisibility(View.GONE);
}
}
}
});
```
其中,isTextExpanded 表示文本是否展开状态。在展开/收起按钮的点击事件中,通过设置 TextView 的 maxLines 属性实现展开和收起的功能。在 TextView 的 layout 变化监听器中,通过判断 TextView 的行数来决定是否显示展开/收起按钮。
阅读全文