我有一個問題,我不能把TextView放在屏幕的中心。android - Textview的重力不起作用
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="hojune.intelibag.Splash">
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello world!"
android:textSize="32sp"
android:layout_gravity="center"
android:textColor="#404040" />
請點擊查看我的結果的鏈接。 {my result}
如何讓TextView放在屏幕的中心?謝謝。
檢查我的答案... –