我正在尝试将文本视图的文本放在中心。我已经使用了layout_gravity =" center"但似乎毫无用处。任何人都可以告诉我下面的代码有什么问题。请注意,我必须在其中使用framelayout和Linear Layout。这不能改变。 Min SDK版本是11。
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#0099cc"
tools:context="com.SKSDroid.notifydaily.NotifyDaily" >
<LinearLayout
android:id="@+id/fullscreen_content"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:background="@color/black_overlay"
android:orientation="vertical"
tools:ignore="UselessParent" >
<TextView
android:id="@+id/textView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:layout_weight="1"
android:keepScreenOn="true"
android:text="@string/dummy_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="#33b5e5"
android:textStyle="bold" />
<TextView
android:id="@+id/autorTextView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
android:layout_weight="1"
android:keepScreenOn="true"
android:text="Sonu"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="#33b5e5"
android:textStyle="bold" />
</LinearLayout>
</FrameLayout>
答案 0 :(得分:1)
您是否尝试过android:gravity="centre"