textView 에서 텍스트 가 너무 길 게 잘 린 해결 방안

2981 단어 android이동 개발
원래 문 제 는 CSDN 문답 채널 에서 나 왔 습 니 다. 더 많은 해결 방안 은 다음 과 같 습 니 다.http://ask.csdn.net/questions/1840
질문 설명:
텍스트 가 표시 공간 을 초과 하지 않 으 면 중력 을 위로 설정 합 니 다.
tv.setGravity(Gravity.TOP);

만약 텍스트 가 너무 범 위 를 초과 한다 면, 나 는 텍스트 의 끝 부분 을 표시 해 야 한다.
tv.setGravity(Gravity.BOTTOM);

레이아웃:
<RelativeLayout
    android:id="@+id/textLayout"
    android:layout_marginTop="16dp"
    android:layout_width="fill_parent"
    android:layout_height="110dp"
    android:orientation="vertical"
    android:visibility="visible" >

    <TextView
        android:id="@+id/tv"
        android:layout_width="match_parent"
        android:layout_height="fill_parent"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:gravity="top"
        android:text="Long text bla bla."
        android:textColor="@android:color/black"
        android:textColorHint="@android:color/black"
        android:textSize="37sp" />
   ...
</RelativeLayout>

응용 프로그램 이 텍스트 의 길 이 를 어떻게 판단 해 야 할 지 모 르 겠 습 니 다.범 위 를 넘 지 않 았 습 니까?화면 마다 크기 가 다 르 기 때문에 하 드 인 코딩 을 통 해 줄 수 를 설정 하여 판단 할 수 없습니다.
해결 방안:LinearLayoutTextVew 를 넣 고 TextVew 와 linearlayout 의 높이 를 비교 합 니 다.
<RelativeLayout
        android:id="@+id/textLayout"
        android:layout_marginTop="16dp"
        android:layout_width="fill_parent"
        android:layout_height="110dp"
        android:orientation="vertical"
        android:visibility="visible" >

<LinearLayout 
        android:id ="@+id/linear"
        android:layout_width="match_parent"
        android:layout_height="fill_parent"
        android:orientation="horizontal">

        <TextView
            android:id="@+id/text"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
            android:gravity="top"
            android:text="Long text bla bla."
            android:textColor="@android:color/black"
            android:textColorHint="@android:color/black"
            android:textSize="37sp" />

비교 높이:
if(text.getHeight()>linear.getHeight()){
            //Here TextView longer than available space
        }

좋은 웹페이지 즐겨찾기