我有以下的android布局,显示在左侧和右侧的屏幕一个脚趾列表视图。在屏幕右边的按钮中添加一个按钮
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal">
<ListView
android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_weight="1" android:id="@+id/ListView01"/>
<ListView android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="3" android:id="@+id/ListView02"/>
现在我想添加一个按钮显示在屏幕的右下方。 任何人都可以帮我解释我该怎么做?
你是指在列表的右下方还是右边? – 2011-05-30 12:30:06
是的,这是错误的,我的意思是屏幕的右下方 – George32x 2011-05-30 12:34:18