searchView のヒント フィールドにある検索アイコンを削除したい (添付の画像を参照)。
私は複数の解決策を試しましたが、特にこれは次のとおりです。
int magId = getResources().getIdentifier("android:id/search_mag_icon", null, null);
ImageView magImage = (ImageView) searchView.findViewById(magId);
magImage.setLayoutParams(new LinearLayout.LayoutParams(0, 0));
これから取得:searchViewのヒントとしてSearchIconを削除しますが、成功しません。アイデア?:)