Закругленные зеленые линии на элементах CoordinatorLayout - Android - PullRequest
0 голосов
/ 30 апреля 2020

Почему мой CoordinatorLayout вокруг моих элементов в этом странном, зеленом цвете? Эти зеленые линии также появляются, когда приложение построено на устройстве, оно появляется только тогда, когда я использую CoordinatorLayout для построения кнопки с текстом выше.

См. Изображение 13

См. Мой. xml код:

   <androidx.coordinatorlayout.widget.CoordinatorLayout
        android:id="@+id/coordinator2"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        >
 <com.google.android.material.floatingactionbutton.FloatingActionButton
            android:id="@+id/buttonFloatingAdicionar"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            style="@style/Widget.MaterialComponents.FloatingActionButton"
            android:layout_gravity="bottom|right"
            android:layout_margin="16dp"
            android:backgroundTint="@android:color/white"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toBottomOf="@id/linearLayout2"
            app:maxImageSize="56dp"
            app:rippleColor="@android:color/white"
            app:srcCompat="@drawable/ic_add" />

        <TextView
            android:id="@+id/textview_addAnuncio"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom"
            android:layout_marginStart="330dp"
            android:layout_marginBottom="80dp"
            android:text="Anunciar!"
            android:background="@drawable/ronded_corners"
            android:padding="8dp"
            android:textColor="@android:color/black"
            android:textSize="13sp"
            android:textStyle="bold"
            android:visibility="visible" />
    </androidx.coordinatorlayout.widget.CoordinatorLayout>

1 Ответ

0 голосов
/ 30 апреля 2020

Было добавлено решение android: backgroundTint с цветом фона элементов на моем координатном макете, в моем примере я добавил сюда:

    <androidx.coordinatorlayout.widget.CoordinatorLayout
    android:id="@+id/coordinator2"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:backgroundTint="@android:color/white">
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...