Если в виде прокрутки у меня есть относительный макет с двумя текстовыми представлениями, и у одного из текстовых видов есть свойство 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>