Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/182.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android 如何使用ConstraintLayout以百分比为单位设置视图的高度_Android_Android Layout_Android Constraintlayout_Constraintlayout Guideline - Fatal编程技术网

Android 如何使用ConstraintLayout以百分比为单位设置视图的高度

Android 如何使用ConstraintLayout以百分比为单位设置视图的高度,android,android-layout,android-constraintlayout,constraintlayout-guideline,Android,Android Layout,Android Constraintlayout,Constraintlayout Guideline,目前我正在学习ConstraintLayout 下面是我迄今为止尝试过的代码 <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-aut

目前我正在学习
ConstraintLayout

下面是我迄今为止尝试过的代码

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#000000"
    android:fitsSystemWindows="true"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context=".activity.PhaseListActivity">

    <androidx.core.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fillViewport="true">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:weightSum="1">

            <FrameLayout
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_weight="0.8"
                android:background="@color/colorAccent">

                <VideoView
                    android:id="@+id/myVideoView"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:visibility="visible" />

                <TextSwitcher
                    android:id="@+id/tvAnimText"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_centerInParent="true"
                    android:layout_gravity="center"
                    android:fontFamily="@font/knowledge_bold"
                    android:textColor="@color/greenColor"
                    android:textSize="@dimen/_100ssp"
                    android:textStyle="bold"
                    tools:text="1" />

            </FrameLayout>

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_weight="0.2"
                android:orientation="vertical">

                <TextView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:gravity="center"
                    android:padding="10dp"
                    android:text="Scrollbale view below my videoView"
                    android:textColor="#ff00"
                    android:textStyle="bold" />

                <TextView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:gravity="center"
                    android:padding="10dp"
                    android:text="Scrollbale view below my videoView"
                    android:textColor="#ff00"
                    android:textStyle="bold" />
                <TextView
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:gravity="center"
                    android:padding="10dp"
                    android:text="Scrollbale view below my videoView"
                    android:textColor="#ff00"
                    android:textStyle="bold" />


            </LinearLayout>


        </LinearLayout>


    </androidx.core.widget.NestedScrollView>


    <LinearLayout
        android:id="@+id/bottomView"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout_gravity="bottom"
        android:background="@color/greenColor"
        android:orientation="vertical"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent">

        <TextView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="center"
            android:text="Fixed Bottombar"
            android:textColor="#ff00"
            android:textStyle="bold" />
    </LinearLayout>


</androidx.constraintlayout.widget.ConstraintLayout>

我曾尝试设置
指南
,但对我无效,因为我不知道如何在上面的布局中使用
指南

有人能帮我只用
ConstraintLayout


如果需要更多信息,请务必让我知道。提前谢谢。感谢您的努力。

您可以使用下面的代码作为底部视图,删除嵌套的线性布局:

  <TextView
            android:id="@+id/bottomView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:text="Fixed Bottombar"
            android:textColor="#ff00"
            android:background="#00ff00"
            android:padding="15dp"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            android:textStyle="bold" />

因此,在查看了您的xml文件后,我提出了一个解决方案,以摆脱以下解决方案中嵌套的
线性布局
层次结构:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#000000"
    android:fitsSystemWindows="true"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

<androidx.core.widget.NestedScrollView
    android:layout_width="0dp"
    android:layout_height="0dp"
    android:fillViewport="true"
    app:layout_constraintBottom_toTopOf="@id/tv_bottom_view"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent">

    <androidx.constraintlayout.widget.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <VideoView
            android:id="@+id/myVideoView"
            android:layout_width="0dp"
            android:layout_height="0dp"
            android:visibility="visible"
            app:layout_constrainedHeight="true"
            app:layout_constraintBottom_toTopOf="@id/tv1"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintHeight_default="percent"
            app:layout_constraintHeight_percent="0.85"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintVertical_chainStyle="packed" />

        <TextSwitcher
            android:id="@+id/tvAnimText"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:layout_gravity="center"
            android:fontFamily="@font/knowledge_bold"
            android:textColor="@color/greenColor"
            android:textSize="@dimen/_100ssp"
            android:textStyle="bold"
            app:layout_constraintBottom_toBottomOf="@id/myVideoView"
            app:layout_constraintEnd_toEndOf="@id/myVideoView"
            app:layout_constraintStart_toStartOf="@id/myVideoView"
            app:layout_constraintTop_toTopOf="@id/myVideoView"
            tools:text="1" />

        <TextView
            android:id="@+id/tv1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:padding="10dp"
            android:text="Scrollbale view below my videoView"
            android:textColor="#ff00"
            android:textStyle="bold"
            app:layout_constraintBottom_toTopOf="@id/tv2"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toBottomOf="@id/myVideoView" />

        <TextView
            android:id="@+id/tv2"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:padding="10dp"
            android:text="Scrollbale view below my videoView"
            android:textColor="#ff00"
            android:textStyle="bold"
            app:layout_constraintBottom_toTopOf="@id/tv3"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toBottomOf="@id/tv1" />

        <TextView
            android:id="@+id/tv3"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:padding="10dp"
            android:text="Scrollbale view below my videoView"
            android:textColor="#ff00"
            android:textStyle="bold"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toBottomOf="@id/tv2" />
    </androidx.constraintlayout.widget.ConstraintLayout>
</androidx.core.widget.NestedScrollView>

<TextView
    android:id="@+id/tv_bottom_view"
    android:layout_width="0dp"
    android:layout_height="0dp"
    android:gravity="center"
    android:text="Fixed Bottombar"
    android:textColor="#ff00"
    android:textStyle="bold"
    app:layout_constrainedHeight="true"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHeight_default="percent"
    app:layout_constraintHeight_percent="0.08"
    app:layout_constraintStart_toStartOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>


如果评论中有任何疑问,请告诉我。对于固定底部条形图
TextView
,现在您可以将高度百分比更改为您想要动态更改其高度的任何值。

不清楚您要归档的内容?您当前的设计与共享屏幕设计类似。@Amitrajapati是的,我希望在不使用嵌套
LinearLayout
的情况下创建该布局您的意思是希望仅使用constraintlayout来存档相同的结果,对吗?@Amitrajapati是的,请检查是否已更新question@Goku,我可以知道你为什么使用NestedScrollView吗?嘿,谢谢你的重播,因为某种原因,我的视频视图下的
Scrollbale视图不可见,而且
NestedScrollView
也不可见scrolling@Goku请签出更新的xml代码,我对
VideoView
做了一些更改(添加了高度百分比).很抱歉延迟重播,经过一些更改后工作正常