스크롤되는 textView 만들기

1458 단어 Android
최근에 이전의 필기를 정리하다가 이 작은 지식을 발견하여 다시 한 번 적어 놓았는데, 이미 준비되어 있다.속담에 한 걸음 한 걸음 쌓지 않으면 천 리를 갈 뜻도 없고, 작은 흐름을 쌓지 않으면 강을 이룰 수 없다고 했는데, 큰 진보는 모두 조금씩 축적되어 이루어진 것이고, 옛사람들은 여전히 지혜가 충만했다.
  1 .먼저 다음과 같이 textView에 초점을 맞출 수 있습니다.
 package com.hncj.android.mobilesafe.ui;

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

 public class FocusedTextView extends TextView {

	public FocusedTextView(Context context, AttributeSet attrs, int defStyle) {
		super(context, attrs, defStyle);
		// TODO Auto-generated constructor stub
	}

	public FocusedTextView(Context context, AttributeSet attrs) {
		super(context, attrs);
		// TODO Auto-generated constructor stub
	}

	public FocusedTextView(Context context) {
		super(context);
		// TODO Auto-generated constructor stub
	}
	/**
	 *    textview isFocused  ,  true
	 */
   @Override
    public boolean isFocused() {
	// TODO Auto-generated method stub
	   return true;
     }

 }

2. 필요한 곳에 인용을 추가하면 된다.
     

해결, 주의해야 할 것은:
1. textview가 초점을 받아야 스크롤을 시작합니다.2.textview 내용의 길이가 컨트롤의 길이를 초과할 때 스크롤합니다.
타당하지 않은 점은 비판과 시정을 환영하며, 함께 공부하고, 함께 진보하자!

좋은 웹페이지 즐겨찾기