gpt4 book ai didi

android - 视频在任何布局中都不居中 [Android]

转载 作者:行者123 更新时间:2023-12-05 00:17:41 27 4
gpt4 key购买 nike

我正在尝试将在全屏 Activity 中播放的视频居中,但我在任何布局中放置的任何参数似乎都不起作用

这是我的 list :

<activity
android:name=".VideoActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
</activity>

我的video_layout.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">

<VideoView
android:id="@+id/videoView"
android:gravity="center"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>

</LinearLayout>

以及您需要的 Activity

public class VideoActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.video_layout);

VideoView videoHolder = new VideoView(this);
setContentView(videoHolder);
Uri video = Uri.parse("android.resource://" + getPackageName() + "/"+ R.raw.video);
videoHolder.setVideoURI(video);
videoHolder.start();

videoHolder.setOnCompletionListener(new OnCompletionListener() {
public void onCompletion(MediaPlayer mp) {
jump();
}
});
}

private void jump() {
if(isFinishing())
return;
finish();
pd.dismiss();
}
}

我尝试过 FrameLayou、RelativeLayout、LinearLayout

重心居中,layout_gravity居中它一直在纵向显示在窗口顶部,横向显示在左下角

我会放一张照片,但我缺乏声誉提前致谢

最佳答案

这对我有用:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<VideoView
android:id="@+id/video_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center">
</VideoView>

</FrameLayout>

关于android - 视频在任何布局中都不居中 [Android],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18088857/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com