Я сталкиваюсь со следующей проблемой:
У меня есть действие, настроенное в 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
.)