2011-02-25 8 views
5

콘텐츠를 업데이트 할 때 자동 스크롤하도록 EditText를 ScrollView로 래핑하려고했습니다. EditText는 width와 height가 모두 fill_parent로 설정되어 있어도 전체 스크롤 뷰를 덮지 않는 문제를 발견했습니다. 제발 저를 계몽하십시오. 고맙습니다. 있는 ScrollView 속성에 android:fillViewport="true"를 추가Android : EditText가 ScrollView 및 RelativeLayout을 채우지 않습니다.

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:orientation="vertical" 
android:layout_width="fill_parent" 
android:layout_height="fill_parent" 
> 
<Button 
android:id="@+id/sendButton" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:layout_alignParentBottom="true" 
android:layout_alignParentRight="true" 
android:text="send" 
/> 
<EditText 
android:id="@+id/msgBox" 
android:layout_height="wrap_content" 
android:layout_width="fill_parent" 
android:layout_alignParentBottom="true" 
android:layout_toLeftOf="@+id/sendButton" 
android:gravity="left" 
android:longClickable="false" 
/> 
<ScrollView 
android:layout_width="fill_parent" 
android:layout_height="fill_parent" 
android:layout_above="@+id/msgBox"> 
<EditText 
android:id="@+id/chatBox" 
android:editable="false" 
android:gravity="left|top" 
android:cursorVisible="false" 
android:longClickable="false" 
android:clickable="false" 
android:autoLink="all" 
android:layout_width="fill_parent" 
android:layout_height="fill_parent"/> 
</ScrollView> 
</RelativeLayout> 

답변

21

시도 : 여기

는 코드입니다. 그것은 내부의 어떤 것이 바뀔 때마다 크기를 조정해야합니다. 또한 EditTextandroid:layout_height=wrap_content을 사용하십시오. 크기를 변경할 수있는 부모를 채우는 것은 의미가 없습니다.

+0

굉장! 매력처럼 작동합니다! 대단히 감사합니다. – Byte