我想在我的屏幕上实现 heaser 和页脚,我已经尝试了代码,但问题是提交按钮和页脚之间应该有一些空间,但是在设备中它显示为按钮附加到页脚。我已经完成了一个解决方案是我给scrollview的硬编码值,但它不是正确的方法,有人可以给我适当的解决方案吗?
我的代码是
<?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"
android:layout_gravity="center_horizontal"
android:background="@drawable/bckcolor"
android:orientation="vertical" >
<RelativeLayout
android:id="@+id/upper"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/payment_03" >
</RelativeLayout>
<ScrollView
android:id="@+id/scroll"
android:layout_width="wrap_content"
android:layout_height="250dp"
android:layout_below="@+id/upper"
android:layout_marginLeft="20dip"
android:layout_marginRight="10dip"
android:layout_marginTop="15dip" >
<RelativeLayout
android:id="@+id/middle"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/my_border"
android:orientation="vertical" >
<EditText
android:id="@+id/actntlist"
android:layout_width="300dp"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:hint="Enter Phone number" />
<EditText
android:id="@+id/receivercode"
android:layout_width="300dp"
android:layout_height="wrap_content"
android:layout_below="@+id/actntlist"
android:layout_marginLeft="20dp"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:hint="Enter receiver code" />
<EditText
android:id="@+id/amount"
android:layout_width="300dp"
android:layout_height="wrap_content"
android:layout_below="@+id/receivercode"
android:layout_marginLeft="20dp"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:hint="Enter amount" />
<EditText
android:id="@+id/remarks"
android:layout_width="300dp"
android:layout_height="wrap_content"
android:layout_below="@+id/amount"
android:layout_marginLeft="20dp"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:hint="Enter remarks" />
<EditText
android:id="@+id/pin"
android:layout_width="300dp"
android:layout_height="wrap_content"
android:layout_below="@+id/remarks"
android:layout_marginLeft="20dp"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:hint="Enter Pin number" />
<Button
android:id="@+id/submit"
android:layout_width="250dp"
android:layout_height="wrap_content"
android:layout_below="@+id/pin"
android:layout_marginLeft="20dp"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:text="submit" >
</Button>
</RelativeLayout>
</ScrollView>
<RelativeLayout
android:id="@+id/bottom"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true" >
<TextView
android:id="@+id/foot"
android:layout_width="fill_parent"
android:layout_height="40dp"
android:layout_alignParentBottom="true"
android:background="@drawable/footer"
android:text="" >
</TextView>
</RelativeLayout>
</RelativeLayout>