Android视频视图未在自定义对话框的顶部显示按钮

时间:2018-12-14 05:33:08

标签: android android-dialog android-videoview

朋友,我在Android中遇到问题,我想在Android中的自定义对话框中显示视频视图,还希望在视频视图顶部显示关闭按钮。问题是视频显示在对话框的后面,因此视频显示为较暗,当我将暗淡效果设置为零时,我失去了对话框的美感,因此尝试了另一种方法,将视频视图设置为对话框顶部,但是在这种情况下如果我不能将按钮放在视频视图的顶部。我的问题是我想要对话的暗淡效果,并将关闭按钮放在视频视图的顶部,任何人都可以帮助我。

这是我的xml代码,

@using System.Threading.Tasks;
public async Task<ActionResult> SomeMethodName(...) { //etc }

这是我的视频视图的代码

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="500dp"
android:layout_height="300dp"
android:background="@drawable/curve_shape">

<ImageView
    android:id="@+id/button_close"
    android:layout_width="@dimen/window_close_button_width"
    android:layout_height="@dimen/window_close_button_height"
    android:layout_marginEnd="2dp"
    android:layout_marginRight="2dp"
    android:layout_marginTop="2dp"
    android:src="@drawable/ic_btn_windowclose"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

<VideoView
    android:id="@+id/video_view"
    android:layout_width="0dp"
    android:layout_height="0dp"
    android:layout_marginBottom="2dp"
    android:layout_marginEnd="2dp"
    android:layout_marginStart="2dp"
    android:visibility="gone"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/button_close" />

<ProgressBar
    android:id="@+id/progress_bar"
    android:layout_width="@dimen/progress_bar_big"
    android:layout_height="@dimen/progress_bar_big"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="@+id/button_close" />

1 个答案:

答案 0 :(得分:1)

这是一个可能对您有用的小技巧,请尝试在视图中添加一些高程。

android:elevation="5dp" //or anything of your choice

这可能会使您的视线显示在视频上方。