1

みんな。ビデオをフルスクリーンで表示したいのですが、いくつかのコマンドを使用してみましたが、うまくいきませんでした。助けが必要です。私は自分のコードの下に置きます。

ビデオは画面の約 1/3 を表示し続けます! 私は初心者です!!!

はじめに.JAVA

         public class Intro extends Activity {  
     public void onCreate(Bundle b) {
    super.onCreate(b);
           getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);
         requestWindowFeature(Window.FEATURE_NO_TITLE);
         setContentView(R.layout.intro);

         VideoView vid = (VideoView) findViewById(R.id.videoView1);
         String uriPath = "android.resource://com.english/raw/videoenglish";
         Uri uri = Uri.parse(uriPath);
         vid.setVideoURI(uri);
         vid.start();
         vid.requestFocus();

         vid.setOnCompletionListener(new MediaPlayer.OnCompletionListener() {

         public void onCompletion(MediaPlayer mp) {
            // TODO Auto-generated method stub
                Intent main = new Intent(Intro.this, IntentsDemoActivity.class);
                    Intro.this.startActivity(main);
                    Intro.this.finish();
            }

          });
         }
        }

INTRO.XML

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <VideoView
    android:id="@+id/videoView1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:layout_gravity="center" />

 </LinearLayout>
4

1 に答える 1

0

通常、ビデオの縦横比が画面自体の縦横比と一致しないため、実際のビデオが画面いっぱいに表示されることはほとんどありません。

VideoView 自体が画面全体を埋め尽くしていると思われます。別のデバイスまたはエミュレーターで試してください。

どちらの方法でも参照できるその他の質問を次に示します。

于 2013-03-26T17:03:34.460 に答える