반응형
커서가 맨 위에있는 Android의 MultiLine EditText
이 질문에 이미 답변이 있습니다.
나는 그것이 이미 수천 번 대답 한 문제인 것처럼 보이지만 나에게 맞는 것을 찾지 못했습니다.
무게 (1)와 높이 (0dip)로 "재생"하여보기 크기에 적응하는 Android의 MultiLine EditText가 있습니다. 중력 "상단"을 사용하고 있지만 중간에서 시작합니다.
무게와 관련된 문제인 것 같아요. 다음은 코드입니다 (부모는 LinearLayout입니다).
<EditText
android:id="@+id/txtContacto"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_gravity="top"
android:inputType="textMultiLine"
android:weight="1">
</EditText>
<EditText
android:id="@+id/txtContacto"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:gravity="top"
android:inputType="textMultiLine"
android:weight="1">
</EditText>
위의 코드를 시도해보십시오. 레이아웃 중력은 편집 텍스트를 설정하고 중력은 편집 텍스트의 내용을 설정합니다.
반응형
'Programing' 카테고리의 다른 글
Subclipse 및 JavaHL 설치 문제 (0) | 2020.12.29 |
---|---|
하나의 서버에 여러 클라이언트를 프로그래밍하는 소켓 (0) | 2020.12.29 |
vmware 도구 설치시 Ubuntu 설치가 멈춤 (0) | 2020.12.29 |
Google 클라우드 메시징에 사용할 API 키 가져 오기 (0) | 2020.12.29 |
데이터 디렉토리 gitlab을 변경하여 다른 곳에 저장소를 저장하십시오. (0) | 2020.12.29 |