나는 안드로이드 프로그래밍에 익숙하다. 간단한 계산기를 구현할 때 가로 스크롤보기 문제가 있습니다. 가로 스크롤보기 내에서 편집 텍스트를 사용하고 있습니다. 그것은 처음에는 완전히 정상적으로 작동하지만 화면을 지우 자마자 스크롤 한계를 유지합니다. 즉, 화면에 숫자가 적더라도 스크롤 할 수 있습니다. 내가 원하는 것은 그것의 스크롤을 제한하는 것입니다. 아래는 스크린 샷과 XML 코드입니다. 가로 스크롤보기, 스크롤 문제 Android
[제 시간] [2]It is still scroll-able even though there are few digits
<HorizontalScrollView
android:id="@+id/hsvMain"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end"
android:scrollbars="none"
>
<EditText
android:id="@+id/mainEditText"
android:paddingTop="10dp"
android:paddingRight="2dp"
android:background="#ffff"
android:ellipsize="end"
android:focusable="false"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:textSize="55sp"
android:textStyle="bold"
/>
</HorizontalScrollView>
edittext layout_width @ height to wrap_content –