下面是一張圖片來幫助我解釋我的問題:TextView不從左側開始
黑框是整個屏幕。紅色框是TextView
。綠色是文字。當我運行我的代碼時,它看起來像左邊的屏幕,但我希望它看起來像它在右邊。 (左起開始)
這裏是TextView
代碼:
<TextView
android:id="@+id/info_ruta"
android:layout_width="256dp"
android:layout_height="80dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:text="@string/info_sumary"
android:textColor="#FFF"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/day_seven_id" />
當試圖添加android:gravity="left"
或="start"
它不與我的問題有所幫助。我在這裏錯過了什麼?
使用'android:layout_width =「match_parent」'並確保容器也應該具有match_parent,如果問題仍然存在,請在整個佈局後留言 –
什麼是父佈局?嘗試發佈您的完整佈局。 –
@PavneetSingh照顧我的問題!謝謝! 「回答」,如果你想我接受並讚揚。 – Carlton