Android VideoView和ImageView旋转图片

时间:2014-04-05 22:23:18

标签: android xml

晚安,我正在制作Android应用,在某些视图中我有ImageViewsVideoViews,但问题是当我播放视频或显示图片时,它会出现在水平。有人知道是什么原因? 以下是其中一个视图的XML代码:

<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">

<FrameLayout
    android:id="@+id/content_frame"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ScrollView 
        android:id="@+id/scroll" 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="460dp" >

            <ImageView
            android:id="@+id/profileImage"
            android:layout_width="150dp"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
            android:layout_marginTop="10dp"
            android:layout_marginLeft="10dp"/>

            <TextView
                android:id="@+id/fullName"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignLeft="@+id/nickName"
                android:layout_alignTop="@+id/profileImage"
                android:layout_marginTop="10dp"
                android:textAppearance="?android:attr/textAppearanceMedium" />

            <TextView
                android:id="@+id/nickName"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignBottom="@+id/profileImage"
                android:layout_marginLeft="10dp"
                android:layout_toRightOf="@+id/profileImage"
                android:textAppearance="?android:attr/textAppearanceMedium" />

            <ImageButton
                android:id="@+id/saveImageNo"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignLeft="@+id/profileImage"
                android:layout_below="@+id/profileImage"
                android:layout_marginTop="38dp"
                android:src="@android:drawable/ic_delete"
                android:background="@null" 
                android:visibility="invisible"/>

            <ImageButton
                android:id="@+id/saveImageYes"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignTop="@+id/saveImageNo"
                android:layout_toLeftOf="@+id/fullName"
                android:background="@null"
                android:src="@android:drawable/ic_input_add" 
                android:visibility="invisible"/>

        </RelativeLayout>

    </ScrollView>

</FrameLayout> 

<ListView
    android:id="@+id/left_drawer"
    android:layout_width="240dp"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    android:choiceMode="singleChoice"
    android:divider="#DCDCDC"
    android:dividerHeight="1dp"
    android:background="#808080"/>

</android.support.v4.widget.DrawerLayout>

0 个答案:

没有答案