调整大小以使进度条向右移动

问题描述 投票:0回答:1

我在RelativeLayout中有一个进度条。一切正常,直到我显示软键盘并且进度栏向右移动。

enter image description here

<RelativeLayout
        android:id="@+id/fragment_video_video_layout"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        app:layout_constraintHeight_percent=".33"
        app:layout_constraintWidth_default="percent"
        app:layout_constraintTop_toTopOf="parent"
        android:gravity="center">

        <VideoView
            android:id="@+id/fragment_video_video_view"
            android:layout_width="match_parent"
            android:layout_height="match_parent"/>

        <ProgressBar
            android:id="@+id/video_progress_bar"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"/>

    </RelativeLayout>

如何防止progressBar向右移动?

Edit1:_______________整个布局___________________________

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:background="@color/blackBackground">


    <RelativeLayout
        android:id="@+id/fragment_video_video_layout"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        app:layout_constraintHeight_percent=".33"
        app:layout_constraintWidth_default="percent"
        app:layout_constraintTop_toTopOf="parent"
        android:gravity="center">

        <VideoView
            android:id="@+id/fragment_video_video_view"
            android:layout_width="match_parent"
            android:layout_height="match_parent"/>

        <ProgressBar
            android:id="@+id/video_progress_bar"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"/>

    </RelativeLayout>




    <TextView
        android:id="@+id/fragment_video_textview_chat"
        android:layout_width="match_parent"
        android:layout_height="48dp"
        android:gravity="center_vertical"
        android:text="Chat"
        android:textColor="@color/colorBlack"
        app:layout_constraintTop_toBottomOf="@+id/fragment_video_video_layout"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        android:background="@color/whiteText"
        android:paddingLeft="12dp"/>


    <RelativeLayout
        android:id="@+id/fragment_video_sendmessage_layout"
        android:layout_width="match_parent"
        android:layout_height="49dp"
        android:layout_alignParentBottom="true"
        android:background="@color/whiteText"
        app:layout_constraintBottom_toBottomOf="parent">

        <View
            android:id="@+id/fragment_video_video_divider1"
            android:layout_width="match_parent"
            android:layout_height="0.5dp"
            android:background="@color/dividerColor"/>

        <EditText
            android:id="@+id/fragment_video_sendmessage_edittext"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:hint="Say something in chat"
            android:textSize="14sp"
            android:paddingLeft="12dp"
            android:background="@null"
            android:layout_toLeftOf="@+id/fragment_video_sendmessage_button"
            android:inputType="text"
            android:maxLines="1"
            android:layout_below="@+id/fragment_video_video_divider1"/>

        <Button
            android:id="@+id/fragment_video_sendmessage_button"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_alignParentEnd="true"
            android:text="Send"
            android:background="@null"
            android:textAllCaps="false"
            android:minHeight="0dp"
            android:minWidth="0dp"
            android:padding="10dp"
            android:layout_below="@+id/fragment_video_video_divider1"/>

    </RelativeLayout>

    <android.support.v7.widget.RecyclerView
        android:id="@+id/fragment_video_recycler"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        app:layout_constraintTop_toBottomOf="@+id/fragment_video_textview_chat"
        app:layout_constraintBottom_toTopOf="@id/fragment_video_sendmessage_layout"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        android:background="@color/whiteText">
    </android.support.v7.widget.RecyclerView>

</android.support.constraint.ConstraintLayout>

Edit2:____________________________________________

尝试将进度栏更改为

android:layout_width="match_parent"

此操作可修复进度条,但会导致视频视图发生移位

enter image description here

android android-progressbar android-relativelayout
1个回答
0
投票

当我在VideoView中添加android:layout_centerInParent="true"时有效。

<VideoView
            android:id="@+id/fragment_video_video_view"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_centerInParent="true" />
© www.soinside.com 2019 - 2024. All rights reserved.