我在android RelativeLayout
中有一个TextView。但是我面临的问题是这个textView会显示在屏幕顶部,而我想要它在屏幕的底部。这是我的代码。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/pnr_bg"
android:orientation="vertical"
android:padding="0dp" >
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_column="0"
android:layout_columnSpan="6"
android:layout_gravity="right|bottom"
android:layout_row="6"
android:layout_height="match_parent"
android:textColor="#0f0f0f" />
</RelativeLayout>
如何将TextView放在android的屏幕顶部?
答案 0 :(得分:2)
而不是布局 - 重力使用重力场。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:padding="0dp" >
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_column="0"
android:layout_columnSpan="6"
android:layout_row="6"
android:gravity="right|bottom"
android:layout_height="match_parent"
android:textColor="#0f0f0f" />
</RelativeLayout>
如果你想把它放在最顶端,
android:gravity="right|top"
答案 1 :(得分:1)
// try this way,hope this will help you...
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="bottom|right">
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#0f0f0f"
android:text="TextView"/>
</LinearLayout>
答案 2 :(得分:0)
如果你想使用Relativelayout
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"
它将使视图在底部和右侧。