【发布时间】:2011-02-17 18:21:44
【问题描述】:
如何将 id="naslov" 的 textview 放在中心?我也尝试过 layout_gravity="center" 但这也不起作用。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:id="@+id/naslov"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20dip"
android:text="Povzetek"
android:gravity="center"/>
<TextView
android:id="@+id/aha"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="10dip"
android:text="Vseh oddaj:"
android:layout_below="@id/naslov"/>
</RelativeLayout>
【问题讨论】:
-
属性重力在RelativeLayout中没有影响。
-
Android and Layouts 的可能重复项