簡體   English   中英

Android/Java:如何在 ScrollView 中使用 ConstraintLayout,在導航欄中的 Fragment 中?

[英]Android/Java: How to use ConstraintLayout in a ScrollView, in a Fragment that is in a navigation bar?

我在將 ScrollView 包含在 ConstraintLayout 中時遇到問題。 我怎樣才能混合兩者? 我想很好地調整屏幕大小,但如果按鈕數量會增加,則可以通過滾動屏幕來實現。

我試過這個,但沒有成功。 我用了那張票

在此處輸入圖像描述
這是 xml 文件:

<ScrollView
    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:fillViewport="true">

<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:id="@+id/homeContainer"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/imagealliance"
    android:backgroundTint="#80FFFFFF"
    android:backgroundTintMode="src_over"
    android:gravity="center"
    android:theme="@style/AppTheme"
    tools:context=".LoginActivity">

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:adjustViewBounds="true"
        android:alpha="0.6"
        android:scaleType="fitXY"
        android:src="@drawable/logoalliance"
        app:layout_constraintBottom_toTopOf="@+id/txt_login"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
    
</androidx.constraintlayout.widget.ConstraintLayout>

</ScrollView>

這是按鈕的代碼:

public class HomeFragment extends Fragment {
...
                        layout.addView(eventBtn);

                        if (i == 0)
                        {
                            test1 = eventBtn.getId();
                            Log.d("test1", String.valueOf(eventBtn.getId()));
                        }
                        if (i == countUser.length() - 1)
                        {
                            test2 = eventBtn.getId();
                            Log.d("test2", String.valueOf(eventBtn.getId()));
                        }

這是布局的代碼:

 // Create ConstraintSet
                        ConstraintSet constraintSet = new ConstraintSet();
                        // Make sure all previous Constraints from ConstraintLayout are not lost
                        constraintSet.clone(layout2);

                        // Create Rule that states that the START of btn_contact_us1 will be positioned at the END of btn_contact_us2
                        constraintSet.connect(imageView1.getId(), ConstraintSet.START, test1, ConstraintSet.END);
                        constraintSet.applyTo(layout2);

提前致謝

嘗試通過以下代碼更新您的 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"
    tools:context=".MainActivityStack">

    <ScrollView
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:fillViewport="true"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">

        <ImageView
            android:id="@+id/imageView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:adjustViewBounds="true"
            android:alpha="0.6"
            android:scaleType="fitXY"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent" />

    </ScrollView>

</androidx.constraintlayout.widget.ConstraintLayout>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM