Android 디 스 플레이 전체 텍스트 접 기 컨트롤 사용 방법 상세 설명
텍스트 가 설 정 된 줄 수 를 초과 하면 접 고,설 정 된 줄 수 보다 작 으 면 전개 단 추 를 표시 하지 않 습 니 다.아래 코드.
레이아웃 파일 먼저 보기:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/color_white" >
<TextView
android:id="@+id/desc_tv"
style="@style/font2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical" />
<TextView
android:id="@+id/desc_op_tv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/desc_tv"
android:gravity="center_vertical"
android:singleLine="true"
android:text="@string/quan_wen"
android:textColor="#5f897b"
android:textSize="16sp"
android:visibility="gone" />
</RelativeLayout>
간단 합 니 다.위의 TextView 는 주요 텍스트 내용 을 표시 하고 아래 는 접 을 때 클릭 합 니 다.다음은 사용자 정의 입 니 다.
package xxx;
import android.annotation.SuppressLint;
import android.content.Context;
import android.os.Handler;
import android.os.Message;
import android.util.AttributeSet;
import android.view.View;
import android.widget.LinearLayout;
import android.widget.TextView;
import android.widget.TextView.BufferType;
import xxx.R;
/**
*
*/
public class CollapsibleTextView extends LinearLayout implements View.OnClickListener {
private static final int COLLAPSIBLE_STATE_NONE = 0;//
private static final int COLLAPSIBLE_STATE_SHRINKUP = 1;//
private static final int COLLAPSIBLE_STATE_SPREAD = 2;//
private int mState = COLLAPSIBLE_STATE_SPREAD;
private static final String COLLAPSIBLE_STATE_SHRINKUP_TEXT = " ";
private static final String COLLAPSIBLE_STATE_SPREAD_TEXT = " ";
private TextView mText;
/**
* @return Returns the mText.
*/
public TextView getmText() {
return mText;
}
public int getmState() {
return mState;
}
public void setmState(int mState) {
this.mState = mState;
}
private TextView mTextTip;
private changeState changeStateCallBack;
private boolean isNeedLayout;
private int maxLineCount = 8;
private final Handler handler = new Handler() {
@Override
public void dispatchMessage(Message msg) {
if (mText.getLineCount() <= maxLineCount) {
//
mState = COLLAPSIBLE_STATE_NONE;
mText.setMaxLines(Integer.MAX_VALUE);
mTextTip.setVisibility(View.GONE);
}
else {
switch (mState) {
case COLLAPSIBLE_STATE_SPREAD:
//
mText.setMaxLines(maxLineCount);
mTextTip.setVisibility(View.VISIBLE);
mTextTip.setText(COLLAPSIBLE_STATE_SPREAD_TEXT);
break;
case COLLAPSIBLE_STATE_SHRINKUP:
//
mText.setMaxLines(Integer.MAX_VALUE);
mTextTip.setVisibility(View.VISIBLE);
mTextTip.setText(COLLAPSIBLE_STATE_SHRINKUP_TEXT);
break;
default:
// ,
mState = COLLAPSIBLE_STATE_NONE;
mText.setMaxLines(Integer.MAX_VALUE);
mTextTip.setVisibility(View.GONE);
break;
}
}
}
};
public CollapsibleTextView(Context context) {
this(context, null);
initView();
}
public CollapsibleTextView(Context context, AttributeSet attrs) {
super(context, attrs);
initView();
}
@SuppressLint("NewApi")
public CollapsibleTextView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
initView();
}
private void initView() {
View view = inflate(getContext(), R.layout.collapsible_textview, this);
view.setPadding(0, -1, 0, 0);
mText = (TextView) view.findViewById(R.id.desc_tv);
mTextTip = (TextView) view.findViewById(R.id.desc_op_tv);
mTextTip.setOnClickListener(this);
}
/**
*
*
* @param charSequence
* @param bufferType
*/
public final void setText(CharSequence charSequence, BufferType bufferType) {
isNeedLayout = true;
mState = COLLAPSIBLE_STATE_SPREAD;
mText.setText(charSequence, bufferType);
}
/**
*
*
* @param charSequence
*/
public final void setText(CharSequence charSequence) {
isNeedLayout = true;
mText.setText(charSequence);
}
@Override
public void onClick(View v) {
isNeedLayout = true;
if (mState == COLLAPSIBLE_STATE_SPREAD) {
// ,
mState = COLLAPSIBLE_STATE_SHRINKUP;
requestLayout();
}
else if (mState == COLLAPSIBLE_STATE_SHRINKUP) {
// ,
mState = COLLAPSIBLE_STATE_SPREAD;
requestLayout();
}
if (null != changeStateCallBack) {
changeStateCallBack.changeFlag(v);
}
}
@Override
protected void onLayout(boolean changed, int l, int t, int r, int b) {
super.onLayout(changed, l, t, r, b);
if (isNeedLayout) {
isNeedLayout = false;
handler.sendMessage(Message.obtain());
}
}
public int getMaxLineCount() {
return maxLineCount;
}
public void setMaxLineCount(int maxLineCount) {
this.maxLineCount = maxLineCount;
}
public changeState getChangeStateCallBack() {
return changeStateCallBack;
}
public void setChangeStateCallBack(changeState changeStateCallBack) {
this.changeStateCallBack = changeStateCallBack;
}
public interface changeState {
public void changeFlag(View v);
}
}
클릭 하여 펼 친 후 상태 값 에 따라 다시 그립 니 다.이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Bitrise에서 배포 어플리케이션 설정 테스트하기이 글은 Bitrise 광고 달력의 23일째 글입니다. 자체 또는 당사 등에서 Bitrise 구축 서비스를 사용합니다. 그나저나 며칠 전 Bitrise User Group Meetup #3에서 아래 슬라이드를 발표했...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.