seekbar.setEnabled(false)使搜索栏不可见

时间:2016-10-03 16:55:36

标签: java android seekbar mobile-development

我对搜索栏有问题。我想让它禁用,但是当我使用.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);

1 个答案:

答案 0 :(得分:1)

我仍然不知道为什么我的搜索栏会消失,但我找到另一种方法来禁用搜索栏: https://stackoverflow.com/a/3278613/4313791