我正在显示一个textview(我打算将其填满整个屏幕,不包括它下面的按钮)和一个活动中的按钮(底部的小按钮)。我想将textview放在按钮上。我不想硬编码任何高度/宽度。
因此 对于按钮,我将高度广告宽度保持为word_wrap 对于textview,我将宽度保持为填充父级。
我想知道的是,无论如何,我可以指定textview高度为screenheight-button height。我希望在xml文件中使用它,但不能在我的代码中使用。
答案 0 :(得分:5)
要实现这一目标,您必须创建以下内容:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/button1"
android:text="TextView" />
<Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:text="Button" />
</RelativeLayout>
你有一个文本视图,它将保持在你的按钮之上,适合整个屏幕。
答案 1 :(得分:0)
使用RelativeLayout,将textview的尺寸设置为fill_parent,然后在其下方放置按钮, 设置按钮的android:layout_below =“@ + id / textview”,按钮的尺寸为wrap_content。
检查可视化设计器或设备中的结果,它应该可以正常工作
答案 2 :(得分:0)
您可以使用layout_weight属性
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:text="TextView" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Button" />
</LinearLayout>