我有以下布局,我想让 textview 出现在视图的中心和中间。我怎样才能做到这一点?
在图形视图中查看布局时,我尝试调整各种重力属性,但似乎没有任何改变。我想要中心的文本视图,我已经完成但在视图的一半。
谢谢马特。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/carefreebgscaledalphajpg" >
<TextView
android:id="@+id/textviewdatefornocallspage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="You have no calls for "
android:textSize="25sp" />
</LinearLayout>