Android Studios - 在布局编辑器中调整 VideoView 大小
Android Studios - Adjusting VideoView Size in Layout Editor
我只见过询问如何全屏显示 VideoView 的问题,但我想做的是让视频仅作为 activity 的一部分播放,还有一些页面上的附加元素。我该怎么做呢? VideoView的大小我好像没法控制,只能在设计器里左右移动
编辑:附加信息
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context="com.MyActivity">
<Button
Default button Stuff
/>
<TextView
Default textview stuff
/>
<VideoView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/videoView"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="50dp"
android: />
</RelativeLayout>
就理想比例而言,也许是 500 x 400 dp?了解流程后就可以玩数字了
如果我没理解错的话,这就是你想要的东西:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context="com.MyActivity">
<LinearLayout
android:id="@+id/componentLayout"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:text="Button"
android:layout_height="wrap_content"
android:layout_width="wrap_content" />
<TextView
android:text="This is a placeholder text"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
<VideoView
android:layout_marginTop="20dp"
android:layout_below="@+id/componentLayout"
android:layout_width="300dp"
android:layout_height="400dp"
android:id="@+id/videoView"
android:layout_centerHorizontal="true" />
</RelativeLayout>
您可以根据需要定义 android:layout_width
和 android:layout_height
属性。但是,它们不能超过父布局的高度或宽度。
结果:
宽度:300dp,高度:400dp
我只见过询问如何全屏显示 VideoView 的问题,但我想做的是让视频仅作为 activity 的一部分播放,还有一些页面上的附加元素。我该怎么做呢? VideoView的大小我好像没法控制,只能在设计器里左右移动
编辑:附加信息
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context="com.MyActivity">
<Button
Default button Stuff
/>
<TextView
Default textview stuff
/>
<VideoView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/videoView"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="50dp"
android: />
</RelativeLayout>
就理想比例而言,也许是 500 x 400 dp?了解流程后就可以玩数字了
如果我没理解错的话,这就是你想要的东西:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context="com.MyActivity">
<LinearLayout
android:id="@+id/componentLayout"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:text="Button"
android:layout_height="wrap_content"
android:layout_width="wrap_content" />
<TextView
android:text="This is a placeholder text"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
<VideoView
android:layout_marginTop="20dp"
android:layout_below="@+id/componentLayout"
android:layout_width="300dp"
android:layout_height="400dp"
android:id="@+id/videoView"
android:layout_centerHorizontal="true" />
</RelativeLayout>
您可以根据需要定义 android:layout_width
和 android:layout_height
属性。但是,它们不能超过父布局的高度或宽度。
结果:
宽度:300dp,高度:400dp