2
일부 데이터를 표시하려면 사용자 지정 대화 상자를 사용하고 있습니다. 나는 gridlayout을 사용했고이 대화 상자 레이아웃은 dialogfragment에서 가져 왔습니다. 스냅 우리는하지만, 그것의 이름 텍스트 뷰에 항목 이름이 랩을하지 않습니다 나타납니다 목록 대화 상자를 클릭하면 볼 수텍스트 텍스트 포장 안 포장 상자에
는 다음과 같습니다. 지금까지 나는 모든 옵션을 this 스레드에서 응답했습니다.
XML 코드는 화면의 폭이 작을 때 그것은 수평으로 텍스트 뷰를 스크롤 할 true
에 텍스트 뷰에 android:scrollHorizontally
를 설정하지 왜 advnce에서
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/edit_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:orientation="vertical" >
<GridLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:columnCount="2" >
<TextView
android:id="@+id/txtv_Reg_Name_dialog"
android:layout_column="1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scrollHorizontally="false"
android:layout_gravity="left|top"
android:layout_row="1"
android:padding="10dp"
android:text=""
android:textAppearance="?android:attr/textAppearanceMedium" />
고맙습니다 ..
전체 ur 대화 xml 표시 ... –