Кнопка перекрывает завышенный вид - PullRequest
0 голосов
/ 18 февраля 2020

У меня есть активность, когда я использую всплывающий поиск, там мало элементов EditText и Button. Когда я раздуваю свой макет с помощью всплывающего поиска, кнопка перекрывает его. Я попытался принести ToToFront () на раздутый вид, и ничего не изменилось. В новой пустой кнопке активности также действуйте. Пример пустого действия Это не так уж сложно sh Я могу решить это с помощью .visibility GONE на кнопке, но я не могу понять, почему кнопка действует так.

MainActivity2.kt

import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import com.ilale.weyoulrs.R

class MainActivity2 : AppCompatActivity() {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main2)

        layoutInflater.inflate(R.layout.layout_popup_search, findViewById(R.id.AMtopLevelVG))
    }
}

Activity_main2. xml

<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/AMtopLevelVG"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".comm.MainActivity2">

    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>

layout_popup_search. xml

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/LPSgroupViewCRFL"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <com.google.android.material.card.MaterialCardView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_margin="16dp"
        android:elevation="24dp"
        app:cardElevation="60dp">

        <androidx.appcompat.widget.LinearLayoutCompat
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">

            <androidx.appcompat.widget.LinearLayoutCompat
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginHorizontal="8dp"
                android:orientation="horizontal">

                <com.google.android.material.textfield.TextInputEditText
                    android:id="@+id/LPSqueryIET"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginEnd="8dp"
                    android:layout_weight="1"
                    android:hint="@string/type_query" />

                <com.google.android.material.button.MaterialButton
                    android:id="@+id/LPSsearchBT"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_weight="0"
                    android:text="@android:string/search_go" />
            </androidx.appcompat.widget.LinearLayoutCompat>

            <androidx.recyclerview.widget.RecyclerView
                android:id="@+id/LPSxRV"
                android:layout_width="match_parent"
                android:layout_height="wrap_content" />
        </androidx.appcompat.widget.LinearLayoutCompat>
    </com.google.android.material.card.MaterialCardView>
</FrameLayout>
...