如何在Xamarin Android应用程序中的SearchView中删除下划线?

时间:2018-09-04 13:35:38

标签: android xamarin.android

在我的项目中,我需要显示一个搜索视图以搜索列表视图下显示的项目。因此,我遵循了https://abhiandroid.com/ui/searchview中的教程进行searchview的实现。并且根据我们的要求,我们需要为searchview设置一些橙色背景色。我已经做了类似的方法。但是问题出在搜索视图内部,有一些默认行作为下划线出现。谁能告诉我如何在xamarin android中删除该行。

代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/background">
    <SearchView
        android:id="@+id/simpleSearchView"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:iconifiedByDefault="false"
        android:queryHint="Search here"
        android:background="@color/calculate_grey"
        app:MvxBind="Query  SearchQuery;Visibility Visible(IsIncompleteSignupHasData)" />
    <TextView
        android:id="@+id/search_text_count"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/searchBar"
        android:layout_marginTop="@dimen/margin_normal"
        android:layout_marginLeft="@dimen/margin_large"
        android:layout_marginRight="@dimen/margin_large"
        android:textSize="@dimen/text_semimedium"
        android:textColor="@color/white"
        app:MvxBind="Text FarmerCountText;Typeface StringToFont('Montserrat-Medium')" />

非常感谢

0 个答案:

没有答案