摆脱SearchView上的箭头按钮?

时间:2014-06-22 21:04:01

标签: java android android-studio

我在Android应用中使用搜索视图,我正试图摆脱蓝色下划线。我设法摆脱了文本下面出现的蓝色下划线:

int searchPlateId = searchView.getContext().getResources().getIdentifier("android:id/search_plate", null, null);
View searchPlateView = searchView.findViewById(searchPlateId);
if (searchPlateView != null) {
    searchPlateView.setBackgroundColor(Color.TRANSPARENT);
}

但是,搜索视图中文本右侧仍有一个箭头按钮,但仍有蓝色下划线。我想要摆脱这个箭头或摆脱下划线。

以下是searchview的截图:http://tinypic.com/r/fvzl74/8

1 个答案:

答案 0 :(得分:0)

我使用.setSubmitButtonEnabled(false)

摆脱了它