У меня есть следующий макет 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"/>
Теперь я хочу добавить кнопку, отображаемую в нижней правой части экрана.
Кто-нибудь может мне помочь, как я мог это сделать?