我试图以视图为中心但不是。根容器是RelativeLayout。仅当手机处于纵向多窗口模式时才会发生这种情况。我已经尝试将视图放在LinearLayout,RelativeLayout和FrameLayout中但没有任何效果。在横向多窗口模式下,我很惊讶相同的布局。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/root_relative"
android:background="@color/colorAccentWhite"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:descendantFocusability="beforeDescendants"
android:focusableInTouchMode="true"
android:clickable="true">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center">
<TextView
android:id="@+id/name_textview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="17sp"
android:textColor="@color/black"
android:visibility="invisible" />
</RelativeLayout>
</RelativeLayout>
TextView位于左上角而不是水平居中。我怎样才能使它发挥作用?
答案 0 :(得分:0)
将此处使用的TextView的宽度更改为&#39; wrap_content&#39;来自&#39; match_parent&#39;