mirror of
https://github.com/Julow/Unexpected-Keyboard.git
synced 2024-12-14 01:51:09 +01:00
23 lines
559 B
Java
23 lines
559 B
Java
|
package juloo.keyboard2;
|
||
|
|
||
|
import android.content.Context;
|
||
|
import android.util.AttributeSet;
|
||
|
import android.widget.CheckBox;
|
||
|
import android.widget.CompoundButton;
|
||
|
|
||
|
final class ClipboardHistoryCheckBox extends CheckBox
|
||
|
implements CompoundButton.OnCheckedChangeListener
|
||
|
{
|
||
|
public ClipboardHistoryCheckBox(Context ctx, AttributeSet attrs)
|
||
|
{
|
||
|
super(ctx, attrs);
|
||
|
setOnCheckedChangeListener(this);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void onCheckedChanged(CompoundButton _v, boolean isChecked)
|
||
|
{
|
||
|
ClipboardHistoryService.set_history_enabled(isChecked);
|
||
|
}
|
||
|
}
|