2015년 3월 4일 수요일

[AnDrOiD] TableLayout의 stretchColumns 때문에 늘어난 TextView의 줄바꿈


출처 : http://susemi99.tistory.com/1340

 <TableLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:stretchColumns="1" >

        <TableRow
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" >
            <TextView
                android:layout_width="70dp"
            android:layout_height="match_parent"
            android:text="@string/msg_name" />
            <TextView
                android:id="@+id/tvLoc"
                android:width="0dp"
                android:layout_width="match_parent"
            android:layout_height="match_parent" />
        </TableRow>
 </TableLayout>


댓글 없음 :

댓글 쓰기