我有以下佈局,我希望使textview出現在視圖的中間和中間。我該如何實現這個目標?如何將一個textview居中在一個線性佈局中
我試着調整各種重力屬性時,在圖形視圖中查看佈局,但似乎沒有改變它。我希望在我所完成的中心的textview中,但在視圖的一半處。
謝謝馬特。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/carefreebgscaledalphajpg" >
<TextView
android:id="@+id/textviewdatefornocallspage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="You have no calls for "
android:textSize="25sp" />
</LinearLayout>
感謝工作得很好,現在 – turtleboy
的RelativeLayout的解決方案工作對我來說,但在TextView中,我必須使用'wrap_content'來兼顧寬度和高度。 –
@Jose_GD:在這兩種情況下,它都適用於你:)。在使用width屬性'match_parent'的情況下,只需添加'layout_gravity =「center」'。就這樣 ;) – Houcine