|
|
@@ -8,7 +8,6 @@ import android.view.LayoutInflater;
|
|
|
import android.view.View;
|
|
|
import android.view.ViewGroup;
|
|
|
import android.widget.EditText;
|
|
|
-import android.widget.RadioGroup;
|
|
|
import android.widget.TextView;
|
|
|
|
|
|
import kr.co.zumo.app.R;
|
|
|
@@ -35,7 +34,6 @@ public class FAQWriteFragment extends FragmentBase<FAQWritePresenter> implements
|
|
|
private View layoutNotice;
|
|
|
private SwitchCompat switchPushOnOff;
|
|
|
private View viewRegistration;
|
|
|
- private RadioGroup radioGroupCategory;
|
|
|
|
|
|
@Nullable
|
|
|
@Override
|
|
|
@@ -50,7 +48,6 @@ public class FAQWriteFragment extends FragmentBase<FAQWritePresenter> implements
|
|
|
textDeviceInfo = findViewById(R.id.text_device_info);
|
|
|
layoutNotice = findViewById(R.id.layout_notice);
|
|
|
viewRegistration = findViewById(R.id.button_registration);
|
|
|
- radioGroupCategory = findViewById(R.id.radio_group_category);
|
|
|
|
|
|
editContents.addTextChangedListener(new SimpleTextWatcher() {
|
|
|
@Override
|
|
|
@@ -76,15 +73,6 @@ public class FAQWriteFragment extends FragmentBase<FAQWritePresenter> implements
|
|
|
presenter.onEvent(new Event.Builder(Event.CANCEL).build());
|
|
|
});
|
|
|
|
|
|
- int len = radioGroupCategory.getChildCount();
|
|
|
- for (int i = 0; i < len; ++i) {
|
|
|
- (radioGroupCategory.getChildAt(i)).setOnClickListener(v -> {
|
|
|
- int selectIndex = radioGroupCategory.indexOfChild(v);
|
|
|
- presenter.onViewCategoryChecked(selectIndex);
|
|
|
- });
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
}
|
|
|
|
|
|
@Override
|