我已設置 android:gravity="right"
將我的文本對齊到右側。 但是,當字符串的長度超過空格時,將無法看到以下文本。在Android Studio中需要幫助:文本對齊
我該如何解決這個問題,以便前一個條目向左移動?
看來,我的代碼的問題來自EditText.append()
,當我從OnClickListener追加新的輸入,文本將表現方式鍵盤輸入一樣。
你能指導我如何解決它嗎?對不起,我是新來的Android
<EditText
android:id="@+id/equation"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="16dp"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:layout_marginStart="16dp"
android:layout_marginTop="40dp"
android:ems="10"
android:focusable="false"
android:focusableInTouchMode="false"
android:inputType="numberSigned|numberDecimal"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:clickable="false"
android:gravity="right"
android:layout_gravity="end"/>
//圖片
編輯文本組件右對齊。
當字符串的長度超過該空間,新的條目不能被看到。
如何更改它,以便舊條目向左移動,新條目將繼續出現在編輯文本小部件的右端?
顯示你的XML請 –