#android #view
Вопрос:
В основном вопрос заключается в названии, всякий раз, когда я касаюсь и удерживаю почти любой элемент на экране, появляется серое поле с надписью » Вид » внутри него. Как я могу удалить это? Вот скриншот:
UPD:
activity_main.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"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@ id/nav_view"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="0dp"
android:layout_marginEnd="0dp"
android:background="?android:attr/windowBackground"
android:theme="@style/Widget.BottomNavigationView"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:itemIconTint="@color/bottom_nav_color_selector"
app:itemTextColor="@color/bottom_nav_color_selector"
app:menu="@menu/bottom_nav_menu"/>
</androidx.constraintlayout.widget.ConstraintLayout>
bottom_nav_menu.xml
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@ id/navigation_list"
android:icon="@drawable/ic_list_grey"
android:title="Список"/>
<item
android:id="@ id/navigation_notes"
android:icon="@drawable/ic_notes_grey"
android:title="Заметки"/>
<item
android:id="@ id/navigation_options"
android:icon="@drawable/ic_options_grey"
android:title="Настройки" />
</menu>
Комментарии:
1. Что вы хотите удалить? Button «Настройки» or bottom one?
2. @Specator это не кнопка, это серое поле, которое появляется всякий раз, когда я прикасаюсь к нижней панели и удерживаю ее, и я хочу удалить это поведение. Это происходит и с другими взглядами
3. @Зритель это как описание макета или что-то в этом роде
4. можете ли вы поделиться своим xml-файлом?
5. @Зритель Извиняюсь за поздний ответ. Конечно, upd в моем вопросе.