$_SERVER["HTTP_REFERER"];
答案 0 :(得分:0)
为我工作
vkSwitch = (SwitchCompat) view.findViewById(R.id.vkSwitch);
vkSwitch.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if (!isChecked) {
//do something
}
if (isChecked) {
//do something
}
});
<android.support.v7.widget.SwitchCompat
android:id="@+id/fbSwitch"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:textOff="OFF"
android:textOn="ON"
android:thumb="@drawable/customswitchselector"
android:track="@drawable/custom_track" />