InputProfilThirdTwoActivity.kt 2.66 KB
package com.example.vip

import android.content.Context
import android.content.Intent
import android.content.SharedPreferences
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import android.view.View.GONE
import android.view.View.VISIBLE
import kotlinx.android.synthetic.main.activity_input_profil_third_two.*

class InputProfilThirdTwoActivity : AppCompatActivity() {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_input_profil_third_two)

        // 1. 툴바 사용 설정
        setSupportActionBar(toolbar)

        skipButton.setOnClickListener {
            var intent = Intent(this, InputProfilSecondOneActivity::class.java)
            startActivity(intent)
        }

        previousButton.setOnClickListener {
            var intent = Intent(this, InputProfilThirdOneActivity::class.java)
            startActivity(intent)
        }

        val prof: SharedPreferences =getSharedPreferences("profdata", Context.MODE_PRIVATE)
        val editor: SharedPreferences.Editor=prof.edit()

        nextButton.setOnClickListener {
            if(companyButton.isChecked){ editor.putInt("c5_6",1); editor.commit()}
            if(workerButton.isChecked){ editor.putInt("c5_7",1); editor.commit()}
            if(entireButton.isChecked){ editor.putInt("c5_9",1); editor.commit()}
            if(startupButton.isChecked){ editor.putInt("c5_5",1); editor.commit()}
            if(seekButton.isChecked){ editor.putInt("c5_5",1); editor.commit()}
            //창업예정자랑 취준생이랑 같은 카테고리 맞음????

            var intent = Intent(this, InputProfilThirdThreeActivity::class.java)
            startActivity(intent)
        }

        jobButton.setOnClickListener {
            nojobButton.isChecked=false
            sixoneLayout.visibility=VISIBLE
            sixtwoLayout.visibility= GONE
        }
        nojobButton.setOnClickListener {
            jobButton.isChecked=false
            sixoneLayout.visibility=GONE
            sixtwoLayout.visibility= VISIBLE
        }
        companyButton.setOnClickListener {
            workerButton.isChecked=false
        }
        workerButton.setOnClickListener {
            companyButton.isChecked=false
        }
        entireButton.setOnClickListener {
            startupButton.isChecked=false
            seekButton.isChecked=false
        }
        startupButton.setOnClickListener {
            entireButton.isChecked=false
            seekButton.isChecked=false
        }
        seekButton.setOnClickListener {
            entireButton.isChecked=false
            startupButton.isChecked=false
        }
    }
}