我希望控制器textView成为应用程序的中心。我使用android:gravity =“center”但没有帮助。 我的代码是
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="CONTROLLER"
android:textSize="30dp"
android:gravity="center"
android:textColor="#fff"
android:layout_marginTop="39dp"
android:id="@+id/textView3"
/>
</LinearLayout>
提前感谢您的帮助。
答案 0 :(得分:1)
布局中只需android:gravity="center"
,并且整个视图中的TextView也位于android:layout_height="match_parent"
中心。
和android:gravity="center_horizontal" to centralize it horizontaly.
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="CONTROLLER"
android:textSize="30sp"
android:textColor="#fff"
android:layout_marginTop="39dp"
android:id="@+id/textView3"
/>
</LinearLayout>
并且textSize也应该在sp而不是dp中进行测量。