Настройка кнопки в относительной компоновке - PullRequest
0 голосов
/ 22 августа 2011

Я сталкиваюсь со следующей проблемой:

У меня есть действие, настроенное в landscape mode таким образом:

this.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);

А вот мой файл xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:layout_width="fill_parent"
android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal">
    <RelativeLayout android:layout_width="wrap_content"
    android:layout_height="fill_parent" 
    android:id="@+id/first"
    android:orientation="vertical"
    android:layout_weight="1.0">

    <SurfaceView android:layout_width="fill_parent"
android:layout_height="fill_parent" android:id="@+id/surface_camera" />
    </RelativeLayout>

 <RelativeLayout android:layout_width="180dp"
    android:layout_height="fill_parent"
     >
    <Button android:layout_width="fill_parent"
android:layout_height="320dip" 
android:id="@+id/btnPhoto"
android:text="Take Photo" 
android:layout_gravity="bottom|left" />

    </RelativeLayout>

</RelativeLayout>

И вот как выглядит результат:

http://i56.tinypic.com/21103ld.png

Я хочу, чтобы эта кнопка была настроена внизу экрана(!from my point of view.)

Ответы [ 2 ]

1 голос
/ 22 августа 2011

РЕДАКТИРОВАТЬ Попробуйте это

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:layout_width="fill_parent"
android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res    /android">
<RelativeLayout android:layout_width="fill_parent"
    android:layout_height="200dip" android:id="@+id/first"
    android:orientation="vertical" android:layout_weight="1.0">

    <SurfaceView android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:id="@+id/surface_camera" />
</RelativeLayout>

<RelativeLayout android:layout_width="wrap_content"
    android:layout_height="wrap_content" android:layout_below="@+id/first">
    <Button android:layout_width="fill_parent"
        android:layout_height="wrap_content" android:id="@+id/btnPhoto"
        android:text="Take Photo" android:layout_alignParentBottom="true" />

</RelativeLayout>

Попробуйте изменить свой макет следующим образом,

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:layout_width="fill_parent"
android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android"
>
<RelativeLayout android:layout_width="wrap_content"
android:layout_height="fill_parent" 
android:id="@+id/first"
android:orientation="vertical"
android:layout_weight="1.0">

<SurfaceView android:layout_width="fill_parent"
android:layout_height="fill_parent" android:id="@+id/surface_camera" />
</RelativeLayout>
 <RelativeLayout android:layout_width="180dp"
android:layout_height="fill_parent"
android:layout_below="@+id/first"
 >
<Button android:layout_width="fill_parent"
android:layout_height="320dip" 
android:id="@+id/btnPhoto"

android:text="Take Photo" 
android:layout_gravity="bottom|left" />

</RelativeLayout>

1 голос
/ 22 августа 2011

Попробуйте использовать: андроид: layout_alignParentButtom = "истинный"

...