Android布局的东西
如果在滚动视图中,我有一个带有两个文本视图的相对布局,并且其中一个文本视图具有属性 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>
If in a scrollview I have a relative layout with two textviews and one of the textview has property android:layout_alignParentBottom="true". It is possible to align this textview at the botton of the screen?
<?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>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你想将 TextView 对齐在底部,并且 ui 的其余部分可以滚动。那么你的布局应该是这样的。
希望这有帮助。
If you want to align TextView at the bottom, and rest of the ui to be scrollable. Then your layout should look like this.
Hope this helps.