我的相对布局中有一个列表视图和一个按钮。
它在Eclipse图形视图中显示。但在模拟器列表视图中只显示。 按钮未在模拟器中显示。
我的XML代码
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:id="@+id/listView1"
android:layout_width="match_parent"
android:layout_height="415dp" >
</ListView>
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/listView1"
android:layout_centerHorizontal="true"
android:onClick="submit"
android:text="SUBMIT" />
</RelativeLayout>
我的清单代码
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="19" />
<activity android:name="com.androidexample.tabbar.Tab1"
android:theme="@android:style/Theme.DeviceDefault.NoActionBar">
</activity>
感谢您的帮助..
答案 0 :(得分:1)
使用以下内容:
<ListView
android:id="@+id/listView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above=@"+id/button1" >
</ListView>
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
android:onClick="submit"
android:text="SUBMIT" />
答案 1 :(得分:1)
我删除旧代码并创建一个新的相对布局,然后现在可以正常工作。
错误原因是我将线性布局手动转换为相对布局。
修改后的代码是:<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ListView
android:id="@+id/listView1"
android:layout_width="match_parent"
android:layout_height="420dp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true" >
</ListView>
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="14dp"
android:text="Button"
android:onClick="submit"/>
</RelativeLayout>