如果在scrollview中我有一个带有两个textview的相对布局,其中一个textview具有属性android:layout_alignParentBottom =“true”。可以将此文本视图对齐到屏幕的底部吗?
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="blabla"/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:text="blabla2"/>
</RelativeLayout>
</ScrollView>
答案 0 :(得分:0)
如果要在底部对齐TextView,并将ui的其余部分设置为可滚动。然后你的布局应该是这样的。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<ScrollView android:layout_width="fill_parent"
android:layout_height="fill_parent">
<RelativeLayout android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView android:layout_width="fill_parent"
android:layout_height="wrap_content" android:text="blabla" />
</RelativeLayout>
</ScrollView>
<TextView android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_alignParentBottom="true"
android:text="blabla2" />
</RelativeLayout>
希望这有帮助。