VideoView 未显示在 xml 布局中
VideoView not shown in xml layout
您好,我的 XML 布局中没有显示 videoview 问题,而我 运行 我的设备中的应用程序。我只是粘贴 xml 因为我确定 java class 是正确的,我就是想不通,所以如果有人有空请帮助我
xml
<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:background="@drawable/ballbackground"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.buttondemo.FootballBalls" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="22dp"
android:layout_marginTop="18dp"
android:text="@string/btnRules" />
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/textView1"
android:layout_below="@+id/textView1"
android:layout_marginTop="10dp" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<Gallery
android:id="@+id/worldcupball"
android:layout_width="227dp"
android:layout_height="143dp"
android:background="@drawable/worldcupball"
android:textAlignment="center" />
<TextView
android:id="@+id/mainActivityHeader"
android:layout_width="228dp"
android:layout_height="131dp"
android:text="@string/ball_explanation" />
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/ball_construction"
android:layout_marginTop="20dp"/>
<Gallery
android:id="@+id/gallery1"
android:layout_width="wrap_content"
android:layout_height="138dp"
android:background="@drawable/roteirotechdrawing"
android:layout_marginLeft="20dp" />
<VideoView
android:id="@+id/OutfitView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:visibility="visible"/>
</LinearLayout>
</ScrollView>
权限
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
硬定义布局并不好。如果您希望它们占据屏幕上 space 的特定区域,那么您应该查看布局权重。或者使用 wrap_content 作为 TextView 的高度。但在某些情况下,在 ScrollView 中您可以摆脱它。
它不滚动吗?
您的 VideoView 也有可能在您将内容放入其中之前不会加载或显示。这是因为你有一个 wrap_content 作为它的高度。在那之前它不会有高度。这可能就是您现在正在经历的。
您好,我的 XML 布局中没有显示 videoview 问题,而我 运行 我的设备中的应用程序。我只是粘贴 xml 因为我确定 java class 是正确的,我就是想不通,所以如果有人有空请帮助我
xml
<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:background="@drawable/ballbackground"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.buttondemo.FootballBalls" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="22dp"
android:layout_marginTop="18dp"
android:text="@string/btnRules" />
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/textView1"
android:layout_below="@+id/textView1"
android:layout_marginTop="10dp" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<Gallery
android:id="@+id/worldcupball"
android:layout_width="227dp"
android:layout_height="143dp"
android:background="@drawable/worldcupball"
android:textAlignment="center" />
<TextView
android:id="@+id/mainActivityHeader"
android:layout_width="228dp"
android:layout_height="131dp"
android:text="@string/ball_explanation" />
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/ball_construction"
android:layout_marginTop="20dp"/>
<Gallery
android:id="@+id/gallery1"
android:layout_width="wrap_content"
android:layout_height="138dp"
android:background="@drawable/roteirotechdrawing"
android:layout_marginLeft="20dp" />
<VideoView
android:id="@+id/OutfitView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:visibility="visible"/>
</LinearLayout>
</ScrollView>
权限
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
硬定义布局并不好。如果您希望它们占据屏幕上 space 的特定区域,那么您应该查看布局权重。或者使用 wrap_content 作为 TextView 的高度。但在某些情况下,在 ScrollView 中您可以摆脱它。
它不滚动吗?
您的 VideoView 也有可能在您将内容放入其中之前不会加载或显示。这是因为你有一个 wrap_content 作为它的高度。在那之前它不会有高度。这可能就是您现在正在经历的。