[已解决] 我必须添加android:fillViewport="true"
到 ScrollView,这解决了文本不垂直居中的问题。
我知道这已经被回答过很多次了,但我仍然无法将 textview 的文本垂直居中。
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:id="@+id/relativelayout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/icon"
android:layout_width="@dimen/icon_width"
android:layout_height="@dimen/icon_height"
android:src="@drawable/picture" />
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/icon"
android:gravity="center_vertical"
android:layout_alignBottom="@+id/icon"
android:layout_alignTop="@+id/icon"
android:text="@string/title_text"
android:textSize="@dimen/textsize"
android:textStyle="bold"
android:textColor="@color/color"
android:shadowColor="@color/shadow"
android:shadowRadius="5"/>
</RelativeLayout>
</ScrollView>
通常这应该与
android:gravity="center_vertical"
但它对文本视图没有影响......
奇怪的是我有第二个应用程序,它的代码完全相同,它在那里工作没有任何问题。
/编辑
澄清我的问题:这就是我现在所拥有的:
这就是我想要的: