我对搜索栏有问题。我想让它禁用,但是当我使用.setEnabled(false)函数时,我的搜索栏就会消失。怎么避免这个?
我的布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorBackground">
<SeekBar
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/seekBar"
/>
</LinearLayout>
我的代码:
SeekBar seekBar=(SeekBar) findViewById(R.id.seekBar);
seekBar.setEnabled(false);