有什么办法可以暂时禁用Seekbar?
我尝试了setEnabled(false)和setClickable(false)。它不起作用。帮我。
提前致谢。

XML代码:

<com.devadvance.circularseekbar.CircularSeekBar
        android:id="@+id/circularSeekBar1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        app:lock_enabled="true"
        app:pointer_halo_color_ontouch="#ffd180"
        app:start_angle="150"
        app:end_angle="30"
        app:circle_x_radius="150"
        app:circle_y_radius="140"
        app:use_custom_radii="true"
        app:max="10"
        app:pointer_alpha_ontouch="100"
        app:pointer_color="#ffd180"
        app:circle_stroke_width="3"
        app:pointer_halo_color="#ffd180"
        android:layout_marginLeft="18dp"
        android:layout_marginTop="12dp"
        android:layout_marginRight="18dp"
        android:layout_marginBottom="-25dp"
        android:layout_below="@+id/textView"
        android:layout_alignParentRight="true"
        android:layout_alignParentEnd="true" />


在JAVA CODE中:

CircularSeekBar seekbar = (CircularSeekBar) findViewById(R.id.circularSeekBar1);
    seekbar.setAlpha(0.45f);
    seekbar.setEnabled(false);

最佳答案

我找到了“暂时禁用搜寻栏”的答案。

在Xml中,只需创建可见性的布局即可:

<LinearLayout
                        android:id="@+id/Mainlayout"
                        android:layout_width="fill_parent"
                        android:layout_height="fill_parent">
     <LinearLayout
                        android:id="@+id/seekbarblocklayout"
                        android:layout_width="fill_parent"
                        android:layout_height="fill_parent"
                        android:orientation="vertical"
                        android:clickable="true"
                        android:visibility="gone"
                        />
    <com.devadvance.circularseekbar.CircularSeekBar
            android:id="@+id/circularSeekBar1"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
    ....
    ....
    />

</LinearLayout>


在Java中,

    public void disableSeekbar{

             seekbarblocklayout=(LinearLayout)findViewById(R.id.seekbarblocklayout);
            seekbarblocklayout.setVisibility(LinearLayout.VISIBLE);
            seekbarblocklayout.bringToFront();
    }

  public void enableSeekbar{
            seekbarblocklayout.setVisibility(LinearLayout.GONE);
    }

08-04 06:58