所以我在TextView中居中文本时遇到问题。我希望将文本放在Textview的中心。这是我的代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:background="#EAEAEA"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"
android:weightSum="3">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/Ciech"
android:src="@drawable/ciech"
android:layout_marginTop="16dp"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="@drawable/border"
android:layout_margin="5dp">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="sampletext"
android:layout_margin="16dp"/>
</ScrollView>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="16dp">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/globus"
android:src="@drawable/grid_world"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="sampletext"
android:textColor="#000000"
android:textStyle="bold"
android:layout_alignBottom="@+id/globus"
android:layout_toEndOf="@+id/globus"
android:layout_alignParentTop="true"
android:layout_toRightOf="@+id/globus"
android:gravity="center" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/koperta"
android:src="@drawable/close_envelope"
android:layout_below="@+id/globus"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="sampletext"
android:textColor="#000000"
android:textStyle="bold"
android:layout_alignBottom="@+id/koperta"
android:layout_alignTop="@+id/koperta"
android:layout_toRightOf="@+id/koperta"
android:gravity="center" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/torba"
android:src="@drawable/portfolio_black_tool"
android:layout_below="@+id/koperta"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="sampletext"
android:textColor="#000000"
android:textStyle="bold"
android:layout_alignBottom="@+id/torba"
android:layout_toEndOf="@+id/torba"
android:layout_alignTop="@+id/torba"
android:layout_toRightOf="@+id/torba"
android:gravity="center" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/znaczek"
android:src="@drawable/map_marker"
android:layout_below="@+id/torba"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="sampletext"
android:textColor="#000000"
android:textStyle="bold"
android:layout_alignBottom="@+id/znaczek"
android:layout_toEndOf="@+id/znaczek"
android:layout_alignTop="@+id/znaczek"
android:layout_toRightOf="@+id/znaczek"
android:gravity="center" />
</RelativeLayout>
</ScrollView>
</LinearLayout>
</LinearLayout>
当我在Android Studio中查看预览时,它向我显示: this 这正是我想要的。但是,当我运行模拟器时,它会突然改变,看起来像:this
有人可以帮我解决这个问题吗,我很困惑
答案 0 :(得分:0)
将<{1}}添加到要居中的TextView中。
我不知道这背后的真正原因。在textAlignment与gravity之间查找以下链接。 Text/Layout Alignment in Android (textAlignment, gravity)