0

ビデオビューを子として持つレイアウトと、タッチすると表示される別のナビゲーションバーがあります。

<?xml version="1.0" encoding="UTF-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    style="@style/main_background"
    android:orientation="vertical">

    <RelativeLayout android:id="@+id/mediaplayer_navigation_bar_layout"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/main_header"
        android:orientation="horizontal">

        <Button
            android:id="@+id/mediaplayer_navigation_back"
            android:layout_width="80dp"
            android:layout_height="35dp"
            android:layout_centerVertical="true"
            android:layout_alignParentLeft="true"
            android:ellipsize="end"
            android:layout_marginLeft="5dp"
            android:singleLine="true"
            android:paddingLeft="5dp"
            style="@style/text_shadow"
            android:text="Back"
            android:textColor="@color/navigation_bar_text_color"
            android:textSize="15sp"
            android:textStyle="bold"
            android:background="@drawable/back_arrow_button_click"
            android:onClick="mediaplayerBackButtonClickHandler" />

        <TextView
            android:id="@+id/mediaplayer_navigation_title"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:layout_centerInParent="true"
            android:background="@color/tranceparent"
            android:paddingLeft="20dp"
            style="@style/text_shadow"
            android:textColor="@color/navigation_bar_text_color"
            android:textSize="20sp"
            android:textStyle="bold" />

    </RelativeLayout>

    <VideoView
            android:id="@+id/my_video"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_centerInParent="true" >
    </VideoView>
</RelativeLayout>

私が直面している問題は、デバイスが縦向きモードでナビゲーション バーが表示されているときに、ビデオを一時停止して横向きに切り替え、タップしてナビゲーション バーを非表示にすると、バーがあったビデオに黒いバーが表示されることです。 . 無効にしてレイアウトパラメータを設定しようとしましたが、何も変更されていないようです。これはデバイス固有の問題でしょうか? 現在、HTC Sensation でテストしています

アップデート

この問題は、Samsung S2 では再現できませんが、Asus タブの同様のシナリオで他のビューの問題が発生します :(

4

0 に答える 0