TextView居中显示解决思路
TextView居中显示
为什么TextView无法居中显示呢?
现在是这样的

------解决思路----------------------
是orientation要设置
------解决思路----------------------
2L对的。你要设置个方向
<LinearLayout
android:layout_width="match_parent"
android:layout_height="45dp"
android:id="@+id/translator_title"
android:background="#F5F5F5">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="@string/goodat_language_type"
android:textSize="20sp"
android:textColor="#C2C2C2" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:text="@string/add"
android:textSize="15sp"
android:textColor="#A5A5A5"/>
</LinearLayout>
为什么TextView无法居中显示呢?
现在是这样的
------解决思路----------------------
是orientation要设置
------解决思路----------------------
2L对的。你要设置个方向