Как убрать из Android SearchView оставленное место?
Я пытаюсь удалить левое пространство перед поиском в представлении Android, но безуспешно. Я пробовал каждый ответ, который нашел в Интернете, но не работал. Я использую темы AppCompat для этой деятельности. Я нацеливаюсь на KitKat api (19).
Может кто-то помочь мне, пожалуйста?
РЕДАКТИРОВАТЬ
План деятельности
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/MainLayout"
android:background="#6ED19E">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/BackgroundLayout"
android:background="#6ED19E">
<ImageView
android:src="@drawable/bgpattern"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/PatternImageView"
android:scaleType="centerCrop" />
<TextView
android:text="Já estamos em muitas cidades\nEstamos na sua?"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/ManyCityLabel"
android:textColor="#ffffff"
android:textSize="25dp"
android:width="20dp"
android:gravity="center"
android:textStyle="normal" />
</RelativeLayout>
<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/LocationsListView"
android:background="#ffffff"
android:visibility="invisible" />
Меню
<?xml version="1.0" encoding="utf-8" ?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<item android:id="@+id/LocationSearch"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:showAsAction="always"
tools:actionViewClass="android.support.v7.widget.SearchView"/>
</menu>
Иконы, которые я делал программно, потому что, когда я менял xml, не работал
РЕДАКТИРОВАТЬ Если я установить цвет фона SearchView
Поиск не подходит для всего пространства. Зачем?
4 ответа
Вы можете сделать следующее:
Скрыть панель приложения в onCreate()
вот так:
// Hide UI first
ActionBar actionBar = getSupportActionBar();
if (actionBar != null) {
actionBar.hide();
}
В файле макета установите зеленый фон (или свой цвет), добавьте SearchView
и установить фон для SearchView
к белому так:
<android.support.constraint.ConstraintLayout
...
android:background="#00FF00"
...>
<android.support.v7.widget.SearchView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#FFF" />
...
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
....
</android.support.constraint.ConstraintLayout>
Я вполне уверен, что ваш другой код интерфейса поиска будет работать. Вам нужно только перенаправить ваши события события.
Создайте пользовательскую панель поиска в макете активности и установите ее высоту и ширину в соответствии с вашими предпочтениями
- Получить ссылку / дескриптор для SearchView
- Затем ссылка на представление заголовка с getChildAt (нужно поэкспериментировать, начать с 0)
- Установите видимость TextView, чтобы уйти.
View sv = findViewById(R.Id.SearchView);
View tv = sv.getChildAt(n);
tv.setVisibility(GONE);
<?xml version="1.0" encoding="utf-8" ?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/FullWidthSearchBar"
android:background="#DD2277"
android:orientation="horizontal">
<item android:id="@+id/LocationSearch"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:showAsAction="always"
tools:actionViewClass="android.support.v7.widget.SearchView"/>
<view android:layout_width="100dp"
android:layout_height="wrap_content"/>
</LinearLayout>
</menu>