Showing
51 changed files
with
7185 additions
and
61 deletions
| ... | @@ -9,7 +9,26 @@ | ... | @@ -9,7 +9,26 @@ |
| 9 | android:roundIcon="@mipmap/ic_launcher_round" | 9 | android:roundIcon="@mipmap/ic_launcher_round" |
| 10 | android:supportsRtl="true" | 10 | android:supportsRtl="true" |
| 11 | android:theme="@style/NoActionBar"> | 11 | android:theme="@style/NoActionBar"> |
| 12 | - <activity android:name=".InputProfilFirstThreeActivity"></activity> | 12 | + <activity android:name=".InputProfilFifthFourActivity"></activity> |
| 13 | + <activity android:name=".InputProfilFifthThreeActivity" /> | ||
| 14 | + <activity android:name=".InputProfilFifthTwoActivity" /> | ||
| 15 | + <activity android:name=".InputProfilFifthOneActivity" /> | ||
| 16 | + <activity android:name=".InputProfilFourthFiveActivity" /> | ||
| 17 | + <activity android:name=".InputProfilFourthFourActivity" /> | ||
| 18 | + <activity android:name=".InputProfilFourthThreeActivity" /> | ||
| 19 | + <activity android:name=".InputProfilFourthTwoActivity" /> | ||
| 20 | + <activity android:name=".InputProfilFourthOneActivity" /> | ||
| 21 | + <activity android:name=".InputProfilThirdFourActivity" /> | ||
| 22 | + <activity android:name=".InputProfilThirdThreeActivity" /> | ||
| 23 | + <activity android:name=".InputProfilThirdTwoActivity" /> | ||
| 24 | + <activity android:name=".InputProfilThirdOneActivity" /> | ||
| 25 | + <activity android:name=".InputProfilSecondThreeActivity" /> | ||
| 26 | + <activity android:name=".InputProfilSecondTwoActivity" /> | ||
| 27 | + <activity android:name=".InputProfilSecondOneActivity" /> | ||
| 28 | + <activity android:name=".InputProfilFirstSixActivity" /> | ||
| 29 | + <activity android:name=".InputProfilFirstFiveActivity" /> | ||
| 30 | + <activity android:name=".InputProfilFirstFourActivity" /> | ||
| 31 | + <activity android:name=".InputProfilFirstThreeActivity" /> | ||
| 13 | <activity android:name=".InputProfilFirstTwoActivity" /> | 32 | <activity android:name=".InputProfilFirstTwoActivity" /> |
| 14 | <activity android:name=".FragmentActivity" /> | 33 | <activity android:name=".FragmentActivity" /> |
| 15 | <activity android:name=".FragmentLayout" /> | 34 | <activity android:name=".FragmentLayout" /> | ... | ... |
| 1 | package com.example.vip | 1 | package com.example.vip |
| 2 | 2 | ||
| 3 | +import android.content.Context | ||
| 3 | import android.content.Intent | 4 | import android.content.Intent |
| 5 | +import android.content.SharedPreferences | ||
| 4 | import androidx.appcompat.app.AppCompatActivity | 6 | import androidx.appcompat.app.AppCompatActivity |
| 5 | import android.os.Bundle | 7 | import android.os.Bundle |
| 6 | import android.view.Menu | 8 | import android.view.Menu |
| ... | @@ -8,6 +10,7 @@ import android.view.MenuItem | ... | @@ -8,6 +10,7 @@ import android.view.MenuItem |
| 8 | import android.widget.Toast | 10 | import android.widget.Toast |
| 9 | import androidx.appcompat.app.ActionBar | 11 | import androidx.appcompat.app.ActionBar |
| 10 | import androidx.core.content.ContextCompat | 12 | import androidx.core.content.ContextCompat |
| 13 | +import androidx.core.content.ContextCompat.startActivity | ||
| 11 | import com.google.android.material.bottomnavigation.BottomNavigationView | 14 | import com.google.android.material.bottomnavigation.BottomNavigationView |
| 12 | import com.google.android.material.snackbar.Snackbar | 15 | import com.google.android.material.snackbar.Snackbar |
| 13 | import com.google.firebase.database.DataSnapshot | 16 | import com.google.firebase.database.DataSnapshot |
| ... | @@ -37,43 +40,17 @@ class FavoritesActivity : AppCompatActivity() { | ... | @@ -37,43 +40,17 @@ class FavoritesActivity : AppCompatActivity() { |
| 37 | val policyList = ArrayList<PolicyItem>() | 40 | val policyList = ArrayList<PolicyItem>() |
| 38 | var favordatabase = FirebaseDatabase.getInstance().reference | 41 | var favordatabase = FirebaseDatabase.getInstance().reference |
| 39 | 42 | ||
| 40 | - if (intent.hasExtra("key")) { | ||
| 41 | - //textView.text = intent.getStringExtra("key") 텍뷰추가하면 인텐트로 값넘기는거 보임 | ||
| 42 | - | ||
| 43 | - favordatabase.orderByChild("Policy").startAt(intent.getStringExtra("key")).endAt(intent.getStringExtra("key")+"\uf8ff").addListenerForSingleValueEvent(object : | ||
| 44 | - ValueEventListener { | ||
| 45 | - override fun onCancelled(p0: DatabaseError) { | ||
| 46 | - Toast.makeText(this@FavoritesActivity, "실패부분", Toast.LENGTH_SHORT).show() | ||
| 47 | - } | ||
| 48 | - override fun onDataChange(dataSnapshot: DataSnapshot) { | ||
| 49 | - for (memoSnapshot in dataSnapshot.children){ | ||
| 50 | - val memo = memoSnapshot.getValue(MemoItemFavor::class.java) | ||
| 51 | - | ||
| 52 | - policyList.add( | ||
| 53 | - PolicyItem( | ||
| 54 | - ContextCompat.getDrawable(this@FavoritesActivity, R.drawable.image01)!!, | ||
| 55 | - memo!!.Policy, | ||
| 56 | - memo!!.Policy, | ||
| 57 | - memo!!.Policy, | ||
| 58 | - 4.toFloat(), | ||
| 59 | - "" | ||
| 60 | - | ||
| 61 | - ) | ||
| 62 | - ) | ||
| 63 | - } | ||
| 64 | - | ||
| 65 | - val adapter = PolicyAdapter(policyList) | ||
| 66 | - policyRecyclerView.adapter = adapter | ||
| 67 | 43 | ||
| 68 | - } | 44 | + val prof: SharedPreferences = getSharedPreferences("profdata", Context.MODE_PRIVATE) |
| 45 | + val editor: SharedPreferences.Editor=prof.edit() | ||
| 69 | 46 | ||
| 70 | - }) | 47 | + var tempstring=prof.getString("favorstringlist","") |
| 48 | + var sepstr=tempstring!!.split("@") | ||
| 49 | + var sepstrset=sepstr.toMutableSet() | ||
| 71 | 50 | ||
| 51 | + for (favor in sepstrset){ | ||
| 72 | 52 | ||
| 73 | - } else { | 53 | + favordatabase.orderByChild("Policy").startAt(favor).endAt(favor).addListenerForSingleValueEvent(object : |
| 74 | - Toast.makeText(this, "putExtra value not found", Toast.LENGTH_SHORT).show() | ||
| 75 | - | ||
| 76 | - favordatabase.orderByChild("Policy").startAt(intent.getStringExtra("\uf8ff")).addListenerForSingleValueEvent(object : | ||
| 77 | ValueEventListener { | 54 | ValueEventListener { |
| 78 | override fun onCancelled(p0: DatabaseError) { | 55 | override fun onCancelled(p0: DatabaseError) { |
| 79 | Toast.makeText(this@FavoritesActivity, "실패부분", Toast.LENGTH_SHORT).show() | 56 | Toast.makeText(this@FavoritesActivity, "실패부분", Toast.LENGTH_SHORT).show() |
| ... | @@ -89,7 +66,7 @@ class FavoritesActivity : AppCompatActivity() { | ... | @@ -89,7 +66,7 @@ class FavoritesActivity : AppCompatActivity() { |
| 89 | memo!!.Policy, | 66 | memo!!.Policy, |
| 90 | memo!!.Policy, | 67 | memo!!.Policy, |
| 91 | 4.toFloat(), | 68 | 4.toFloat(), |
| 92 | - "" | 69 | + " " |
| 93 | 70 | ||
| 94 | ) | 71 | ) |
| 95 | ) | 72 | ) |
| ... | @@ -102,9 +79,15 @@ class FavoritesActivity : AppCompatActivity() { | ... | @@ -102,9 +79,15 @@ class FavoritesActivity : AppCompatActivity() { |
| 102 | 79 | ||
| 103 | }) | 80 | }) |
| 104 | 81 | ||
| 105 | - | ||
| 106 | } | 82 | } |
| 107 | 83 | ||
| 84 | + if (intent.hasExtra("key")) { | ||
| 85 | + //textView.text = intent.getStringExtra("key") 텍뷰추가하면 인텐트로 값넘기는거 보임 | ||
| 86 | + | ||
| 87 | + } else { | ||
| 88 | + Toast.makeText(this, "putExtra value not found", Toast.LENGTH_SHORT).show() | ||
| 89 | + } | ||
| 90 | + | ||
| 108 | 91 | ||
| 109 | 92 | ||
| 110 | // 1. 툴바 사용 설정 | 93 | // 1. 툴바 사용 설정 | ... | ... |
| 1 | +package com.example.vip | ||
| 2 | + | ||
| 3 | +import androidx.appcompat.app.AppCompatActivity | ||
| 4 | +import android.os.Bundle | ||
| 5 | + | ||
| 6 | +class InputProfilFifthFourActivity : AppCompatActivity() { | ||
| 7 | + | ||
| 8 | + override fun onCreate(savedInstanceState: Bundle?) { | ||
| 9 | + super.onCreate(savedInstanceState) | ||
| 10 | + setContentView(R.layout.activity_input_profil_fifth_four) | ||
| 11 | + } | ||
| 12 | +} |
| 1 | +package com.example.vip | ||
| 2 | + | ||
| 3 | +import androidx.appcompat.app.AppCompatActivity | ||
| 4 | +import android.os.Bundle | ||
| 5 | + | ||
| 6 | +class InputProfilFifthOneActivity : AppCompatActivity() { | ||
| 7 | + | ||
| 8 | + override fun onCreate(savedInstanceState: Bundle?) { | ||
| 9 | + super.onCreate(savedInstanceState) | ||
| 10 | + setContentView(R.layout.activity_input_profil_fifth_one) | ||
| 11 | + } | ||
| 12 | +} |
| 1 | +package com.example.vip | ||
| 2 | + | ||
| 3 | +import androidx.appcompat.app.AppCompatActivity | ||
| 4 | +import android.os.Bundle | ||
| 5 | + | ||
| 6 | +class InputProfilFifthThreeActivity : AppCompatActivity() { | ||
| 7 | + | ||
| 8 | + override fun onCreate(savedInstanceState: Bundle?) { | ||
| 9 | + super.onCreate(savedInstanceState) | ||
| 10 | + setContentView(R.layout.activity_input_profil_fifth_three) | ||
| 11 | + } | ||
| 12 | +} |
| 1 | +package com.example.vip | ||
| 2 | + | ||
| 3 | +import androidx.appcompat.app.AppCompatActivity | ||
| 4 | +import android.os.Bundle | ||
| 5 | + | ||
| 6 | +class InputProfilFifthTwoActivity : AppCompatActivity() { | ||
| 7 | + | ||
| 8 | + override fun onCreate(savedInstanceState: Bundle?) { | ||
| 9 | + super.onCreate(savedInstanceState) | ||
| 10 | + setContentView(R.layout.activity_input_profil_fifth_two) | ||
| 11 | + } | ||
| 12 | +} |
| 1 | +package com.example.vip | ||
| 2 | + | ||
| 3 | +import android.content.Intent | ||
| 4 | +import android.graphics.Color | ||
| 5 | +import androidx.appcompat.app.AppCompatActivity | ||
| 6 | +import android.os.Bundle | ||
| 7 | +import kotlinx.android.synthetic.main.activity_input_profil_first_five.* | ||
| 8 | + | ||
| 9 | +class InputProfilFirstFiveActivity : AppCompatActivity() { | ||
| 10 | + | ||
| 11 | + override fun onCreate(savedInstanceState: Bundle?) { | ||
| 12 | + super.onCreate(savedInstanceState) | ||
| 13 | + setContentView(R.layout.activity_input_profil_first_five) | ||
| 14 | + | ||
| 15 | + inmanButton.setOnClickListener { | ||
| 16 | + if(outmanButton.isChecked){ | ||
| 17 | + outmanButton.isChecked=false | ||
| 18 | + } | ||
| 19 | + } | ||
| 20 | + outmanButton.setOnClickListener { | ||
| 21 | + if(inmanButton.isChecked){ | ||
| 22 | + inmanButton.isChecked=false | ||
| 23 | + } | ||
| 24 | + } | ||
| 25 | + | ||
| 26 | + previousButton.setOnClickListener { | ||
| 27 | + var intent = Intent(this, InputProfilFirstFourActivity::class.java) | ||
| 28 | + startActivity(intent) | ||
| 29 | + } | ||
| 30 | + | ||
| 31 | + nextButton.setOnClickListener { | ||
| 32 | + var intent = Intent(this, InputProfilFirstSixActivity::class.java) | ||
| 33 | + startActivity(intent) | ||
| 34 | + } | ||
| 35 | + | ||
| 36 | + } | ||
| 37 | +} |
| 1 | +package com.example.vip | ||
| 2 | + | ||
| 3 | +import android.content.Intent | ||
| 4 | +import androidx.appcompat.app.AppCompatActivity | ||
| 5 | +import android.os.Bundle | ||
| 6 | +import kotlinx.android.synthetic.main.activity_input_profil_first_four.* | ||
| 7 | + | ||
| 8 | +class InputProfilFirstFourActivity : AppCompatActivity() { | ||
| 9 | + | ||
| 10 | + override fun onCreate(savedInstanceState: Bundle?) { | ||
| 11 | + super.onCreate(savedInstanceState) | ||
| 12 | + setContentView(R.layout.activity_input_profil_first_four) | ||
| 13 | + | ||
| 14 | + previousButton.setOnClickListener { | ||
| 15 | + var intent = Intent(this, InputProfilFirstThreeActivity::class.java) | ||
| 16 | + startActivity(intent) | ||
| 17 | + } | ||
| 18 | + | ||
| 19 | + nextButton.setOnClickListener { | ||
| 20 | + var intent = Intent(this, InputProfilFirstFiveActivity::class.java) | ||
| 21 | + startActivity(intent) | ||
| 22 | + } | ||
| 23 | + } | ||
| 24 | +} |
| 1 | +package com.example.vip | ||
| 2 | + | ||
| 3 | +import android.content.Intent | ||
| 4 | +import androidx.appcompat.app.AppCompatActivity | ||
| 5 | +import android.os.Bundle | ||
| 6 | +import kotlinx.android.synthetic.main.activity_input_profil_first_six.* | ||
| 7 | + | ||
| 8 | +class InputProfilFirstSixActivity : AppCompatActivity() { | ||
| 9 | + | ||
| 10 | + override fun onCreate(savedInstanceState: Bundle?) { | ||
| 11 | + super.onCreate(savedInstanceState) | ||
| 12 | + setContentView(R.layout.activity_input_profil_first_six) | ||
| 13 | + | ||
| 14 | + previousButton.setOnClickListener { | ||
| 15 | + var intent = Intent(this, InputProfilFirstFiveActivity::class.java) | ||
| 16 | + startActivity(intent) | ||
| 17 | + } | ||
| 18 | + | ||
| 19 | + nextButton.setOnClickListener { | ||
| 20 | + var intent = Intent(this, InputProfilSecondOneActivity::class.java) | ||
| 21 | + startActivity(intent) | ||
| 22 | + } | ||
| 23 | + | ||
| 24 | + } | ||
| 25 | +} |
| ... | @@ -16,8 +16,6 @@ import kotlinx.android.synthetic.main.activity_input_profil_first_three.* | ... | @@ -16,8 +16,6 @@ import kotlinx.android.synthetic.main.activity_input_profil_first_three.* |
| 16 | 16 | ||
| 17 | class InputProfilFirstThreeActivity : AppCompatActivity() { | 17 | class InputProfilFirstThreeActivity : AppCompatActivity() { |
| 18 | 18 | ||
| 19 | - | ||
| 20 | - | ||
| 21 | override fun onCreate(savedInstanceState: Bundle?) { | 19 | override fun onCreate(savedInstanceState: Bundle?) { |
| 22 | super.onCreate(savedInstanceState) | 20 | super.onCreate(savedInstanceState) |
| 23 | setContentView(R.layout.activity_input_profil_first_three) | 21 | setContentView(R.layout.activity_input_profil_first_three) |
| ... | @@ -63,10 +61,14 @@ class InputProfilFirstThreeActivity : AppCompatActivity() { | ... | @@ -63,10 +61,14 @@ class InputProfilFirstThreeActivity : AppCompatActivity() { |
| 63 | } | 61 | } |
| 64 | 62 | ||
| 65 | previousButton.setOnClickListener { | 63 | previousButton.setOnClickListener { |
| 66 | - var intent = Intent(this, SignInActivity::class.java) | 64 | + var intent = Intent(this, InputProfilFirstTwoActivity::class.java) |
| 67 | startActivity(intent) | 65 | startActivity(intent) |
| 68 | } | 66 | } |
| 69 | 67 | ||
| 68 | + nextButton.setOnClickListener { | ||
| 69 | + var intent = Intent(this, InputProfilFirstFourActivity::class.java) | ||
| 70 | + startActivity(intent) | ||
| 71 | + } | ||
| 70 | } | 72 | } |
| 71 | 73 | ||
| 72 | /* i will not use this code start | 74 | /* i will not use this code start | ... | ... |
| ... | @@ -5,7 +5,10 @@ import android.content.Intent | ... | @@ -5,7 +5,10 @@ import android.content.Intent |
| 5 | import android.content.SharedPreferences | 5 | import android.content.SharedPreferences |
| 6 | import androidx.appcompat.app.AppCompatActivity | 6 | import androidx.appcompat.app.AppCompatActivity |
| 7 | import android.os.Bundle | 7 | import android.os.Bundle |
| 8 | +import android.widget.EditText | ||
| 8 | import kotlinx.android.synthetic.main.activity_input_profil_first_two.* | 9 | import kotlinx.android.synthetic.main.activity_input_profil_first_two.* |
| 10 | +import kotlinx.android.synthetic.main.activity_input_profil_first_two.nextButton | ||
| 11 | +import kotlinx.android.synthetic.main.activity_input_profil_second_two.* | ||
| 9 | 12 | ||
| 10 | class InputProfilFirstTwoActivity : AppCompatActivity() { | 13 | class InputProfilFirstTwoActivity : AppCompatActivity() { |
| 11 | 14 | ||
| ... | @@ -18,10 +21,26 @@ class InputProfilFirstTwoActivity : AppCompatActivity() { | ... | @@ -18,10 +21,26 @@ class InputProfilFirstTwoActivity : AppCompatActivity() { |
| 18 | 21 | ||
| 19 | editor.putString("birthdate","none") | 22 | editor.putString("birthdate","none") |
| 20 | editor.commit() | 23 | editor.commit() |
| 24 | +/* | ||
| 25 | +childNumberInputButton.setOnClickListener { | ||
| 26 | + | ||
| 27 | + var childNum=findViewById<EditText>(R.id.childNumberEditText).text.toString() | ||
| 28 | + if(childNum=="3"){ | ||
| 29 | + child1LinearLayout.visibility=VISIBLE | ||
| 30 | + child2LinearLayout.visibility=VISIBLE | ||
| 31 | + child3LinearLayout.visibility=VISIBLE | ||
| 32 | + } | ||
| 33 | + } | ||
| 21 | 34 | ||
| 22 | nextButton.setOnClickListener { | 35 | nextButton.setOnClickListener { |
| 23 | var intent = Intent(this, InputProfilFirstThreeActivity::class.java) | 36 | var intent = Intent(this, InputProfilFirstThreeActivity::class.java) |
| 24 | startActivity(intent) | 37 | startActivity(intent) |
| 38 | + | ||
| 39 | + var birthdateinput=findViewById<EditText>(R.id.editText).text.toString().toInt() | ||
| 40 | + if ((2019-birthdateinput)<19){ | ||
| 41 | + editor.putString("c1_2","none") | ||
| 42 | + } | ||
| 25 | } | 43 | } |
| 44 | + */ | ||
| 26 | } | 45 | } |
| 27 | } | 46 | } | ... | ... |
| 1 | +package com.example.vip | ||
| 2 | + | ||
| 3 | +import androidx.appcompat.app.AppCompatActivity | ||
| 4 | +import android.os.Bundle | ||
| 5 | + | ||
| 6 | +class InputProfilFourthFiveActivity : AppCompatActivity() { | ||
| 7 | + | ||
| 8 | + override fun onCreate(savedInstanceState: Bundle?) { | ||
| 9 | + super.onCreate(savedInstanceState) | ||
| 10 | + setContentView(R.layout.activity_input_profil_fourth_five) | ||
| 11 | + } | ||
| 12 | +} |
| 1 | +package com.example.vip | ||
| 2 | + | ||
| 3 | +import androidx.appcompat.app.AppCompatActivity | ||
| 4 | +import android.os.Bundle | ||
| 5 | + | ||
| 6 | +class InputProfilFourthFourActivity : AppCompatActivity() { | ||
| 7 | + | ||
| 8 | + override fun onCreate(savedInstanceState: Bundle?) { | ||
| 9 | + super.onCreate(savedInstanceState) | ||
| 10 | + setContentView(R.layout.activity_input_profil_fourth_four) | ||
| 11 | + } | ||
| 12 | +} |
| 1 | +package com.example.vip | ||
| 2 | + | ||
| 3 | +import androidx.appcompat.app.AppCompatActivity | ||
| 4 | +import android.os.Bundle | ||
| 5 | + | ||
| 6 | +class InputProfilFourthOneActivity : AppCompatActivity() { | ||
| 7 | + | ||
| 8 | + override fun onCreate(savedInstanceState: Bundle?) { | ||
| 9 | + super.onCreate(savedInstanceState) | ||
| 10 | + setContentView(R.layout.activity_input_profil_fourth_one) | ||
| 11 | + } | ||
| 12 | +} |
| 1 | +package com.example.vip | ||
| 2 | + | ||
| 3 | +import androidx.appcompat.app.AppCompatActivity | ||
| 4 | +import android.os.Bundle | ||
| 5 | + | ||
| 6 | +class InputProfilFourthThreeActivity : AppCompatActivity() { | ||
| 7 | + | ||
| 8 | + override fun onCreate(savedInstanceState: Bundle?) { | ||
| 9 | + super.onCreate(savedInstanceState) | ||
| 10 | + setContentView(R.layout.activity_input_profil_fourth_three) | ||
| 11 | + } | ||
| 12 | +} |
| 1 | +package com.example.vip | ||
| 2 | + | ||
| 3 | +import androidx.appcompat.app.AppCompatActivity | ||
| 4 | +import android.os.Bundle | ||
| 5 | + | ||
| 6 | +class InputProfilFourthTwoActivity : AppCompatActivity() { | ||
| 7 | + | ||
| 8 | + override fun onCreate(savedInstanceState: Bundle?) { | ||
| 9 | + super.onCreate(savedInstanceState) | ||
| 10 | + setContentView(R.layout.activity_input_profil_fourth_two) | ||
| 11 | + } | ||
| 12 | +} |
| 1 | +package com.example.vip | ||
| 2 | + | ||
| 3 | +import android.content.Intent | ||
| 4 | +import androidx.appcompat.app.AppCompatActivity | ||
| 5 | +import android.os.Bundle | ||
| 6 | +import android.widget.EditText | ||
| 7 | +import android.widget.RatingBar | ||
| 8 | +import android.widget.TextView | ||
| 9 | +import androidx.appcompat.app.AlertDialog | ||
| 10 | +import kotlinx.android.synthetic.main.activity_input_profil_second_one.* | ||
| 11 | +import kotlinx.android.synthetic.main.family_member_dialog.* | ||
| 12 | +import kotlinx.android.synthetic.main.family_member_dialog.view.* | ||
| 13 | + | ||
| 14 | +class InputProfilSecondOneActivity : AppCompatActivity() { | ||
| 15 | + | ||
| 16 | + override fun onCreate(savedInstanceState: Bundle?) { | ||
| 17 | + super.onCreate(savedInstanceState) | ||
| 18 | + setContentView(R.layout.activity_input_profil_second_one) | ||
| 19 | + | ||
| 20 | + // 1. 툴바 사용 설정 | ||
| 21 | + setSupportActionBar(toolbar) | ||
| 22 | + | ||
| 23 | + skipButton.setOnClickListener { | ||
| 24 | + var intent = Intent(this, InputProfilSecondOneActivity::class.java) | ||
| 25 | + startActivity(intent) | ||
| 26 | + } | ||
| 27 | + | ||
| 28 | + questionButton.setOnClickListener { | ||
| 29 | + val builder = AlertDialog.Builder(this) | ||
| 30 | + val dialogView = layoutInflater.inflate(R.layout.family_member_dialog, null) | ||
| 31 | + //val dialogText = dialogView.findViewById<EditText>(R.id.dialogEt) | ||
| 32 | + //val dialogRatingBar = dialogView.findViewById<RatingBar>(R.id.dialogRb) | ||
| 33 | + dialogView.findViewById<TextView>(R.id.dialogTitle).text="가족구성원이란?" | ||
| 34 | + dialogView.findViewById<TextView>(R.id.dialogContent).text="주민등록상 같은 거주지에 사는 사람" | ||
| 35 | + | ||
| 36 | + builder.setView(dialogView) | ||
| 37 | + .setPositiveButton("확인") { dialogInterface, i -> | ||
| 38 | + //mainTv.text = dialogText.text.toString() | ||
| 39 | + //mainRb.rating = dialogRatingBar.rating | ||
| 40 | + /* 확인일 때 main의 View의 값에 dialog View에 있는 값을 적용 */ | ||
| 41 | + | ||
| 42 | + } | ||
| 43 | + /* | ||
| 44 | + .setNegativeButton("취소") { dialogInterface, i -> | ||
| 45 | + /* 취소일 때 아무 액션이 없으므로 빈칸 */ | ||
| 46 | + } | ||
| 47 | + */ | ||
| 48 | + | ||
| 49 | + .show() | ||
| 50 | + | ||
| 51 | + } | ||
| 52 | + | ||
| 53 | + previousButton.setOnClickListener { | ||
| 54 | + var intent = Intent(this, InputProfilFirstFiveActivity::class.java) | ||
| 55 | + startActivity(intent) | ||
| 56 | + } | ||
| 57 | + | ||
| 58 | + nextButton.setOnClickListener { | ||
| 59 | + var intent = Intent(this, InputProfilSecondTwoActivity::class.java) | ||
| 60 | + startActivity(intent) | ||
| 61 | + } | ||
| 62 | + } | ||
| 63 | +} |
| 1 | +package com.example.vip | ||
| 2 | + | ||
| 3 | +import android.content.Intent | ||
| 4 | +import androidx.appcompat.app.AppCompatActivity | ||
| 5 | +import android.os.Bundle | ||
| 6 | +import kotlinx.android.synthetic.main.activity_input_profil_second_three.* | ||
| 7 | + | ||
| 8 | +class InputProfilSecondThreeActivity : AppCompatActivity() { | ||
| 9 | + | ||
| 10 | + override fun onCreate(savedInstanceState: Bundle?) { | ||
| 11 | + super.onCreate(savedInstanceState) | ||
| 12 | + setContentView(R.layout.activity_input_profil_second_three) | ||
| 13 | + | ||
| 14 | + setSupportActionBar(toolbar) | ||
| 15 | + | ||
| 16 | + skipButton.setOnClickListener { | ||
| 17 | + var intent = Intent(this, InputProfilSecondOneActivity::class.java) | ||
| 18 | + startActivity(intent) | ||
| 19 | + } | ||
| 20 | + | ||
| 21 | + previousButton.setOnClickListener { | ||
| 22 | + var intent = Intent(this, InputProfilSecondTwoActivity::class.java) | ||
| 23 | + startActivity(intent) | ||
| 24 | + } | ||
| 25 | + | ||
| 26 | + nextButton.setOnClickListener { | ||
| 27 | + var intent = Intent(this, InputProfilSecondThreeActivity::class.java) | ||
| 28 | + startActivity(intent) | ||
| 29 | + } | ||
| 30 | + } | ||
| 31 | +} |
| 1 | +package com.example.vip | ||
| 2 | + | ||
| 3 | +import android.content.Intent | ||
| 4 | +import androidx.appcompat.app.AppCompatActivity | ||
| 5 | +import android.os.Bundle | ||
| 6 | +import android.view.View.VISIBLE | ||
| 7 | +import android.widget.EditText | ||
| 8 | +import kotlinx.android.synthetic.main.activity_input_profil_second_two.* | ||
| 9 | + | ||
| 10 | +class InputProfilSecondTwoActivity : AppCompatActivity() { | ||
| 11 | + | ||
| 12 | + override fun onCreate(savedInstanceState: Bundle?) { | ||
| 13 | + super.onCreate(savedInstanceState) | ||
| 14 | + setContentView(R.layout.activity_input_profil_second_two) | ||
| 15 | + | ||
| 16 | + | ||
| 17 | + setSupportActionBar(toolbar) | ||
| 18 | + | ||
| 19 | + skipButton.setOnClickListener { | ||
| 20 | + var intent = Intent(this, InputProfilSecondOneActivity::class.java) | ||
| 21 | + startActivity(intent) | ||
| 22 | + } | ||
| 23 | + | ||
| 24 | + previousButton.setOnClickListener { | ||
| 25 | + var intent = Intent(this, InputProfilSecondOneActivity::class.java) | ||
| 26 | + startActivity(intent) | ||
| 27 | + } | ||
| 28 | + | ||
| 29 | + nextButton.setOnClickListener { | ||
| 30 | + var intent = Intent(this, InputProfilSecondThreeActivity::class.java) | ||
| 31 | + startActivity(intent) | ||
| 32 | + } | ||
| 33 | + | ||
| 34 | +//val dialogText = dialogView.findViewById<EditText>(R.id.dialogEt) | ||
| 35 | + //mainTv.text = dialogText.text.toString() | ||
| 36 | + childNumberInputButton.setOnClickListener { | ||
| 37 | + var childNum=findViewById<EditText>(R.id.childNumberEditText).text.toString() | ||
| 38 | + if(childNum=="3"){ | ||
| 39 | + child1LinearLayout.visibility=VISIBLE | ||
| 40 | + child2LinearLayout.visibility=VISIBLE | ||
| 41 | + child3LinearLayout.visibility=VISIBLE | ||
| 42 | + } | ||
| 43 | + } | ||
| 44 | + | ||
| 45 | + } | ||
| 46 | +} |
| 1 | +package com.example.vip | ||
| 2 | + | ||
| 3 | +import androidx.appcompat.app.AppCompatActivity | ||
| 4 | +import android.os.Bundle | ||
| 5 | + | ||
| 6 | +class InputProfilThirdFourActivity : AppCompatActivity() { | ||
| 7 | + | ||
| 8 | + override fun onCreate(savedInstanceState: Bundle?) { | ||
| 9 | + super.onCreate(savedInstanceState) | ||
| 10 | + setContentView(R.layout.activity_input_profil_third_four) | ||
| 11 | + } | ||
| 12 | +} |
| 1 | +package com.example.vip | ||
| 2 | + | ||
| 3 | +import android.content.Intent | ||
| 4 | +import androidx.appcompat.app.AppCompatActivity | ||
| 5 | +import android.os.Bundle | ||
| 6 | +import android.widget.TextView | ||
| 7 | +import kotlinx.android.synthetic.main.activity_input_profil_third_one.* | ||
| 8 | + | ||
| 9 | +class InputProfilThirdOneActivity : AppCompatActivity() { | ||
| 10 | + | ||
| 11 | + override fun onCreate(savedInstanceState: Bundle?) { | ||
| 12 | + super.onCreate(savedInstanceState) | ||
| 13 | + setContentView(R.layout.activity_input_profil_third_one) | ||
| 14 | + | ||
| 15 | + // 1. 툴바 사용 설정 | ||
| 16 | + setSupportActionBar(toolbar) | ||
| 17 | + | ||
| 18 | + skipButton.setOnClickListener { | ||
| 19 | + var intent = Intent(this, InputProfilSecondOneActivity::class.java) | ||
| 20 | + startActivity(intent) | ||
| 21 | + } | ||
| 22 | + | ||
| 23 | + previousButton.setOnClickListener { | ||
| 24 | + var intent = Intent(this, InputProfilSecondThreeActivity::class.java) | ||
| 25 | + startActivity(intent) | ||
| 26 | + } | ||
| 27 | + | ||
| 28 | + nextButton.setOnClickListener { | ||
| 29 | + var intent = Intent(this, InputProfilThirdTwoActivity::class.java) | ||
| 30 | + startActivity(intent) | ||
| 31 | + } | ||
| 32 | + } | ||
| 33 | +} |
| 1 | +package com.example.vip | ||
| 2 | + | ||
| 3 | +import android.content.Intent | ||
| 4 | +import androidx.appcompat.app.AppCompatActivity | ||
| 5 | +import android.os.Bundle | ||
| 6 | +import kotlinx.android.synthetic.main.activity_input_profil_third_three.* | ||
| 7 | + | ||
| 8 | +class InputProfilThirdThreeActivity : AppCompatActivity() { | ||
| 9 | + | ||
| 10 | + override fun onCreate(savedInstanceState: Bundle?) { | ||
| 11 | + super.onCreate(savedInstanceState) | ||
| 12 | + setContentView(R.layout.activity_input_profil_third_three) | ||
| 13 | + | ||
| 14 | + // 1. 툴바 사용 설정 | ||
| 15 | + setSupportActionBar(toolbar) | ||
| 16 | + | ||
| 17 | + skipButton.setOnClickListener { | ||
| 18 | + var intent = Intent(this, InputProfilSecondOneActivity::class.java) | ||
| 19 | + startActivity(intent) | ||
| 20 | + } | ||
| 21 | + | ||
| 22 | + previousButton.setOnClickListener { | ||
| 23 | + var intent = Intent(this, InputProfilThirdThreeActivity::class.java) | ||
| 24 | + startActivity(intent) | ||
| 25 | + } | ||
| 26 | + | ||
| 27 | + nextButton.setOnClickListener { | ||
| 28 | + var intent = Intent(this, InputProfilThirdFourActivity::class.java) | ||
| 29 | + startActivity(intent) | ||
| 30 | + } | ||
| 31 | + } | ||
| 32 | +} |
| 1 | +package com.example.vip | ||
| 2 | + | ||
| 3 | +import android.content.Intent | ||
| 4 | +import androidx.appcompat.app.AppCompatActivity | ||
| 5 | +import android.os.Bundle | ||
| 6 | +import kotlinx.android.synthetic.main.activity_input_profil_third_two.* | ||
| 7 | + | ||
| 8 | +class InputProfilThirdTwoActivity : AppCompatActivity() { | ||
| 9 | + | ||
| 10 | + override fun onCreate(savedInstanceState: Bundle?) { | ||
| 11 | + super.onCreate(savedInstanceState) | ||
| 12 | + setContentView(R.layout.activity_input_profil_third_two) | ||
| 13 | + | ||
| 14 | + // 1. 툴바 사용 설정 | ||
| 15 | + setSupportActionBar(toolbar) | ||
| 16 | + | ||
| 17 | + skipButton.setOnClickListener { | ||
| 18 | + var intent = Intent(this, InputProfilSecondOneActivity::class.java) | ||
| 19 | + startActivity(intent) | ||
| 20 | + } | ||
| 21 | + | ||
| 22 | + previousButton.setOnClickListener { | ||
| 23 | + var intent = Intent(this, InputProfilThirdOneActivity::class.java) | ||
| 24 | + startActivity(intent) | ||
| 25 | + } | ||
| 26 | + | ||
| 27 | + nextButton.setOnClickListener { | ||
| 28 | + var intent = Intent(this, InputProfilThirdThreeActivity::class.java) | ||
| 29 | + startActivity(intent) | ||
| 30 | + } | ||
| 31 | + } | ||
| 32 | +} |
| 1 | package com.example.vip | 1 | package com.example.vip |
| 2 | 2 | ||
| 3 | +import android.content.Context | ||
| 3 | import android.content.Intent | 4 | import android.content.Intent |
| 5 | +import android.content.SharedPreferences | ||
| 4 | import android.view.LayoutInflater | 6 | import android.view.LayoutInflater |
| 5 | import android.view.View | 7 | import android.view.View |
| 6 | import android.view.ViewGroup | 8 | import android.view.ViewGroup |
| ... | @@ -34,6 +36,13 @@ class PolicyAdapter(private val items: ArrayList<PolicyItem>) : | ... | @@ -34,6 +36,13 @@ class PolicyAdapter(private val items: ArrayList<PolicyItem>) : |
| 34 | 36 | ||
| 35 | private var view: View = v | 37 | private var view: View = v |
| 36 | 38 | ||
| 39 | + val prof: SharedPreferences = view.context.getSharedPreferences("profdata", Context.MODE_PRIVATE) | ||
| 40 | + val editor: SharedPreferences.Editor=prof.edit() | ||
| 41 | + | ||
| 42 | + var tempstring=prof.getString("favorstringlist","") | ||
| 43 | + var sepstr=tempstring!!.split("@") | ||
| 44 | + var sepstrset=sepstr.toMutableSet() | ||
| 45 | + | ||
| 37 | fun bind(item: PolicyItem) { | 46 | fun bind(item: PolicyItem) { |
| 38 | view.policyImage.setImageDrawable(item.policyItemImage) | 47 | view.policyImage.setImageDrawable(item.policyItemImage) |
| 39 | view.policyDday.text = item.policyItemDday | 48 | view.policyDday.text = item.policyItemDday |
| ... | @@ -42,6 +51,13 @@ class PolicyAdapter(private val items: ArrayList<PolicyItem>) : | ... | @@ -42,6 +51,13 @@ class PolicyAdapter(private val items: ArrayList<PolicyItem>) : |
| 42 | view.policyScore.rating= item.policyItemScore | 51 | view.policyScore.rating= item.policyItemScore |
| 43 | view.policyFavor.text=item.policyItemFavor | 52 | view.policyFavor.text=item.policyItemFavor |
| 44 | 53 | ||
| 54 | + | ||
| 55 | + if(item.policyItemTitle in sepstrset){ | ||
| 56 | + view.policyFavor.isChecked=true | ||
| 57 | + } | ||
| 58 | + else{ | ||
| 59 | + | ||
| 60 | + } | ||
| 45 | view.setOnClickListener{ | 61 | view.setOnClickListener{ |
| 46 | 62 | ||
| 47 | val intent=Intent(view.context, DetailActivity::class.java) | 63 | val intent=Intent(view.context, DetailActivity::class.java) |
| ... | @@ -50,6 +66,28 @@ class PolicyAdapter(private val items: ArrayList<PolicyItem>) : | ... | @@ -50,6 +66,28 @@ class PolicyAdapter(private val items: ArrayList<PolicyItem>) : |
| 50 | //putExtraEnd | 66 | //putExtraEnd |
| 51 | view.context.startActivity(intent) | 67 | view.context.startActivity(intent) |
| 52 | } | 68 | } |
| 69 | + | ||
| 70 | + view.policyFavor.setOnClickListener { | ||
| 71 | + if (view.policyFavor.isChecked) { | ||
| 72 | + tempstring = tempstring + view.policyTitle.text.toString() + "@" | ||
| 73 | + editor.putString("favorstringlist", tempstring) | ||
| 74 | + editor.commit() | ||
| 75 | + Toast.makeText( | ||
| 76 | + view.context, | ||
| 77 | + "찜목록 추가 완료! : " + view.policyTitle.text.toString(), | ||
| 78 | + Toast.LENGTH_SHORT | ||
| 79 | + ).show() | ||
| 80 | + } else { | ||
| 81 | + sepstrset.remove(view.policyTitle.text.toString()) | ||
| 82 | + editor.putString("favorstringlist", sepstrset.joinToString("@")) | ||
| 83 | + editor.commit() | ||
| 84 | + Toast.makeText( | ||
| 85 | + view.context, | ||
| 86 | + "찜목록 제거 완료! : " + view.policyTitle.text.toString(), | ||
| 87 | + Toast.LENGTH_SHORT | ||
| 88 | + ).show() | ||
| 89 | + } | ||
| 90 | + } | ||
| 53 | } | 91 | } |
| 54 | } | 92 | } |
| 55 | } | 93 | } |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
| 1 | package com.example.vip | 1 | package com.example.vip |
| 2 | 2 | ||
| 3 | import android.app.Activity | 3 | import android.app.Activity |
| 4 | +import android.content.Context | ||
| 4 | import android.content.Intent | 5 | import android.content.Intent |
| 6 | +import android.content.SharedPreferences | ||
| 5 | import android.os.Bundle | 7 | import android.os.Bundle |
| 6 | import android.util.Half.toFloat | 8 | import android.util.Half.toFloat |
| 7 | import android.view.Menu | 9 | import android.view.Menu |
| ... | @@ -10,6 +12,7 @@ import android.widget.Toast | ... | @@ -10,6 +12,7 @@ import android.widget.Toast |
| 10 | import androidx.appcompat.app.ActionBar | 12 | import androidx.appcompat.app.ActionBar |
| 11 | import androidx.appcompat.app.AppCompatActivity | 13 | import androidx.appcompat.app.AppCompatActivity |
| 12 | import androidx.core.content.ContextCompat | 14 | import androidx.core.content.ContextCompat |
| 15 | +import androidx.core.content.ContextCompat.startActivity | ||
| 13 | import androidx.viewpager.widget.ViewPager | 16 | import androidx.viewpager.widget.ViewPager |
| 14 | import com.google.android.material.bottomnavigation.BottomNavigationView | 17 | import com.google.android.material.bottomnavigation.BottomNavigationView |
| 15 | import com.google.android.material.snackbar.Snackbar | 18 | import com.google.android.material.snackbar.Snackbar |
| ... | @@ -20,6 +23,8 @@ import com.google.firebase.database.ValueEventListener | ... | @@ -20,6 +23,8 @@ import com.google.firebase.database.ValueEventListener |
| 20 | import kotlinx.android.synthetic.main.activity_recommend.* | 23 | import kotlinx.android.synthetic.main.activity_recommend.* |
| 21 | import kotlinx.android.synthetic.main.activity_signin.* | 24 | import kotlinx.android.synthetic.main.activity_signin.* |
| 22 | import kotlinx.android.synthetic.main.activity_signin.toolbar | 25 | import kotlinx.android.synthetic.main.activity_signin.toolbar |
| 26 | +import kotlinx.android.synthetic.main.item_policy.* | ||
| 27 | +import kotlinx.android.synthetic.main.item_policy.view.* | ||
| 23 | import kotlinx.android.synthetic.main.search.* | 28 | import kotlinx.android.synthetic.main.search.* |
| 24 | 29 | ||
| 25 | data class MemoItemRecom( | 30 | data class MemoItemRecom( |
| ... | @@ -61,19 +66,14 @@ class RecommendActivity : AppCompatActivity() { | ... | @@ -61,19 +66,14 @@ class RecommendActivity : AppCompatActivity() { |
| 61 | memo!!.Policy, | 66 | memo!!.Policy, |
| 62 | 4.toFloat(), | 67 | 4.toFloat(), |
| 63 | "" | 68 | "" |
| 64 | - | ||
| 65 | ) | 69 | ) |
| 66 | ) | 70 | ) |
| 67 | } | 71 | } |
| 68 | - | ||
| 69 | val adapter = PolicyAdapter(policyList) | 72 | val adapter = PolicyAdapter(policyList) |
| 70 | policyRecyclerView.adapter = adapter | 73 | policyRecyclerView.adapter = adapter |
| 71 | - | ||
| 72 | } | 74 | } |
| 73 | - | ||
| 74 | }) | 75 | }) |
| 75 | 76 | ||
| 76 | - | ||
| 77 | } else { | 77 | } else { |
| 78 | Toast.makeText(this, "putExtra value not found", Toast.LENGTH_SHORT).show() | 78 | Toast.makeText(this, "putExtra value not found", Toast.LENGTH_SHORT).show() |
| 79 | 79 | ||
| ... | @@ -101,37 +101,26 @@ class RecommendActivity : AppCompatActivity() { | ... | @@ -101,37 +101,26 @@ class RecommendActivity : AppCompatActivity() { |
| 101 | 101 | ||
| 102 | val adapter = PolicyAdapter(policyList) | 102 | val adapter = PolicyAdapter(policyList) |
| 103 | policyRecyclerView.adapter = adapter | 103 | policyRecyclerView.adapter = adapter |
| 104 | - | ||
| 105 | } | 104 | } |
| 106 | - | ||
| 107 | }) | 105 | }) |
| 108 | - | ||
| 109 | - | ||
| 110 | } | 106 | } |
| 111 | - | ||
| 112 | - | ||
| 113 | - | ||
| 114 | // 1. 툴바 사용 설정 | 107 | // 1. 툴바 사용 설정 |
| 115 | setSupportActionBar(toolbar) | 108 | setSupportActionBar(toolbar) |
| 116 | - | ||
| 117 | // 2. 툴바 왼쪽 버튼 설정 | 109 | // 2. 툴바 왼쪽 버튼 설정 |
| 118 | supportActionBar!!.setDisplayHomeAsUpEnabled(true) // 왼쪽 버튼 사용 여부 true | 110 | supportActionBar!!.setDisplayHomeAsUpEnabled(true) // 왼쪽 버튼 사용 여부 true |
| 119 | supportActionBar!!.setHomeAsUpIndicator(R.drawable.return_page) // 왼쪽 버튼 아이콘 설정 | 111 | supportActionBar!!.setHomeAsUpIndicator(R.drawable.return_page) // 왼쪽 버튼 아이콘 설정 |
| 120 | supportActionBar!!.setDisplayShowTitleEnabled(false) // 타이틀 안보이게 하기 | 112 | supportActionBar!!.setDisplayShowTitleEnabled(false) // 타이틀 안보이게 하기 |
| 121 | - | ||
| 122 | ////bottom navigation view operation start 2 | 113 | ////bottom navigation view operation start 2 |
| 123 | bottomBar=supportActionBar!! | 114 | bottomBar=supportActionBar!! |
| 124 | val bottomNavigation: BottomNavigationView =findViewById(R.id.bottomNavigation) | 115 | val bottomNavigation: BottomNavigationView =findViewById(R.id.bottomNavigation) |
| 125 | bottomNavigation.setOnNavigationItemSelectedListener(mOnNavigationItemSelectedListener) | 116 | bottomNavigation.setOnNavigationItemSelectedListener(mOnNavigationItemSelectedListener) |
| 126 | ////bottom navigation view operation end 2 | 117 | ////bottom navigation view operation end 2 |
| 127 | - | ||
| 128 | } | 118 | } |
| 129 | // 3.툴바 메뉴 버튼을 설정 | 119 | // 3.툴바 메뉴 버튼을 설정 |
| 130 | override fun onCreateOptionsMenu(menu: Menu?): Boolean { | 120 | override fun onCreateOptionsMenu(menu: Menu?): Boolean { |
| 131 | menuInflater.inflate(R.menu.main_menu, menu) // main_menu 메뉴를 toolbar 메뉴 버튼으로 설정 | 121 | menuInflater.inflate(R.menu.main_menu, menu) // main_menu 메뉴를 toolbar 메뉴 버튼으로 설정 |
| 132 | return true | 122 | return true |
| 133 | } | 123 | } |
| 134 | - | ||
| 135 | // 4.툴바 메뉴 버튼이 클릭 됐을 때 콜백 | 124 | // 4.툴바 메뉴 버튼이 클릭 됐을 때 콜백 |
| 136 | override fun onOptionsItemSelected(item: MenuItem?): Boolean { | 125 | override fun onOptionsItemSelected(item: MenuItem?): Boolean { |
| 137 | // 클릭된 메뉴 아이템의 아이디 마다 when 구절로 클릭시 동작을 설정한다. | 126 | // 클릭된 메뉴 아이템의 아이디 마다 when 구절로 클릭시 동작을 설정한다. | ... | ... |
| 1 | +<?xml version="1.0" encoding="utf-8"?> | ||
| 2 | +<selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
| 3 | + | ||
| 4 | + <item android:state_checked="false" | ||
| 5 | + android:drawable="@drawable/profil_unselected"/> | ||
| 6 | + <item android:state_checked="true" | ||
| 7 | + android:drawable="@drawable/profil_selected"/> | ||
| 8 | +</selector> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 1 | <?xml version="1.0" encoding="utf-8"?> | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> | 2 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> |
| 3 | 3 | ||
| 4 | - <item android:state_checked="false" | 4 | +<item android:state_checked="false" |
| 5 | - android:drawable="@drawable/heart_stroke" /> | 5 | + android:drawable="@drawable/heart_stroke" /> |
| 6 | - <item android:state_checked="true" | 6 | +<item android:state_checked="true" |
| 7 | - android:drawable="@drawable/heart_fill" /> | 7 | + android:drawable="@drawable/heart_fill" /> |
| 8 | </selector> | 8 | </selector> |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
| 1 | +<?xml version="1.0" encoding="utf-8"?> | ||
| 2 | +<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
| 3 | + xmlns:app="http://schemas.android.com/apk/res-auto" | ||
| 4 | + xmlns:tools="http://schemas.android.com/tools" | ||
| 5 | + android:layout_width="match_parent" | ||
| 6 | + android:layout_height="match_parent" | ||
| 7 | + tools:context=".InputProfilFifthFourActivity"> | ||
| 8 | + | ||
| 9 | + <LinearLayout | ||
| 10 | + android:layout_width="match_parent" | ||
| 11 | + android:layout_height="match_parent" | ||
| 12 | + android:orientation="vertical"> | ||
| 13 | + | ||
| 14 | + <androidx.appcompat.widget.Toolbar | ||
| 15 | + android:id="@+id/toolbar" | ||
| 16 | + android:layout_width="fill_parent" | ||
| 17 | + android:layout_height="wrap_content" | ||
| 18 | + android:layout_marginBottom="11dp" | ||
| 19 | + android:background="#FFF" | ||
| 20 | + android:elevation="5dp" | ||
| 21 | + android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" | ||
| 22 | + app:popupTheme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> | ||
| 23 | + | ||
| 24 | + <LinearLayout | ||
| 25 | + android:layout_width="match_parent" | ||
| 26 | + android:layout_height="match_parent" | ||
| 27 | + android:orientation="horizontal"> | ||
| 28 | + | ||
| 29 | + <Button | ||
| 30 | + android:id="@+id/skipButton" | ||
| 31 | + android:layout_width="10dp" | ||
| 32 | + android:layout_height="match_parent" | ||
| 33 | + android:layout_weight="1.5" | ||
| 34 | + android:text="건너뛰기"/> | ||
| 35 | + <LinearLayout | ||
| 36 | + android:layout_width="10dp" | ||
| 37 | + android:layout_height="match_parent" | ||
| 38 | + android:orientation="horizontal" | ||
| 39 | + android:layout_weight="1"/> | ||
| 40 | + <ImageView | ||
| 41 | + android:layout_width="77dp" | ||
| 42 | + android:layout_height="44dp" | ||
| 43 | + android:layout_gravity="center" | ||
| 44 | + android:layout_weight="1" | ||
| 45 | + android:src="@drawable/toolbar_logo" /> | ||
| 46 | + <LinearLayout | ||
| 47 | + android:layout_width="10dp" | ||
| 48 | + android:layout_height="match_parent" | ||
| 49 | + android:orientation="horizontal" | ||
| 50 | + android:layout_weight="1"/> | ||
| 51 | + <LinearLayout | ||
| 52 | + android:layout_width="10dp" | ||
| 53 | + android:layout_height="match_parent" | ||
| 54 | + android:orientation="horizontal" | ||
| 55 | + android:layout_weight="1.5"/> | ||
| 56 | + | ||
| 57 | + </LinearLayout> | ||
| 58 | + | ||
| 59 | + | ||
| 60 | + </androidx.appcompat.widget.Toolbar> | ||
| 61 | + | ||
| 62 | + <LinearLayout | ||
| 63 | + android:layout_width="match_parent" | ||
| 64 | + android:layout_height="50dp" | ||
| 65 | + android:layout_weight="0" | ||
| 66 | + android:orientation="horizontal"> | ||
| 67 | + | ||
| 68 | + <TextView | ||
| 69 | + android:id="@+id/stageTextView1" | ||
| 70 | + android:layout_width="wrap_content" | ||
| 71 | + android:layout_height="match_parent" | ||
| 72 | + android:layout_gravity="center" | ||
| 73 | + android:layout_weight="1" | ||
| 74 | + android:background="#1E90FF" | ||
| 75 | + android:gravity="center" | ||
| 76 | + android:text="1" /> | ||
| 77 | + | ||
| 78 | + <TextView | ||
| 79 | + android:id="@+id/stageTextView2" | ||
| 80 | + android:layout_width="wrap_content" | ||
| 81 | + android:layout_height="match_parent" | ||
| 82 | + android:layout_gravity="center" | ||
| 83 | + android:layout_weight="1" | ||
| 84 | + android:background="#1E90FF" | ||
| 85 | + android:gravity="center" | ||
| 86 | + android:text="2" /> | ||
| 87 | + | ||
| 88 | + <TextView | ||
| 89 | + android:id="@+id/stageTextView3" | ||
| 90 | + android:layout_width="wrap_content" | ||
| 91 | + android:layout_height="match_parent" | ||
| 92 | + android:layout_gravity="center" | ||
| 93 | + android:layout_weight="1" | ||
| 94 | + android:background="#1E90FF" | ||
| 95 | + android:gravity="center" | ||
| 96 | + android:text="3" /> | ||
| 97 | + | ||
| 98 | + <TextView | ||
| 99 | + android:id="@+id/stageTextView4" | ||
| 100 | + android:layout_width="wrap_content" | ||
| 101 | + android:layout_height="match_parent" | ||
| 102 | + android:layout_gravity="center" | ||
| 103 | + android:layout_weight="1" | ||
| 104 | + android:background="#1E90FF" | ||
| 105 | + android:gravity="center" | ||
| 106 | + android:text="4" /> | ||
| 107 | + | ||
| 108 | + <TextView | ||
| 109 | + android:id="@+id/stageTextView5" | ||
| 110 | + android:layout_width="wrap_content" | ||
| 111 | + android:layout_height="match_parent" | ||
| 112 | + android:layout_gravity="center" | ||
| 113 | + android:layout_weight="1" | ||
| 114 | + android:background="#1E90FF" | ||
| 115 | + android:gravity="center" | ||
| 116 | + android:text="5" /> | ||
| 117 | + | ||
| 118 | + </LinearLayout> | ||
| 119 | + | ||
| 120 | + <LinearLayout | ||
| 121 | + android:layout_width="match_parent" | ||
| 122 | + android:layout_height="10dp" | ||
| 123 | + android:layout_weight="1" | ||
| 124 | + android:orientation="vertical"></LinearLayout> | ||
| 125 | + | ||
| 126 | + <LinearLayout | ||
| 127 | + android:layout_width="match_parent" | ||
| 128 | + android:layout_height="wrap_content" | ||
| 129 | + android:layout_weight="1" | ||
| 130 | + android:orientation="vertical"> | ||
| 131 | + | ||
| 132 | + <LinearLayout | ||
| 133 | + android:layout_width="match_parent" | ||
| 134 | + android:layout_height="wrap_content" | ||
| 135 | + android:orientation="vertical"> | ||
| 136 | + | ||
| 137 | + <RelativeLayout | ||
| 138 | + android:layout_width="match_parent" | ||
| 139 | + android:layout_height="match_parent"> | ||
| 140 | + | ||
| 141 | + <TextView | ||
| 142 | + android:id="@+id/explainTextView" | ||
| 143 | + android:layout_width="wrap_content" | ||
| 144 | + android:layout_height="wrap_content" | ||
| 145 | + android:layout_centerInParent="true" | ||
| 146 | + android:layout_gravity="center" | ||
| 147 | + android:gravity="center" | ||
| 148 | + android:text="18. 금융기관 대출금, 공증된 사채 등으로 차용한 금액 중 미상환액, 부채금액을 적어주세요." /> | ||
| 149 | + | ||
| 150 | + <Button | ||
| 151 | + android:id="@+id/questionButton" | ||
| 152 | + android:layout_width="30dp" | ||
| 153 | + android:layout_height="30dp" | ||
| 154 | + android:layout_gravity="center" | ||
| 155 | + android:layout_toRightOf="@id/explainTextView" | ||
| 156 | + android:backgroundTint="#1E90FF" | ||
| 157 | + android:gravity="center" | ||
| 158 | + android:text=" ? " | ||
| 159 | + android:textSize="8sp" /> | ||
| 160 | + </RelativeLayout> | ||
| 161 | + </LinearLayout> | ||
| 162 | + | ||
| 163 | + <LinearLayout | ||
| 164 | + android:layout_width="match_parent" | ||
| 165 | + android:layout_height="50dp" | ||
| 166 | + android:layout_weight="1" | ||
| 167 | + android:orientation="vertical"> | ||
| 168 | + | ||
| 169 | + </LinearLayout> | ||
| 170 | + | ||
| 171 | + <ScrollView | ||
| 172 | + android:layout_width="match_parent" | ||
| 173 | + android:layout_height="wrap_content"> | ||
| 174 | + | ||
| 175 | + <LinearLayout | ||
| 176 | + android:layout_width="300dp" | ||
| 177 | + android:layout_height="wrap_content" | ||
| 178 | + android:layout_gravity="center" | ||
| 179 | + android:orientation="vertical"> | ||
| 180 | + | ||
| 181 | + <TextView | ||
| 182 | + android:id="@+id/textView1" | ||
| 183 | + android:layout_width="match_parent" | ||
| 184 | + android:layout_height="wrap_content" | ||
| 185 | + android:text="부채 금액" /> | ||
| 186 | + | ||
| 187 | + <EditText | ||
| 188 | + android:id="@+id/editText1" | ||
| 189 | + android:layout_width="match_parent" | ||
| 190 | + android:layout_height="wrap_content" | ||
| 191 | + android:ems="10" | ||
| 192 | + android:hint="ex)1000000" /> | ||
| 193 | + | ||
| 194 | + </LinearLayout> | ||
| 195 | + </ScrollView> | ||
| 196 | + | ||
| 197 | + <LinearLayout | ||
| 198 | + android:layout_width="match_parent" | ||
| 199 | + android:layout_height="100dp" | ||
| 200 | + android:layout_weight="1" | ||
| 201 | + android:orientation="vertical"></LinearLayout> | ||
| 202 | + | ||
| 203 | + <LinearLayout | ||
| 204 | + android:layout_width="match_parent" | ||
| 205 | + android:layout_height="wrap_content" | ||
| 206 | + android:orientation="horizontal"> | ||
| 207 | + | ||
| 208 | + <Button | ||
| 209 | + android:id="@+id/previousButton" | ||
| 210 | + android:layout_width="10dp" | ||
| 211 | + android:layout_height="wrap_content" | ||
| 212 | + android:layout_weight="1" | ||
| 213 | + android:text="이전 단계로" /> | ||
| 214 | + | ||
| 215 | + <Button | ||
| 216 | + android:id="@+id/nextButton" | ||
| 217 | + android:layout_width="10dp" | ||
| 218 | + android:layout_height="wrap_content" | ||
| 219 | + android:layout_weight="1" | ||
| 220 | + android:text="다음 단계로" /> | ||
| 221 | + </LinearLayout> | ||
| 222 | + </LinearLayout> | ||
| 223 | + </LinearLayout> | ||
| 224 | +</androidx.constraintlayout.widget.ConstraintLayout> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 1 | +<?xml version="1.0" encoding="utf-8"?> | ||
| 2 | +<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
| 3 | + xmlns:app="http://schemas.android.com/apk/res-auto" | ||
| 4 | + xmlns:tools="http://schemas.android.com/tools" | ||
| 5 | + android:layout_width="match_parent" | ||
| 6 | + android:layout_height="match_parent" | ||
| 7 | + tools:context=".InputProfilFifthOneActivity"> | ||
| 8 | + | ||
| 9 | + <LinearLayout | ||
| 10 | + android:layout_width="match_parent" | ||
| 11 | + android:layout_height="match_parent" | ||
| 12 | + android:orientation="vertical"> | ||
| 13 | + | ||
| 14 | + <androidx.appcompat.widget.Toolbar | ||
| 15 | + android:id="@+id/toolbar" | ||
| 16 | + android:layout_width="fill_parent" | ||
| 17 | + android:layout_height="wrap_content" | ||
| 18 | + android:layout_marginBottom="11dp" | ||
| 19 | + android:background="#FFF" | ||
| 20 | + android:elevation="5dp" | ||
| 21 | + android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" | ||
| 22 | + app:popupTheme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> | ||
| 23 | + | ||
| 24 | + <LinearLayout | ||
| 25 | + android:layout_width="match_parent" | ||
| 26 | + android:layout_height="match_parent" | ||
| 27 | + android:orientation="horizontal"> | ||
| 28 | + | ||
| 29 | + <Button | ||
| 30 | + android:id="@+id/skipButton" | ||
| 31 | + android:layout_width="10dp" | ||
| 32 | + android:layout_height="match_parent" | ||
| 33 | + android:layout_weight="1.5" | ||
| 34 | + android:text="건너뛰기"/> | ||
| 35 | + <LinearLayout | ||
| 36 | + android:layout_width="10dp" | ||
| 37 | + android:layout_height="match_parent" | ||
| 38 | + android:orientation="horizontal" | ||
| 39 | + android:layout_weight="1"/> | ||
| 40 | + <ImageView | ||
| 41 | + android:layout_width="77dp" | ||
| 42 | + android:layout_height="44dp" | ||
| 43 | + android:layout_gravity="center" | ||
| 44 | + android:layout_weight="1" | ||
| 45 | + android:src="@drawable/toolbar_logo" /> | ||
| 46 | + <LinearLayout | ||
| 47 | + android:layout_width="10dp" | ||
| 48 | + android:layout_height="match_parent" | ||
| 49 | + android:orientation="horizontal" | ||
| 50 | + android:layout_weight="1"/> | ||
| 51 | + <LinearLayout | ||
| 52 | + android:layout_width="10dp" | ||
| 53 | + android:layout_height="match_parent" | ||
| 54 | + android:orientation="horizontal" | ||
| 55 | + android:layout_weight="1.5"/> | ||
| 56 | + | ||
| 57 | + </LinearLayout> | ||
| 58 | + | ||
| 59 | + | ||
| 60 | + </androidx.appcompat.widget.Toolbar> | ||
| 61 | + | ||
| 62 | + <LinearLayout | ||
| 63 | + android:layout_width="match_parent" | ||
| 64 | + android:layout_height="50dp" | ||
| 65 | + android:layout_weight="0" | ||
| 66 | + android:orientation="horizontal"> | ||
| 67 | + | ||
| 68 | + <TextView | ||
| 69 | + android:id="@+id/stageTextView1" | ||
| 70 | + android:layout_width="wrap_content" | ||
| 71 | + android:layout_height="match_parent" | ||
| 72 | + android:layout_gravity="center" | ||
| 73 | + android:layout_weight="1" | ||
| 74 | + android:background="#1E90FF" | ||
| 75 | + android:gravity="center" | ||
| 76 | + android:text="1" /> | ||
| 77 | + | ||
| 78 | + <TextView | ||
| 79 | + android:id="@+id/stageTextView2" | ||
| 80 | + android:layout_width="wrap_content" | ||
| 81 | + android:layout_height="match_parent" | ||
| 82 | + android:layout_gravity="center" | ||
| 83 | + android:layout_weight="1" | ||
| 84 | + android:background="#1E90FF" | ||
| 85 | + android:gravity="center" | ||
| 86 | + android:text="2" /> | ||
| 87 | + | ||
| 88 | + <TextView | ||
| 89 | + android:id="@+id/stageTextView3" | ||
| 90 | + android:layout_width="wrap_content" | ||
| 91 | + android:layout_height="match_parent" | ||
| 92 | + android:layout_gravity="center" | ||
| 93 | + android:layout_weight="1" | ||
| 94 | + android:background="#1E90FF" | ||
| 95 | + android:gravity="center" | ||
| 96 | + android:text="3" /> | ||
| 97 | + | ||
| 98 | + <TextView | ||
| 99 | + android:id="@+id/stageTextView4" | ||
| 100 | + android:layout_width="wrap_content" | ||
| 101 | + android:layout_height="match_parent" | ||
| 102 | + android:layout_gravity="center" | ||
| 103 | + android:layout_weight="1" | ||
| 104 | + android:background="#1E90FF" | ||
| 105 | + android:gravity="center" | ||
| 106 | + android:text="4" /> | ||
| 107 | + | ||
| 108 | + <TextView | ||
| 109 | + android:id="@+id/stageTextView5" | ||
| 110 | + android:layout_width="wrap_content" | ||
| 111 | + android:layout_height="match_parent" | ||
| 112 | + android:layout_gravity="center" | ||
| 113 | + android:layout_weight="1" | ||
| 114 | + android:background="#1E90FF" | ||
| 115 | + android:gravity="center" | ||
| 116 | + android:text="5" /> | ||
| 117 | + | ||
| 118 | + </LinearLayout> | ||
| 119 | + | ||
| 120 | + <LinearLayout | ||
| 121 | + android:layout_width="match_parent" | ||
| 122 | + android:layout_height="10dp" | ||
| 123 | + android:layout_weight="1" | ||
| 124 | + android:orientation="vertical"></LinearLayout> | ||
| 125 | + | ||
| 126 | + <LinearLayout | ||
| 127 | + android:layout_width="match_parent" | ||
| 128 | + android:layout_height="wrap_content" | ||
| 129 | + android:layout_weight="1" | ||
| 130 | + android:orientation="vertical"> | ||
| 131 | + | ||
| 132 | + <LinearLayout | ||
| 133 | + android:layout_width="match_parent" | ||
| 134 | + android:layout_height="wrap_content" | ||
| 135 | + android:orientation="vertical"> | ||
| 136 | + | ||
| 137 | + <RelativeLayout | ||
| 138 | + android:layout_width="match_parent" | ||
| 139 | + android:layout_height="match_parent"> | ||
| 140 | + | ||
| 141 | + <TextView | ||
| 142 | + android:id="@+id/explainTextView" | ||
| 143 | + android:layout_width="wrap_content" | ||
| 144 | + android:layout_height="wrap_content" | ||
| 145 | + android:layout_centerInParent="true" | ||
| 146 | + android:layout_gravity="center" | ||
| 147 | + android:gravity="center" | ||
| 148 | + android:text="15. 월평균소득을 적어주세요. (기준 : 매월소득)" /> | ||
| 149 | + | ||
| 150 | + <Button | ||
| 151 | + android:id="@+id/questionButton" | ||
| 152 | + android:layout_width="30dp" | ||
| 153 | + android:layout_height="30dp" | ||
| 154 | + android:layout_gravity="center" | ||
| 155 | + android:layout_toRightOf="@id/explainTextView" | ||
| 156 | + android:backgroundTint="#1E90FF" | ||
| 157 | + android:gravity="center" | ||
| 158 | + android:text=" ? " | ||
| 159 | + android:textSize="8sp" /> | ||
| 160 | + </RelativeLayout> | ||
| 161 | + </LinearLayout> | ||
| 162 | + | ||
| 163 | + <LinearLayout | ||
| 164 | + android:layout_width="match_parent" | ||
| 165 | + android:layout_height="50dp" | ||
| 166 | + android:layout_weight="1" | ||
| 167 | + android:orientation="vertical"> | ||
| 168 | + | ||
| 169 | + </LinearLayout> | ||
| 170 | + | ||
| 171 | + <ScrollView | ||
| 172 | + android:layout_width="match_parent" | ||
| 173 | + android:layout_height="wrap_content"> | ||
| 174 | + | ||
| 175 | + <LinearLayout | ||
| 176 | + android:layout_width="300dp" | ||
| 177 | + android:layout_height="wrap_content" | ||
| 178 | + android:layout_gravity="center" | ||
| 179 | + android:orientation="vertical"> | ||
| 180 | + | ||
| 181 | + <TextView | ||
| 182 | + android:id="@+id/textView1" | ||
| 183 | + android:layout_width="match_parent" | ||
| 184 | + android:layout_height="wrap_content" | ||
| 185 | + android:text="근로/사업소득" /> | ||
| 186 | + | ||
| 187 | + <EditText | ||
| 188 | + android:id="@+id/editText1" | ||
| 189 | + android:layout_width="match_parent" | ||
| 190 | + android:layout_height="wrap_content" | ||
| 191 | + android:ems="10" | ||
| 192 | + android:hint="ex)1000000" | ||
| 193 | + android:inputType="textPersonName" /> | ||
| 194 | + | ||
| 195 | + <TextView | ||
| 196 | + android:id="@+id/textView2" | ||
| 197 | + android:layout_width="match_parent" | ||
| 198 | + android:layout_height="wrap_content" | ||
| 199 | + android:text="그 외 소득(재산소득, 공직이전소득 등)" /> | ||
| 200 | + | ||
| 201 | + <EditText | ||
| 202 | + android:id="@+id/editText2" | ||
| 203 | + android:layout_width="match_parent" | ||
| 204 | + android:layout_height="wrap_content" | ||
| 205 | + android:ems="10" | ||
| 206 | + android:hint="ex)1000000" | ||
| 207 | + android:inputType="textPersonName" /> | ||
| 208 | + </LinearLayout> | ||
| 209 | + </ScrollView> | ||
| 210 | + | ||
| 211 | + <LinearLayout | ||
| 212 | + android:layout_width="match_parent" | ||
| 213 | + android:layout_height="100dp" | ||
| 214 | + android:layout_weight="1" | ||
| 215 | + android:orientation="vertical"></LinearLayout> | ||
| 216 | + | ||
| 217 | + <LinearLayout | ||
| 218 | + android:layout_width="match_parent" | ||
| 219 | + android:layout_height="wrap_content" | ||
| 220 | + android:orientation="horizontal"> | ||
| 221 | + | ||
| 222 | + <Button | ||
| 223 | + android:id="@+id/previousButton" | ||
| 224 | + android:layout_width="10dp" | ||
| 225 | + android:layout_height="wrap_content" | ||
| 226 | + android:layout_weight="1" | ||
| 227 | + android:text="이전 단계로" /> | ||
| 228 | + | ||
| 229 | + <Button | ||
| 230 | + android:id="@+id/nextButton" | ||
| 231 | + android:layout_width="10dp" | ||
| 232 | + android:layout_height="wrap_content" | ||
| 233 | + android:layout_weight="1" | ||
| 234 | + android:text="다음 단계로" /> | ||
| 235 | + </LinearLayout> | ||
| 236 | + </LinearLayout> | ||
| 237 | + </LinearLayout> | ||
| 238 | +</androidx.constraintlayout.widget.ConstraintLayout> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 1 | +<?xml version="1.0" encoding="utf-8"?> | ||
| 2 | +<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
| 3 | + xmlns:app="http://schemas.android.com/apk/res-auto" | ||
| 4 | + xmlns:tools="http://schemas.android.com/tools" | ||
| 5 | + android:layout_width="match_parent" | ||
| 6 | + android:layout_height="match_parent" | ||
| 7 | + tools:context=".InputProfilFifthThreeActivity"> | ||
| 8 | + | ||
| 9 | + <LinearLayout | ||
| 10 | + android:layout_width="match_parent" | ||
| 11 | + android:layout_height="match_parent" | ||
| 12 | + android:orientation="vertical"> | ||
| 13 | + | ||
| 14 | + <androidx.appcompat.widget.Toolbar | ||
| 15 | + android:id="@+id/toolbar" | ||
| 16 | + android:layout_width="fill_parent" | ||
| 17 | + android:layout_height="wrap_content" | ||
| 18 | + android:layout_marginBottom="11dp" | ||
| 19 | + android:background="#FFF" | ||
| 20 | + android:elevation="5dp" | ||
| 21 | + android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" | ||
| 22 | + app:popupTheme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> | ||
| 23 | + | ||
| 24 | + <LinearLayout | ||
| 25 | + android:layout_width="match_parent" | ||
| 26 | + android:layout_height="match_parent" | ||
| 27 | + android:orientation="horizontal"> | ||
| 28 | + | ||
| 29 | + <Button | ||
| 30 | + android:id="@+id/skipButton" | ||
| 31 | + android:layout_width="10dp" | ||
| 32 | + android:layout_height="match_parent" | ||
| 33 | + android:layout_weight="1.5" | ||
| 34 | + android:text="건너뛰기"/> | ||
| 35 | + <LinearLayout | ||
| 36 | + android:layout_width="10dp" | ||
| 37 | + android:layout_height="match_parent" | ||
| 38 | + android:orientation="horizontal" | ||
| 39 | + android:layout_weight="1"/> | ||
| 40 | + <ImageView | ||
| 41 | + android:layout_width="77dp" | ||
| 42 | + android:layout_height="44dp" | ||
| 43 | + android:layout_gravity="center" | ||
| 44 | + android:layout_weight="1" | ||
| 45 | + android:src="@drawable/toolbar_logo" /> | ||
| 46 | + <LinearLayout | ||
| 47 | + android:layout_width="10dp" | ||
| 48 | + android:layout_height="match_parent" | ||
| 49 | + android:orientation="horizontal" | ||
| 50 | + android:layout_weight="1"/> | ||
| 51 | + <LinearLayout | ||
| 52 | + android:layout_width="10dp" | ||
| 53 | + android:layout_height="match_parent" | ||
| 54 | + android:orientation="horizontal" | ||
| 55 | + android:layout_weight="1.5"/> | ||
| 56 | + | ||
| 57 | + </LinearLayout> | ||
| 58 | + | ||
| 59 | + | ||
| 60 | + </androidx.appcompat.widget.Toolbar> | ||
| 61 | + | ||
| 62 | + <LinearLayout | ||
| 63 | + android:layout_width="match_parent" | ||
| 64 | + android:layout_height="50dp" | ||
| 65 | + android:layout_weight="0" | ||
| 66 | + android:orientation="horizontal"> | ||
| 67 | + | ||
| 68 | + <TextView | ||
| 69 | + android:id="@+id/stageTextView1" | ||
| 70 | + android:layout_width="wrap_content" | ||
| 71 | + android:layout_height="match_parent" | ||
| 72 | + android:layout_gravity="center" | ||
| 73 | + android:layout_weight="1" | ||
| 74 | + android:background="#1E90FF" | ||
| 75 | + android:gravity="center" | ||
| 76 | + android:text="1" /> | ||
| 77 | + | ||
| 78 | + <TextView | ||
| 79 | + android:id="@+id/stageTextView2" | ||
| 80 | + android:layout_width="wrap_content" | ||
| 81 | + android:layout_height="match_parent" | ||
| 82 | + android:layout_gravity="center" | ||
| 83 | + android:layout_weight="1" | ||
| 84 | + android:background="#1E90FF" | ||
| 85 | + android:gravity="center" | ||
| 86 | + android:text="2" /> | ||
| 87 | + | ||
| 88 | + <TextView | ||
| 89 | + android:id="@+id/stageTextView3" | ||
| 90 | + android:layout_width="wrap_content" | ||
| 91 | + android:layout_height="match_parent" | ||
| 92 | + android:layout_gravity="center" | ||
| 93 | + android:layout_weight="1" | ||
| 94 | + android:background="#1E90FF" | ||
| 95 | + android:gravity="center" | ||
| 96 | + android:text="3" /> | ||
| 97 | + | ||
| 98 | + <TextView | ||
| 99 | + android:id="@+id/stageTextView4" | ||
| 100 | + android:layout_width="wrap_content" | ||
| 101 | + android:layout_height="match_parent" | ||
| 102 | + android:layout_gravity="center" | ||
| 103 | + android:layout_weight="1" | ||
| 104 | + android:background="#1E90FF" | ||
| 105 | + android:gravity="center" | ||
| 106 | + android:text="4" /> | ||
| 107 | + | ||
| 108 | + <TextView | ||
| 109 | + android:id="@+id/stageTextView5" | ||
| 110 | + android:layout_width="wrap_content" | ||
| 111 | + android:layout_height="match_parent" | ||
| 112 | + android:layout_gravity="center" | ||
| 113 | + android:layout_weight="1" | ||
| 114 | + android:background="#1E90FF" | ||
| 115 | + android:gravity="center" | ||
| 116 | + android:text="5" /> | ||
| 117 | + | ||
| 118 | + </LinearLayout> | ||
| 119 | + | ||
| 120 | + <LinearLayout | ||
| 121 | + android:layout_width="match_parent" | ||
| 122 | + android:layout_height="10dp" | ||
| 123 | + android:layout_weight="1" | ||
| 124 | + android:orientation="vertical"></LinearLayout> | ||
| 125 | + | ||
| 126 | + <LinearLayout | ||
| 127 | + android:layout_width="match_parent" | ||
| 128 | + android:layout_height="wrap_content" | ||
| 129 | + android:layout_weight="1" | ||
| 130 | + android:orientation="vertical"> | ||
| 131 | + | ||
| 132 | + <LinearLayout | ||
| 133 | + android:layout_width="match_parent" | ||
| 134 | + android:layout_height="wrap_content" | ||
| 135 | + android:orientation="vertical"> | ||
| 136 | + | ||
| 137 | + <RelativeLayout | ||
| 138 | + android:layout_width="match_parent" | ||
| 139 | + android:layout_height="match_parent"> | ||
| 140 | + | ||
| 141 | + <TextView | ||
| 142 | + android:id="@+id/explainTextView" | ||
| 143 | + android:layout_width="wrap_content" | ||
| 144 | + android:layout_height="wrap_content" | ||
| 145 | + android:layout_centerInParent="true" | ||
| 146 | + android:layout_gravity="center" | ||
| 147 | + android:gravity="center" | ||
| 148 | + android:text="17. 재산을 적어주세요." /> | ||
| 149 | + | ||
| 150 | + <Button | ||
| 151 | + android:id="@+id/questionButton" | ||
| 152 | + android:layout_width="30dp" | ||
| 153 | + android:layout_height="30dp" | ||
| 154 | + android:layout_gravity="center" | ||
| 155 | + android:layout_toRightOf="@id/explainTextView" | ||
| 156 | + android:backgroundTint="#1E90FF" | ||
| 157 | + android:gravity="center" | ||
| 158 | + android:text=" ? " | ||
| 159 | + android:textSize="8sp" /> | ||
| 160 | + </RelativeLayout> | ||
| 161 | + </LinearLayout> | ||
| 162 | + | ||
| 163 | + <LinearLayout | ||
| 164 | + android:layout_width="match_parent" | ||
| 165 | + android:layout_height="50dp" | ||
| 166 | + android:layout_weight="1" | ||
| 167 | + android:orientation="vertical"> | ||
| 168 | + | ||
| 169 | + </LinearLayout> | ||
| 170 | + | ||
| 171 | + <ScrollView | ||
| 172 | + android:layout_width="match_parent" | ||
| 173 | + android:layout_height="wrap_content"> | ||
| 174 | + | ||
| 175 | + <LinearLayout | ||
| 176 | + android:layout_width="300dp" | ||
| 177 | + android:layout_height="wrap_content" | ||
| 178 | + android:layout_gravity="center" | ||
| 179 | + android:orientation="vertical"> | ||
| 180 | + | ||
| 181 | + <TextView | ||
| 182 | + android:id="@+id/textView1" | ||
| 183 | + android:layout_width="match_parent" | ||
| 184 | + android:layout_height="wrap_content" | ||
| 185 | + android:text="주거용 재산" /> | ||
| 186 | + | ||
| 187 | + <EditText | ||
| 188 | + android:id="@+id/editText1" | ||
| 189 | + android:layout_width="match_parent" | ||
| 190 | + android:layout_height="wrap_content" | ||
| 191 | + android:ems="10" | ||
| 192 | + android:hint="ex)1000000" /> | ||
| 193 | + | ||
| 194 | + <TextView | ||
| 195 | + android:id="@+id/textView2" | ||
| 196 | + android:layout_width="match_parent" | ||
| 197 | + android:layout_height="wrap_content" | ||
| 198 | + android:text="주거 외 재산" /> | ||
| 199 | + | ||
| 200 | + <EditText | ||
| 201 | + android:id="@+id/editText2" | ||
| 202 | + android:layout_width="match_parent" | ||
| 203 | + android:layout_height="wrap_content" | ||
| 204 | + android:ems="10" | ||
| 205 | + android:hint="ex)1000000" /> | ||
| 206 | + | ||
| 207 | + <TextView | ||
| 208 | + android:id="@+id/textView3" | ||
| 209 | + android:layout_width="match_parent" | ||
| 210 | + android:layout_height="wrap_content" | ||
| 211 | + android:text="금융재산" /> | ||
| 212 | + | ||
| 213 | + <EditText | ||
| 214 | + android:id="@+id/editText3" | ||
| 215 | + android:layout_width="match_parent" | ||
| 216 | + android:layout_height="wrap_content" | ||
| 217 | + android:ems="10" | ||
| 218 | + android:hint="ex)1000000" /> | ||
| 219 | + | ||
| 220 | + </LinearLayout> | ||
| 221 | + </ScrollView> | ||
| 222 | + | ||
| 223 | + <LinearLayout | ||
| 224 | + android:layout_width="match_parent" | ||
| 225 | + android:layout_height="100dp" | ||
| 226 | + android:layout_weight="1" | ||
| 227 | + android:orientation="vertical"></LinearLayout> | ||
| 228 | + | ||
| 229 | + <LinearLayout | ||
| 230 | + android:layout_width="match_parent" | ||
| 231 | + android:layout_height="wrap_content" | ||
| 232 | + android:orientation="horizontal"> | ||
| 233 | + | ||
| 234 | + <Button | ||
| 235 | + android:id="@+id/previousButton" | ||
| 236 | + android:layout_width="10dp" | ||
| 237 | + android:layout_height="wrap_content" | ||
| 238 | + android:layout_weight="1" | ||
| 239 | + android:text="이전 단계로" /> | ||
| 240 | + | ||
| 241 | + <Button | ||
| 242 | + android:id="@+id/nextButton" | ||
| 243 | + android:layout_width="10dp" | ||
| 244 | + android:layout_height="wrap_content" | ||
| 245 | + android:layout_weight="1" | ||
| 246 | + android:text="다음 단계로" /> | ||
| 247 | + </LinearLayout> | ||
| 248 | + </LinearLayout> | ||
| 249 | + </LinearLayout> | ||
| 250 | +</androidx.constraintlayout.widget.ConstraintLayout> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 1 | +<?xml version="1.0" encoding="utf-8"?> | ||
| 2 | +<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
| 3 | + xmlns:app="http://schemas.android.com/apk/res-auto" | ||
| 4 | + xmlns:tools="http://schemas.android.com/tools" | ||
| 5 | + android:layout_width="match_parent" | ||
| 6 | + android:layout_height="match_parent" | ||
| 7 | + tools:context=".InputProfilFifthTwoActivity"> | ||
| 8 | + | ||
| 9 | + <LinearLayout | ||
| 10 | + android:layout_width="match_parent" | ||
| 11 | + android:layout_height="match_parent" | ||
| 12 | + android:orientation="vertical"> | ||
| 13 | + | ||
| 14 | + <androidx.appcompat.widget.Toolbar | ||
| 15 | + android:id="@+id/toolbar" | ||
| 16 | + android:layout_width="fill_parent" | ||
| 17 | + android:layout_height="wrap_content" | ||
| 18 | + android:layout_marginBottom="11dp" | ||
| 19 | + android:background="#FFF" | ||
| 20 | + android:elevation="5dp" | ||
| 21 | + android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" | ||
| 22 | + app:popupTheme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> | ||
| 23 | + | ||
| 24 | + <LinearLayout | ||
| 25 | + android:layout_width="match_parent" | ||
| 26 | + android:layout_height="match_parent" | ||
| 27 | + android:orientation="horizontal"> | ||
| 28 | + | ||
| 29 | + <Button | ||
| 30 | + android:id="@+id/skipButton" | ||
| 31 | + android:layout_width="10dp" | ||
| 32 | + android:layout_height="match_parent" | ||
| 33 | + android:layout_weight="1.5" | ||
| 34 | + android:text="건너뛰기"/> | ||
| 35 | + <LinearLayout | ||
| 36 | + android:layout_width="10dp" | ||
| 37 | + android:layout_height="match_parent" | ||
| 38 | + android:orientation="horizontal" | ||
| 39 | + android:layout_weight="1"/> | ||
| 40 | + <ImageView | ||
| 41 | + android:layout_width="77dp" | ||
| 42 | + android:layout_height="44dp" | ||
| 43 | + android:layout_gravity="center" | ||
| 44 | + android:layout_weight="1" | ||
| 45 | + android:src="@drawable/toolbar_logo" /> | ||
| 46 | + <LinearLayout | ||
| 47 | + android:layout_width="10dp" | ||
| 48 | + android:layout_height="match_parent" | ||
| 49 | + android:orientation="horizontal" | ||
| 50 | + android:layout_weight="1"/> | ||
| 51 | + <LinearLayout | ||
| 52 | + android:layout_width="10dp" | ||
| 53 | + android:layout_height="match_parent" | ||
| 54 | + android:orientation="horizontal" | ||
| 55 | + android:layout_weight="1.5"/> | ||
| 56 | + | ||
| 57 | + </LinearLayout> | ||
| 58 | + | ||
| 59 | + | ||
| 60 | + </androidx.appcompat.widget.Toolbar> | ||
| 61 | + | ||
| 62 | + <LinearLayout | ||
| 63 | + android:layout_width="match_parent" | ||
| 64 | + android:layout_height="50dp" | ||
| 65 | + android:layout_weight="0" | ||
| 66 | + android:orientation="horizontal"> | ||
| 67 | + | ||
| 68 | + <TextView | ||
| 69 | + android:id="@+id/stageTextView1" | ||
| 70 | + android:layout_width="wrap_content" | ||
| 71 | + android:layout_height="match_parent" | ||
| 72 | + android:layout_gravity="center" | ||
| 73 | + android:layout_weight="1" | ||
| 74 | + android:background="#1E90FF" | ||
| 75 | + android:gravity="center" | ||
| 76 | + android:text="1" /> | ||
| 77 | + | ||
| 78 | + <TextView | ||
| 79 | + android:id="@+id/stageTextView2" | ||
| 80 | + android:layout_width="wrap_content" | ||
| 81 | + android:layout_height="match_parent" | ||
| 82 | + android:layout_gravity="center" | ||
| 83 | + android:layout_weight="1" | ||
| 84 | + android:background="#1E90FF" | ||
| 85 | + android:gravity="center" | ||
| 86 | + android:text="2" /> | ||
| 87 | + | ||
| 88 | + <TextView | ||
| 89 | + android:id="@+id/stageTextView3" | ||
| 90 | + android:layout_width="wrap_content" | ||
| 91 | + android:layout_height="match_parent" | ||
| 92 | + android:layout_gravity="center" | ||
| 93 | + android:layout_weight="1" | ||
| 94 | + android:background="#1E90FF" | ||
| 95 | + android:gravity="center" | ||
| 96 | + android:text="3" /> | ||
| 97 | + | ||
| 98 | + <TextView | ||
| 99 | + android:id="@+id/stageTextView4" | ||
| 100 | + android:layout_width="wrap_content" | ||
| 101 | + android:layout_height="match_parent" | ||
| 102 | + android:layout_gravity="center" | ||
| 103 | + android:layout_weight="1" | ||
| 104 | + android:background="#1E90FF" | ||
| 105 | + android:gravity="center" | ||
| 106 | + android:text="4" /> | ||
| 107 | + | ||
| 108 | + <TextView | ||
| 109 | + android:id="@+id/stageTextView5" | ||
| 110 | + android:layout_width="wrap_content" | ||
| 111 | + android:layout_height="match_parent" | ||
| 112 | + android:layout_gravity="center" | ||
| 113 | + android:layout_weight="1" | ||
| 114 | + android:background="#1E90FF" | ||
| 115 | + android:gravity="center" | ||
| 116 | + android:text="5" /> | ||
| 117 | + | ||
| 118 | + </LinearLayout> | ||
| 119 | + | ||
| 120 | + <LinearLayout | ||
| 121 | + android:layout_width="match_parent" | ||
| 122 | + android:layout_height="10dp" | ||
| 123 | + android:layout_weight="1" | ||
| 124 | + android:orientation="vertical"></LinearLayout> | ||
| 125 | + | ||
| 126 | + <LinearLayout | ||
| 127 | + android:layout_width="match_parent" | ||
| 128 | + android:layout_height="wrap_content" | ||
| 129 | + android:layout_weight="1" | ||
| 130 | + android:orientation="vertical"> | ||
| 131 | + | ||
| 132 | + <LinearLayout | ||
| 133 | + android:layout_width="match_parent" | ||
| 134 | + android:layout_height="wrap_content" | ||
| 135 | + android:orientation="vertical"> | ||
| 136 | + | ||
| 137 | + <RelativeLayout | ||
| 138 | + android:layout_width="match_parent" | ||
| 139 | + android:layout_height="match_parent"> | ||
| 140 | + | ||
| 141 | + <TextView | ||
| 142 | + android:id="@+id/explainTextView" | ||
| 143 | + android:layout_width="wrap_content" | ||
| 144 | + android:layout_height="wrap_content" | ||
| 145 | + android:layout_centerInParent="true" | ||
| 146 | + android:layout_gravity="center" | ||
| 147 | + android:gravity="center" | ||
| 148 | + android:text="16. 자신의 건강보험 가입형태를 선택해주세요." /> | ||
| 149 | + | ||
| 150 | + <Button | ||
| 151 | + android:id="@+id/questionButton" | ||
| 152 | + android:layout_width="30dp" | ||
| 153 | + android:layout_height="30dp" | ||
| 154 | + android:layout_gravity="center" | ||
| 155 | + android:layout_toRightOf="@id/explainTextView" | ||
| 156 | + android:backgroundTint="#1E90FF" | ||
| 157 | + android:gravity="center" | ||
| 158 | + android:text=" ? " | ||
| 159 | + android:textSize="8sp" /> | ||
| 160 | + </RelativeLayout> | ||
| 161 | + </LinearLayout> | ||
| 162 | + | ||
| 163 | + <ScrollView | ||
| 164 | + android:layout_width="match_parent" | ||
| 165 | + android:layout_height="wrap_content"> | ||
| 166 | + | ||
| 167 | + <LinearLayout | ||
| 168 | + android:layout_width="match_parent" | ||
| 169 | + android:layout_height="wrap_content" | ||
| 170 | + android:orientation="vertical"> | ||
| 171 | + | ||
| 172 | + <LinearLayout | ||
| 173 | + android:layout_width="wrap_content" | ||
| 174 | + android:layout_height="wrap_content" | ||
| 175 | + android:layout_gravity="center" | ||
| 176 | + android:gravity="center" | ||
| 177 | + android:orientation="vertical"> | ||
| 178 | + | ||
| 179 | + <LinearLayout | ||
| 180 | + android:layout_width="match_parent" | ||
| 181 | + android:layout_height="match_parent" | ||
| 182 | + android:orientation="horizontal"> | ||
| 183 | + | ||
| 184 | + <ToggleButton | ||
| 185 | + android:id="@+id/jikjaangButton" | ||
| 186 | + android:layout_width="wrap_content" | ||
| 187 | + android:layout_height="wrap_content" | ||
| 188 | + android:layout_weight="1" | ||
| 189 | + android:background="@drawable/profil_selector" | ||
| 190 | + android:text="직장가입자" | ||
| 191 | + android:textOff="직장가입자" | ||
| 192 | + android:textOn="직장가입자" /> | ||
| 193 | + | ||
| 194 | + <ToggleButton | ||
| 195 | + android:id="@+id/jiyeokButton" | ||
| 196 | + android:layout_width="wrap_content" | ||
| 197 | + android:layout_height="wrap_content" | ||
| 198 | + android:layout_weight="1" | ||
| 199 | + android:background="@drawable/profil_selector" | ||
| 200 | + android:text="지역가입자" | ||
| 201 | + android:textOff="지역가입자" | ||
| 202 | + android:textOn="지역가입자" /> | ||
| 203 | + | ||
| 204 | + </LinearLayout> | ||
| 205 | + | ||
| 206 | + <LinearLayout | ||
| 207 | + android:layout_width="match_parent" | ||
| 208 | + android:layout_height="match_parent" | ||
| 209 | + android:orientation="horizontal"> | ||
| 210 | + | ||
| 211 | + <ToggleButton | ||
| 212 | + android:id="@+id/pibooyaangjikjaangButton" | ||
| 213 | + android:layout_width="wrap_content" | ||
| 214 | + android:layout_height="wrap_content" | ||
| 215 | + android:layout_weight="1" | ||
| 216 | + android:background="@drawable/profil_selector" | ||
| 217 | + android:text="피부양자(직장)" | ||
| 218 | + android:textOff="피부양자(직장)" | ||
| 219 | + android:textOn="피부양자(직장)" /> | ||
| 220 | + | ||
| 221 | + <ToggleButton | ||
| 222 | + android:id="@+id/pibooyaangjiyeokButton" | ||
| 223 | + android:layout_width="wrap_content" | ||
| 224 | + android:layout_height="wrap_content" | ||
| 225 | + android:layout_weight="1" | ||
| 226 | + android:background="@drawable/profil_selector" | ||
| 227 | + android:text="피부양자(지역)" | ||
| 228 | + android:textOff="피부양자(지역)" | ||
| 229 | + android:textOn="피부양자(지역)" /> | ||
| 230 | + | ||
| 231 | + </LinearLayout> | ||
| 232 | + | ||
| 233 | + | ||
| 234 | + <LinearLayout | ||
| 235 | + android:layout_width="match_parent" | ||
| 236 | + android:layout_height="match_parent" | ||
| 237 | + android:orientation="horizontal"> | ||
| 238 | + | ||
| 239 | + <ToggleButton | ||
| 240 | + android:id="@+id/uieryoButton" | ||
| 241 | + android:layout_width="wrap_content" | ||
| 242 | + android:layout_height="wrap_content" | ||
| 243 | + android:layout_weight="1" | ||
| 244 | + android:background="@drawable/profil_selector" | ||
| 245 | + android:text="의료급여수급건자" | ||
| 246 | + android:textOff="의료급여수급건자" | ||
| 247 | + android:textOn="의료급여수급건자" /> | ||
| 248 | + </LinearLayout> | ||
| 249 | + | ||
| 250 | + | ||
| 251 | + </LinearLayout> | ||
| 252 | + </LinearLayout> | ||
| 253 | + </ScrollView> | ||
| 254 | + | ||
| 255 | + <LinearLayout | ||
| 256 | + android:layout_width="match_parent" | ||
| 257 | + android:layout_height="100dp" | ||
| 258 | + android:layout_weight="1" | ||
| 259 | + android:gravity="center" | ||
| 260 | + android:orientation="vertical"> | ||
| 261 | + | ||
| 262 | + <LinearLayout | ||
| 263 | + android:id="@+id/subLinearLayout" | ||
| 264 | + android:layout_width="match_parent" | ||
| 265 | + android:layout_height="wrap_content" | ||
| 266 | + android:orientation="vertical"> | ||
| 267 | + | ||
| 268 | + <RelativeLayout | ||
| 269 | + android:layout_width="match_parent" | ||
| 270 | + android:layout_height="wrap_content"> | ||
| 271 | + | ||
| 272 | + <TextView | ||
| 273 | + android:id="@+id/explainSubTextView" | ||
| 274 | + android:layout_width="wrap_content" | ||
| 275 | + android:layout_height="wrap_content" | ||
| 276 | + android:layout_centerInParent="true" | ||
| 277 | + android:layout_gravity="center" | ||
| 278 | + android:gravity="center" | ||
| 279 | + android:text="16-1. 매월 납부하는 건강보험료를 입력해주세요." /> | ||
| 280 | + | ||
| 281 | + <Button | ||
| 282 | + android:id="@+id/questionSubButton" | ||
| 283 | + android:layout_width="30dp" | ||
| 284 | + android:layout_height="30dp" | ||
| 285 | + android:layout_gravity="center" | ||
| 286 | + android:layout_toRightOf="@id/explainSubTextView" | ||
| 287 | + android:backgroundTint="#1E90FF" | ||
| 288 | + android:gravity="center" | ||
| 289 | + android:text=" ? " | ||
| 290 | + android:textSize="8sp" /> | ||
| 291 | + </RelativeLayout> | ||
| 292 | + | ||
| 293 | + <LinearLayout | ||
| 294 | + android:layout_width="wrap_content" | ||
| 295 | + android:layout_height="match_parent" | ||
| 296 | + android:layout_gravity="center" | ||
| 297 | + android:orientation="vertical"> | ||
| 298 | + | ||
| 299 | + <TextView | ||
| 300 | + android:id="@+id/textView1" | ||
| 301 | + android:layout_width="match_parent" | ||
| 302 | + android:layout_height="wrap_content" | ||
| 303 | + android:text="건강보험 총 납부액" /> | ||
| 304 | + | ||
| 305 | + <EditText | ||
| 306 | + android:id="@+id/editText1" | ||
| 307 | + android:layout_width="match_parent" | ||
| 308 | + android:layout_height="wrap_content" | ||
| 309 | + android:ems="10" | ||
| 310 | + android:hint="ex)1000000" | ||
| 311 | + android:inputType="textPersonName" /> | ||
| 312 | + | ||
| 313 | + </LinearLayout> | ||
| 314 | + | ||
| 315 | + </LinearLayout> | ||
| 316 | + </LinearLayout> | ||
| 317 | + | ||
| 318 | + <LinearLayout | ||
| 319 | + android:layout_width="match_parent" | ||
| 320 | + android:layout_height="wrap_content" | ||
| 321 | + android:orientation="horizontal"> | ||
| 322 | + | ||
| 323 | + <Button | ||
| 324 | + android:id="@+id/previousButton" | ||
| 325 | + android:layout_width="10dp" | ||
| 326 | + android:layout_height="wrap_content" | ||
| 327 | + android:layout_weight="1" | ||
| 328 | + android:text="이전 단계로" /> | ||
| 329 | + | ||
| 330 | + <Button | ||
| 331 | + android:id="@+id/nextButton" | ||
| 332 | + android:layout_width="10dp" | ||
| 333 | + android:layout_height="wrap_content" | ||
| 334 | + android:layout_weight="1" | ||
| 335 | + android:text="다음 단계로" /> | ||
| 336 | + </LinearLayout> | ||
| 337 | + </LinearLayout> | ||
| 338 | + </LinearLayout> | ||
| 339 | +</androidx.constraintlayout.widget.ConstraintLayout> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 1 | +<?xml version="1.0" encoding="utf-8"?> | ||
| 2 | +<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
| 3 | + xmlns:app="http://schemas.android.com/apk/res-auto" | ||
| 4 | + xmlns:tools="http://schemas.android.com/tools" | ||
| 5 | + android:layout_width="match_parent" | ||
| 6 | + android:layout_height="match_parent" | ||
| 7 | + tools:context=".InputProfilFirstFiveActivity"> | ||
| 8 | + | ||
| 9 | + <LinearLayout | ||
| 10 | + android:layout_width="match_parent" | ||
| 11 | + android:layout_height="match_parent" | ||
| 12 | + android:orientation="vertical"> | ||
| 13 | + | ||
| 14 | + <LinearLayout | ||
| 15 | + android:layout_width="match_parent" | ||
| 16 | + android:layout_height="50dp" | ||
| 17 | + android:layout_weight="0" | ||
| 18 | + android:orientation="horizontal"> | ||
| 19 | + | ||
| 20 | + <TextView | ||
| 21 | + android:id="@+id/stageTextView1" | ||
| 22 | + android:layout_width="wrap_content" | ||
| 23 | + android:layout_height="wrap_content" | ||
| 24 | + android:layout_gravity="center" | ||
| 25 | + android:layout_weight="1" | ||
| 26 | + android:gravity="center" | ||
| 27 | + android:text="1단계" /> | ||
| 28 | + | ||
| 29 | + <TextView | ||
| 30 | + android:id="@+id/neccesaryTextView" | ||
| 31 | + android:layout_width="wrap_content" | ||
| 32 | + android:layout_height="wrap_content" | ||
| 33 | + android:layout_gravity="center" | ||
| 34 | + android:layout_weight="1" | ||
| 35 | + android:gravity="center" | ||
| 36 | + android:text="필수항목" /> | ||
| 37 | + </LinearLayout> | ||
| 38 | + | ||
| 39 | + <LinearLayout | ||
| 40 | + android:layout_width="match_parent" | ||
| 41 | + android:layout_height="10dp" | ||
| 42 | + android:layout_weight="1" | ||
| 43 | + android:orientation="vertical"></LinearLayout> | ||
| 44 | + | ||
| 45 | + <LinearLayout | ||
| 46 | + android:layout_width="match_parent" | ||
| 47 | + android:layout_height="wrap_content" | ||
| 48 | + android:layout_weight="1" | ||
| 49 | + android:orientation="vertical"> | ||
| 50 | + | ||
| 51 | + <LinearLayout | ||
| 52 | + android:layout_width="match_parent" | ||
| 53 | + android:layout_height="wrap_content" | ||
| 54 | + android:orientation="vertical"> | ||
| 55 | + | ||
| 56 | + <TextView | ||
| 57 | + android:id="@+id/explainTextView" | ||
| 58 | + android:layout_width="match_parent" | ||
| 59 | + android:layout_height="wrap_content" | ||
| 60 | + android:layout_gravity="center" | ||
| 61 | + android:gravity="center" | ||
| 62 | + android:text="4. 내/외국인 여부를 선택해주세요." /> | ||
| 63 | + </LinearLayout> | ||
| 64 | + | ||
| 65 | + <LinearLayout | ||
| 66 | + android:layout_width="match_parent" | ||
| 67 | + android:layout_height="50dp" | ||
| 68 | + android:layout_weight="1" | ||
| 69 | + android:orientation="vertical"></LinearLayout> | ||
| 70 | + | ||
| 71 | + <LinearLayout | ||
| 72 | + android:layout_width="wrap_content" | ||
| 73 | + android:layout_height="wrap_content" | ||
| 74 | + android:layout_gravity="center" | ||
| 75 | + android:gravity="center" | ||
| 76 | + android:orientation="vertical"> | ||
| 77 | + | ||
| 78 | + <ToggleButton | ||
| 79 | + android:id="@+id/inmanButton" | ||
| 80 | + android:layout_width="match_parent" | ||
| 81 | + android:layout_height="wrap_content" | ||
| 82 | + android:background="@drawable/profil_selector" | ||
| 83 | + android:text="내국인" | ||
| 84 | + android:textOff="내국인" | ||
| 85 | + android:textOn="내국인" /> | ||
| 86 | + | ||
| 87 | + <ToggleButton | ||
| 88 | + android:id="@+id/outmanButton" | ||
| 89 | + android:layout_width="match_parent" | ||
| 90 | + android:layout_height="wrap_content" | ||
| 91 | + android:background="@drawable/profil_selector" | ||
| 92 | + android:text="외국인" | ||
| 93 | + android:textOff="외국인" | ||
| 94 | + android:textOn="외국인" /> | ||
| 95 | + | ||
| 96 | + </LinearLayout> | ||
| 97 | + | ||
| 98 | + <LinearLayout | ||
| 99 | + android:layout_width="match_parent" | ||
| 100 | + android:layout_height="100dp" | ||
| 101 | + android:layout_weight="1" | ||
| 102 | + android:orientation="vertical"></LinearLayout> | ||
| 103 | + | ||
| 104 | + <LinearLayout | ||
| 105 | + android:layout_width="match_parent" | ||
| 106 | + android:layout_height="wrap_content" | ||
| 107 | + android:orientation="horizontal"> | ||
| 108 | + | ||
| 109 | + <Button | ||
| 110 | + android:id="@+id/previousButton" | ||
| 111 | + android:layout_width="10dp" | ||
| 112 | + android:layout_height="wrap_content" | ||
| 113 | + android:layout_weight="1" | ||
| 114 | + android:text="이전 단계로" /> | ||
| 115 | + | ||
| 116 | + <LinearLayout | ||
| 117 | + android:layout_width="10dp" | ||
| 118 | + android:layout_height="match_parent" | ||
| 119 | + android:layout_weight="1" | ||
| 120 | + android:orientation="vertical"></LinearLayout> | ||
| 121 | + | ||
| 122 | + <Button | ||
| 123 | + android:id="@+id/nextButton" | ||
| 124 | + android:layout_width="10dp" | ||
| 125 | + android:layout_height="wrap_content" | ||
| 126 | + android:layout_weight="1" | ||
| 127 | + android:text="다음 단계로" /> | ||
| 128 | + </LinearLayout> | ||
| 129 | + </LinearLayout> | ||
| 130 | + </LinearLayout> | ||
| 131 | +</androidx.constraintlayout.widget.ConstraintLayout> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 1 | +<?xml version="1.0" encoding="utf-8"?> | ||
| 2 | +<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
| 3 | + xmlns:app="http://schemas.android.com/apk/res-auto" | ||
| 4 | + xmlns:tools="http://schemas.android.com/tools" | ||
| 5 | + android:layout_width="match_parent" | ||
| 6 | + android:layout_height="match_parent" | ||
| 7 | + tools:context=".InputProfilFirstFourActivity"> | ||
| 8 | + | ||
| 9 | + <LinearLayout | ||
| 10 | + android:layout_width="match_parent" | ||
| 11 | + android:layout_height="match_parent" | ||
| 12 | + android:orientation="vertical"> | ||
| 13 | + | ||
| 14 | + <LinearLayout | ||
| 15 | + android:layout_width="match_parent" | ||
| 16 | + android:layout_height="50dp" | ||
| 17 | + android:layout_weight="0" | ||
| 18 | + android:orientation="horizontal"> | ||
| 19 | + | ||
| 20 | + <TextView | ||
| 21 | + android:id="@+id/stageTextView1" | ||
| 22 | + android:layout_width="wrap_content" | ||
| 23 | + android:layout_height="wrap_content" | ||
| 24 | + android:layout_gravity="center" | ||
| 25 | + android:layout_weight="1" | ||
| 26 | + android:gravity="center" | ||
| 27 | + android:text="1단계" /> | ||
| 28 | + | ||
| 29 | + <TextView | ||
| 30 | + android:id="@+id/neccesaryTextView" | ||
| 31 | + android:layout_width="wrap_content" | ||
| 32 | + android:layout_height="wrap_content" | ||
| 33 | + android:layout_gravity="center" | ||
| 34 | + android:layout_weight="1" | ||
| 35 | + android:gravity="center" | ||
| 36 | + android:text="필수항목" /> | ||
| 37 | + </LinearLayout> | ||
| 38 | + | ||
| 39 | + <LinearLayout | ||
| 40 | + android:layout_width="match_parent" | ||
| 41 | + android:layout_height="10dp" | ||
| 42 | + android:layout_weight="1" | ||
| 43 | + android:orientation="vertical"></LinearLayout> | ||
| 44 | + | ||
| 45 | + <LinearLayout | ||
| 46 | + android:layout_width="match_parent" | ||
| 47 | + android:layout_height="wrap_content" | ||
| 48 | + android:layout_weight="1" | ||
| 49 | + android:orientation="vertical"> | ||
| 50 | + | ||
| 51 | + <LinearLayout | ||
| 52 | + android:layout_width="match_parent" | ||
| 53 | + android:layout_height="wrap_content" | ||
| 54 | + android:orientation="vertical"> | ||
| 55 | + | ||
| 56 | + <TextView | ||
| 57 | + android:id="@+id/explainTextView" | ||
| 58 | + android:layout_width="match_parent" | ||
| 59 | + android:layout_height="wrap_content" | ||
| 60 | + android:layout_gravity="center" | ||
| 61 | + android:gravity="center" | ||
| 62 | + android:text="3. 주민등록상 거주지를 선택해 주세요." /> | ||
| 63 | + </LinearLayout> | ||
| 64 | + | ||
| 65 | + <LinearLayout | ||
| 66 | + android:layout_width="match_parent" | ||
| 67 | + android:layout_height="50dp" | ||
| 68 | + android:layout_weight="1" | ||
| 69 | + android:orientation="vertical"></LinearLayout> | ||
| 70 | + | ||
| 71 | + <LinearLayout | ||
| 72 | + android:layout_width="wrap_content" | ||
| 73 | + android:layout_height="wrap_content" | ||
| 74 | + android:layout_gravity="center" | ||
| 75 | + android:gravity="center" | ||
| 76 | + android:orientation="vertical"> | ||
| 77 | + | ||
| 78 | + <TextView | ||
| 79 | + android:id="@+id/doTextView" | ||
| 80 | + android:layout_width="match_parent" | ||
| 81 | + android:layout_height="wrap_content" | ||
| 82 | + android:text="시/도" /> | ||
| 83 | + | ||
| 84 | + <EditText | ||
| 85 | + android:id="@+id/doEditText" | ||
| 86 | + android:layout_width="match_parent" | ||
| 87 | + android:layout_height="wrap_content" | ||
| 88 | + android:ems="10" | ||
| 89 | + android:hint="ex1) 서울시 ex2)경기도" | ||
| 90 | + android:inputType="textPersonName" /> | ||
| 91 | + | ||
| 92 | + <TextView | ||
| 93 | + android:id="@+id/cityTextView" | ||
| 94 | + android:layout_width="match_parent" | ||
| 95 | + android:layout_height="wrap_content" | ||
| 96 | + android:text="시/군/구" /> | ||
| 97 | + | ||
| 98 | + <EditText | ||
| 99 | + android:id="@+id/cityEditText" | ||
| 100 | + android:layout_width="match_parent" | ||
| 101 | + android:layout_height="wrap_content" | ||
| 102 | + android:ems="10" | ||
| 103 | + android:hint="ex) 동대문구" | ||
| 104 | + android:inputType="textPersonName" /> | ||
| 105 | + | ||
| 106 | + <TextView | ||
| 107 | + android:id="@+id/dongTextView" | ||
| 108 | + android:layout_width="match_parent" | ||
| 109 | + android:layout_height="wrap_content" | ||
| 110 | + android:text="읍/면/동" /> | ||
| 111 | + | ||
| 112 | + <EditText | ||
| 113 | + android:id="@+id/dongEditText" | ||
| 114 | + android:layout_width="match_parent" | ||
| 115 | + android:layout_height="wrap_content" | ||
| 116 | + android:ems="10" | ||
| 117 | + android:hint="ex) 회기동" | ||
| 118 | + android:inputType="textPersonName" /> | ||
| 119 | + | ||
| 120 | + </LinearLayout> | ||
| 121 | + | ||
| 122 | + <LinearLayout | ||
| 123 | + android:layout_width="match_parent" | ||
| 124 | + android:layout_height="100dp" | ||
| 125 | + android:layout_weight="1" | ||
| 126 | + android:orientation="vertical"></LinearLayout> | ||
| 127 | + | ||
| 128 | + <LinearLayout | ||
| 129 | + android:layout_width="match_parent" | ||
| 130 | + android:layout_height="wrap_content" | ||
| 131 | + android:orientation="horizontal"> | ||
| 132 | + | ||
| 133 | + <Button | ||
| 134 | + android:id="@+id/previousButton" | ||
| 135 | + android:layout_width="10dp" | ||
| 136 | + android:layout_height="wrap_content" | ||
| 137 | + android:layout_weight="1" | ||
| 138 | + android:text="이전 단계로" /> | ||
| 139 | + | ||
| 140 | + <LinearLayout | ||
| 141 | + android:layout_width="10dp" | ||
| 142 | + android:layout_height="match_parent" | ||
| 143 | + android:layout_weight="1" | ||
| 144 | + android:orientation="vertical"></LinearLayout> | ||
| 145 | + | ||
| 146 | + <Button | ||
| 147 | + android:id="@+id/nextButton" | ||
| 148 | + android:layout_width="10dp" | ||
| 149 | + android:layout_height="wrap_content" | ||
| 150 | + android:layout_weight="1" | ||
| 151 | + android:text="다음 단계로" /> | ||
| 152 | + </LinearLayout> | ||
| 153 | + </LinearLayout> | ||
| 154 | + </LinearLayout> | ||
| 155 | +</androidx.constraintlayout.widget.ConstraintLayout> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 1 | +<?xml version="1.0" encoding="utf-8"?> | ||
| 2 | +<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
| 3 | + xmlns:app="http://schemas.android.com/apk/res-auto" | ||
| 4 | + xmlns:tools="http://schemas.android.com/tools" | ||
| 5 | + android:layout_width="match_parent" | ||
| 6 | + android:layout_height="match_parent" | ||
| 7 | + tools:context=".InputProfilFirstSixActivity"> | ||
| 8 | + | ||
| 9 | + <LinearLayout | ||
| 10 | + android:layout_width="match_parent" | ||
| 11 | + android:layout_height="match_parent" | ||
| 12 | + android:orientation="vertical"> | ||
| 13 | + | ||
| 14 | + <LinearLayout | ||
| 15 | + android:layout_width="match_parent" | ||
| 16 | + android:layout_height="50dp" | ||
| 17 | + android:layout_weight="0" | ||
| 18 | + android:orientation="horizontal"> | ||
| 19 | + | ||
| 20 | + <TextView | ||
| 21 | + android:id="@+id/stageTextView1" | ||
| 22 | + android:layout_width="wrap_content" | ||
| 23 | + android:layout_height="wrap_content" | ||
| 24 | + android:layout_gravity="center" | ||
| 25 | + android:layout_weight="1" | ||
| 26 | + android:gravity="center" | ||
| 27 | + android:text="1단계" /> | ||
| 28 | + | ||
| 29 | + <TextView | ||
| 30 | + android:id="@+id/neccesaryTextView" | ||
| 31 | + android:layout_width="wrap_content" | ||
| 32 | + android:layout_height="wrap_content" | ||
| 33 | + android:layout_gravity="center" | ||
| 34 | + android:layout_weight="1" | ||
| 35 | + android:gravity="center" | ||
| 36 | + android:text="필수항목" /> | ||
| 37 | + </LinearLayout> | ||
| 38 | + | ||
| 39 | + <LinearLayout | ||
| 40 | + android:layout_width="match_parent" | ||
| 41 | + android:layout_height="10dp" | ||
| 42 | + android:layout_weight="1" | ||
| 43 | + android:orientation="vertical"></LinearLayout> | ||
| 44 | + | ||
| 45 | + <LinearLayout | ||
| 46 | + android:layout_width="match_parent" | ||
| 47 | + android:layout_height="wrap_content" | ||
| 48 | + android:layout_weight="1" | ||
| 49 | + android:orientation="vertical"> | ||
| 50 | + | ||
| 51 | + <LinearLayout | ||
| 52 | + android:layout_width="match_parent" | ||
| 53 | + android:layout_height="wrap_content" | ||
| 54 | + android:orientation="vertical"> | ||
| 55 | + | ||
| 56 | + <TextView | ||
| 57 | + android:id="@+id/explainTextView" | ||
| 58 | + android:layout_width="match_parent" | ||
| 59 | + android:layout_height="wrap_content" | ||
| 60 | + android:layout_gravity="center" | ||
| 61 | + android:gravity="center" | ||
| 62 | + android:text="5. 가구주 여부를 선택해 주세요" /> | ||
| 63 | + </LinearLayout> | ||
| 64 | + | ||
| 65 | + <LinearLayout | ||
| 66 | + android:layout_width="match_parent" | ||
| 67 | + android:layout_height="50dp" | ||
| 68 | + android:layout_weight="1" | ||
| 69 | + android:orientation="vertical"></LinearLayout> | ||
| 70 | + | ||
| 71 | + <LinearLayout | ||
| 72 | + android:layout_width="wrap_content" | ||
| 73 | + android:layout_height="wrap_content" | ||
| 74 | + android:layout_gravity="center" | ||
| 75 | + android:gravity="center" | ||
| 76 | + android:orientation="vertical"> | ||
| 77 | + | ||
| 78 | + <ToggleButton | ||
| 79 | + android:id="@+id/inmanButton" | ||
| 80 | + android:layout_width="match_parent" | ||
| 81 | + android:layout_height="wrap_content" | ||
| 82 | + android:background="@drawable/profil_selector" | ||
| 83 | + android:text="가구주" | ||
| 84 | + android:textOff="가구주" | ||
| 85 | + android:textOn="가구주" /> | ||
| 86 | + | ||
| 87 | + <ToggleButton | ||
| 88 | + android:id="@+id/outmanButton" | ||
| 89 | + android:layout_width="match_parent" | ||
| 90 | + android:layout_height="wrap_content" | ||
| 91 | + android:background="@drawable/profil_selector" | ||
| 92 | + android:text="가구원" | ||
| 93 | + android:textOff="가구원" | ||
| 94 | + android:textOn="외국인" /> | ||
| 95 | + | ||
| 96 | + </LinearLayout> | ||
| 97 | + | ||
| 98 | + <LinearLayout | ||
| 99 | + android:layout_width="match_parent" | ||
| 100 | + android:layout_height="100dp" | ||
| 101 | + android:layout_weight="1" | ||
| 102 | + android:orientation="vertical"></LinearLayout> | ||
| 103 | + | ||
| 104 | + <LinearLayout | ||
| 105 | + android:layout_width="match_parent" | ||
| 106 | + android:layout_height="wrap_content" | ||
| 107 | + android:orientation="horizontal"> | ||
| 108 | + | ||
| 109 | + <Button | ||
| 110 | + android:id="@+id/previousButton" | ||
| 111 | + android:layout_width="10dp" | ||
| 112 | + android:layout_height="wrap_content" | ||
| 113 | + android:layout_weight="1" | ||
| 114 | + android:text="이전 단계로" /> | ||
| 115 | + | ||
| 116 | + <LinearLayout | ||
| 117 | + android:layout_width="10dp" | ||
| 118 | + android:layout_height="match_parent" | ||
| 119 | + android:layout_weight="1" | ||
| 120 | + android:orientation="vertical"></LinearLayout> | ||
| 121 | + | ||
| 122 | + <Button | ||
| 123 | + android:id="@+id/nextButton" | ||
| 124 | + android:layout_width="10dp" | ||
| 125 | + android:layout_height="wrap_content" | ||
| 126 | + android:layout_weight="1" | ||
| 127 | + android:text="다음 단계로" /> | ||
| 128 | + </LinearLayout> | ||
| 129 | + </LinearLayout> | ||
| 130 | + </LinearLayout> | ||
| 131 | +</androidx.constraintlayout.widget.ConstraintLayout> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| ... | @@ -18,7 +18,7 @@ | ... | @@ -18,7 +18,7 @@ |
| 18 | android:orientation="horizontal"> | 18 | android:orientation="horizontal"> |
| 19 | 19 | ||
| 20 | <TextView | 20 | <TextView |
| 21 | - android:id="@+id/stageTextView" | 21 | + android:id="@+id/stageTextView1" |
| 22 | android:layout_width="wrap_content" | 22 | android:layout_width="wrap_content" |
| 23 | android:layout_height="wrap_content" | 23 | android:layout_height="wrap_content" |
| 24 | android:layout_gravity="center" | 24 | android:layout_gravity="center" | ... | ... |
| ... | @@ -18,7 +18,7 @@ | ... | @@ -18,7 +18,7 @@ |
| 18 | android:orientation="horizontal"> | 18 | android:orientation="horizontal"> |
| 19 | 19 | ||
| 20 | <TextView | 20 | <TextView |
| 21 | - android:id="@+id/stageTextView" | 21 | + android:id="@+id/stageTextView1" |
| 22 | android:layout_width="wrap_content" | 22 | android:layout_width="wrap_content" |
| 23 | android:layout_height="wrap_content" | 23 | android:layout_height="wrap_content" |
| 24 | android:layout_gravity="center" | 24 | android:layout_gravity="center" | ... | ... |
| 1 | +<?xml version="1.0" encoding="utf-8"?> | ||
| 2 | +<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
| 3 | + xmlns:app="http://schemas.android.com/apk/res-auto" | ||
| 4 | + xmlns:tools="http://schemas.android.com/tools" | ||
| 5 | + android:layout_width="match_parent" | ||
| 6 | + android:layout_height="match_parent" | ||
| 7 | + tools:context=".InputProfilFourthFiveActivity"> | ||
| 8 | + | ||
| 9 | + <LinearLayout | ||
| 10 | + android:layout_width="match_parent" | ||
| 11 | + android:layout_height="match_parent" | ||
| 12 | + android:orientation="vertical"> | ||
| 13 | + | ||
| 14 | + <androidx.appcompat.widget.Toolbar | ||
| 15 | + android:id="@+id/toolbar" | ||
| 16 | + android:layout_width="fill_parent" | ||
| 17 | + android:layout_height="wrap_content" | ||
| 18 | + android:layout_marginBottom="11dp" | ||
| 19 | + android:background="#FFF" | ||
| 20 | + android:elevation="5dp" | ||
| 21 | + android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" | ||
| 22 | + app:popupTheme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> | ||
| 23 | + | ||
| 24 | + <LinearLayout | ||
| 25 | + android:layout_width="match_parent" | ||
| 26 | + android:layout_height="match_parent" | ||
| 27 | + android:orientation="horizontal"> | ||
| 28 | + | ||
| 29 | + <Button | ||
| 30 | + android:id="@+id/skipButton" | ||
| 31 | + android:layout_width="10dp" | ||
| 32 | + android:layout_height="match_parent" | ||
| 33 | + android:layout_weight="1.5" | ||
| 34 | + android:text="건너뛰기"/> | ||
| 35 | + <LinearLayout | ||
| 36 | + android:layout_width="10dp" | ||
| 37 | + android:layout_height="match_parent" | ||
| 38 | + android:orientation="horizontal" | ||
| 39 | + android:layout_weight="1"/> | ||
| 40 | + <ImageView | ||
| 41 | + android:layout_width="77dp" | ||
| 42 | + android:layout_height="44dp" | ||
| 43 | + android:layout_gravity="center" | ||
| 44 | + android:layout_weight="1" | ||
| 45 | + android:src="@drawable/toolbar_logo" /> | ||
| 46 | + <LinearLayout | ||
| 47 | + android:layout_width="10dp" | ||
| 48 | + android:layout_height="match_parent" | ||
| 49 | + android:orientation="horizontal" | ||
| 50 | + android:layout_weight="1"/> | ||
| 51 | + <LinearLayout | ||
| 52 | + android:layout_width="10dp" | ||
| 53 | + android:layout_height="match_parent" | ||
| 54 | + android:orientation="horizontal" | ||
| 55 | + android:layout_weight="1.5"/> | ||
| 56 | + | ||
| 57 | + </LinearLayout> | ||
| 58 | + | ||
| 59 | + | ||
| 60 | + </androidx.appcompat.widget.Toolbar> | ||
| 61 | + | ||
| 62 | + <LinearLayout | ||
| 63 | + android:layout_width="match_parent" | ||
| 64 | + android:layout_height="50dp" | ||
| 65 | + android:layout_weight="0" | ||
| 66 | + android:orientation="horizontal"> | ||
| 67 | + | ||
| 68 | + <TextView | ||
| 69 | + android:id="@+id/stageTextView1" | ||
| 70 | + android:layout_width="wrap_content" | ||
| 71 | + android:layout_height="match_parent" | ||
| 72 | + android:layout_gravity="center" | ||
| 73 | + android:layout_weight="1" | ||
| 74 | + android:background="#1E90FF" | ||
| 75 | + android:gravity="center" | ||
| 76 | + android:text="1" /> | ||
| 77 | + | ||
| 78 | + <TextView | ||
| 79 | + android:id="@+id/stageTextView2" | ||
| 80 | + android:layout_width="wrap_content" | ||
| 81 | + android:layout_height="match_parent" | ||
| 82 | + android:layout_gravity="center" | ||
| 83 | + android:layout_weight="1" | ||
| 84 | + android:background="#1E90FF" | ||
| 85 | + android:gravity="center" | ||
| 86 | + android:text="2" /> | ||
| 87 | + | ||
| 88 | + <TextView | ||
| 89 | + android:id="@+id/stageTextView3" | ||
| 90 | + android:layout_width="wrap_content" | ||
| 91 | + android:layout_height="match_parent" | ||
| 92 | + android:layout_gravity="center" | ||
| 93 | + android:layout_weight="1" | ||
| 94 | + android:background="#1E90FF" | ||
| 95 | + android:gravity="center" | ||
| 96 | + android:text="3" /> | ||
| 97 | + | ||
| 98 | + <TextView | ||
| 99 | + android:id="@+id/stageTextView4" | ||
| 100 | + android:layout_width="wrap_content" | ||
| 101 | + android:layout_height="match_parent" | ||
| 102 | + android:layout_gravity="center" | ||
| 103 | + android:layout_weight="1" | ||
| 104 | + android:background="#1E90FF" | ||
| 105 | + android:gravity="center" | ||
| 106 | + android:text="4" /> | ||
| 107 | + | ||
| 108 | + <TextView | ||
| 109 | + android:id="@+id/stageTextView5" | ||
| 110 | + android:layout_width="wrap_content" | ||
| 111 | + android:layout_height="match_parent" | ||
| 112 | + android:layout_gravity="center" | ||
| 113 | + android:layout_weight="1" | ||
| 114 | + android:gravity="center" | ||
| 115 | + android:text="5" /> | ||
| 116 | + | ||
| 117 | + </LinearLayout> | ||
| 118 | + | ||
| 119 | + <LinearLayout | ||
| 120 | + android:layout_width="match_parent" | ||
| 121 | + android:layout_height="10dp" | ||
| 122 | + android:layout_weight="1" | ||
| 123 | + android:orientation="vertical"></LinearLayout> | ||
| 124 | + | ||
| 125 | + <LinearLayout | ||
| 126 | + android:layout_width="match_parent" | ||
| 127 | + android:layout_height="wrap_content" | ||
| 128 | + android:layout_weight="1" | ||
| 129 | + android:orientation="vertical"> | ||
| 130 | + | ||
| 131 | + <LinearLayout | ||
| 132 | + android:layout_width="match_parent" | ||
| 133 | + android:layout_height="wrap_content" | ||
| 134 | + android:orientation="vertical"> | ||
| 135 | + | ||
| 136 | + <RelativeLayout | ||
| 137 | + android:layout_width="match_parent" | ||
| 138 | + android:layout_height="match_parent"> | ||
| 139 | + | ||
| 140 | + <TextView | ||
| 141 | + android:id="@+id/explainTextView" | ||
| 142 | + android:layout_width="wrap_content" | ||
| 143 | + android:layout_height="wrap_content" | ||
| 144 | + android:layout_centerInParent="true" | ||
| 145 | + android:layout_gravity="center" | ||
| 146 | + android:gravity="center" | ||
| 147 | + android:text="14. 자신을 포함한 가구구성원의 [피해 상황]을 모두 선택해주세요." /> | ||
| 148 | + | ||
| 149 | + <Button | ||
| 150 | + android:id="@+id/questionButton" | ||
| 151 | + android:layout_width="30dp" | ||
| 152 | + android:layout_height="30dp" | ||
| 153 | + android:layout_gravity="center" | ||
| 154 | + android:layout_toRightOf="@id/explainTextView" | ||
| 155 | + android:backgroundTint="#1E90FF" | ||
| 156 | + android:gravity="center" | ||
| 157 | + android:text=" ? " | ||
| 158 | + android:textSize="8sp" /> | ||
| 159 | + </RelativeLayout> | ||
| 160 | + </LinearLayout> | ||
| 161 | + | ||
| 162 | + <LinearLayout | ||
| 163 | + android:layout_width="match_parent" | ||
| 164 | + android:layout_height="50dp" | ||
| 165 | + android:layout_weight="1" | ||
| 166 | + android:orientation="vertical"> | ||
| 167 | + | ||
| 168 | + </LinearLayout> | ||
| 169 | + | ||
| 170 | + <ScrollView | ||
| 171 | + android:layout_width="match_parent" | ||
| 172 | + android:layout_height="wrap_content"> | ||
| 173 | + | ||
| 174 | + <LinearLayout | ||
| 175 | + android:layout_width="match_parent" | ||
| 176 | + android:layout_height="wrap_content" | ||
| 177 | + android:orientation="vertical"> | ||
| 178 | + | ||
| 179 | + <LinearLayout | ||
| 180 | + android:layout_width="wrap_content" | ||
| 181 | + android:layout_height="wrap_content" | ||
| 182 | + android:layout_gravity="center" | ||
| 183 | + android:gravity="center" | ||
| 184 | + android:orientation="vertical"> | ||
| 185 | + | ||
| 186 | + <LinearLayout | ||
| 187 | + android:layout_width="match_parent" | ||
| 188 | + android:layout_height="match_parent" | ||
| 189 | + android:orientation="horizontal"> | ||
| 190 | + | ||
| 191 | + <ToggleButton | ||
| 192 | + android:id="@+id/nothingButton" | ||
| 193 | + android:layout_width="wrap_content" | ||
| 194 | + android:layout_height="wrap_content" | ||
| 195 | + android:layout_weight="1" | ||
| 196 | + android:background="@drawable/profil_selector" | ||
| 197 | + android:text="해당없음" | ||
| 198 | + android:textOff="해당없음" | ||
| 199 | + android:textOn="해당없음" /> | ||
| 200 | + | ||
| 201 | + <ToggleButton | ||
| 202 | + android:id="@+id/iljaeButton" | ||
| 203 | + android:layout_width="wrap_content" | ||
| 204 | + android:layout_height="wrap_content" | ||
| 205 | + android:layout_weight="1" | ||
| 206 | + android:background="@drawable/profil_selector" | ||
| 207 | + android:text="일제강점기피해자" | ||
| 208 | + android:textOff="일제강점기피해자" | ||
| 209 | + android:textOn="일제강점기피해자" /> | ||
| 210 | + | ||
| 211 | + </LinearLayout> | ||
| 212 | + | ||
| 213 | + <LinearLayout | ||
| 214 | + android:layout_width="match_parent" | ||
| 215 | + android:layout_height="match_parent" | ||
| 216 | + android:orientation="horizontal"> | ||
| 217 | + | ||
| 218 | + <ToggleButton | ||
| 219 | + android:id="@+id/specialpihaeButton" | ||
| 220 | + android:layout_width="wrap_content" | ||
| 221 | + android:layout_height="wrap_content" | ||
| 222 | + android:layout_weight="1" | ||
| 223 | + android:background="@drawable/profil_selector" | ||
| 224 | + android:text="특수상황피해자" | ||
| 225 | + android:textOff="특수상황피해자" | ||
| 226 | + android:textOn="특수상황피해자" /> | ||
| 227 | + | ||
| 228 | + <ToggleButton | ||
| 229 | + android:id="@+id/sanuppihaeButton" | ||
| 230 | + android:layout_width="wrap_content" | ||
| 231 | + android:layout_height="wrap_content" | ||
| 232 | + android:layout_weight="1" | ||
| 233 | + android:background="@drawable/profil_selector" | ||
| 234 | + android:text="산업재해피해자/가족" | ||
| 235 | + android:textOff="산업재해피해자/가족" | ||
| 236 | + android:textOn="산업재해피해자/가족" /> | ||
| 237 | + | ||
| 238 | + </LinearLayout> | ||
| 239 | + | ||
| 240 | + | ||
| 241 | + <LinearLayout | ||
| 242 | + android:layout_width="match_parent" | ||
| 243 | + android:layout_height="match_parent" | ||
| 244 | + android:orientation="horizontal"> | ||
| 245 | + | ||
| 246 | + <ToggleButton | ||
| 247 | + android:id="@+id/guitarButton" | ||
| 248 | + android:layout_width="wrap_content" | ||
| 249 | + android:layout_height="wrap_content" | ||
| 250 | + android:layout_weight="1" | ||
| 251 | + android:background="@drawable/profil_selector" | ||
| 252 | + android:text="기타피해상황" | ||
| 253 | + android:textOff="기타피해상황" | ||
| 254 | + android:textOn="기타피해상황" /> | ||
| 255 | + </LinearLayout> | ||
| 256 | + | ||
| 257 | + | ||
| 258 | + </LinearLayout> | ||
| 259 | + </LinearLayout> | ||
| 260 | + </ScrollView> | ||
| 261 | + | ||
| 262 | + <LinearLayout | ||
| 263 | + android:layout_width="match_parent" | ||
| 264 | + android:layout_height="100dp" | ||
| 265 | + android:layout_weight="1" | ||
| 266 | + android:orientation="vertical"></LinearLayout> | ||
| 267 | + | ||
| 268 | + <LinearLayout | ||
| 269 | + android:layout_width="match_parent" | ||
| 270 | + android:layout_height="wrap_content" | ||
| 271 | + android:orientation="horizontal"> | ||
| 272 | + | ||
| 273 | + <Button | ||
| 274 | + android:id="@+id/previousButton" | ||
| 275 | + android:layout_width="10dp" | ||
| 276 | + android:layout_height="wrap_content" | ||
| 277 | + android:layout_weight="1" | ||
| 278 | + android:text="이전 단계로" /> | ||
| 279 | + | ||
| 280 | + <Button | ||
| 281 | + android:id="@+id/nextButton" | ||
| 282 | + android:layout_width="10dp" | ||
| 283 | + android:layout_height="wrap_content" | ||
| 284 | + android:layout_weight="1" | ||
| 285 | + android:text="다음 단계로" /> | ||
| 286 | + </LinearLayout> | ||
| 287 | + </LinearLayout> | ||
| 288 | + </LinearLayout> | ||
| 289 | +</androidx.constraintlayout.widget.ConstraintLayout> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 1 | +<?xml version="1.0" encoding="utf-8"?> | ||
| 2 | +<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
| 3 | + xmlns:app="http://schemas.android.com/apk/res-auto" | ||
| 4 | + xmlns:tools="http://schemas.android.com/tools" | ||
| 5 | + android:layout_width="match_parent" | ||
| 6 | + android:layout_height="match_parent" | ||
| 7 | + tools:context=".InputProfilFourthFourActivity"> | ||
| 8 | + | ||
| 9 | + <LinearLayout | ||
| 10 | + android:layout_width="match_parent" | ||
| 11 | + android:layout_height="match_parent" | ||
| 12 | + android:orientation="vertical"> | ||
| 13 | + | ||
| 14 | + <androidx.appcompat.widget.Toolbar | ||
| 15 | + android:id="@+id/toolbar" | ||
| 16 | + android:layout_width="fill_parent" | ||
| 17 | + android:layout_height="wrap_content" | ||
| 18 | + android:layout_marginBottom="11dp" | ||
| 19 | + android:background="#FFF" | ||
| 20 | + android:elevation="5dp" | ||
| 21 | + android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" | ||
| 22 | + app:popupTheme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> | ||
| 23 | + | ||
| 24 | + <LinearLayout | ||
| 25 | + android:layout_width="match_parent" | ||
| 26 | + android:layout_height="match_parent" | ||
| 27 | + android:orientation="horizontal"> | ||
| 28 | + | ||
| 29 | + <Button | ||
| 30 | + android:id="@+id/skipButton" | ||
| 31 | + android:layout_width="10dp" | ||
| 32 | + android:layout_height="match_parent" | ||
| 33 | + android:layout_weight="1.5" | ||
| 34 | + android:text="건너뛰기"/> | ||
| 35 | + <LinearLayout | ||
| 36 | + android:layout_width="10dp" | ||
| 37 | + android:layout_height="match_parent" | ||
| 38 | + android:orientation="horizontal" | ||
| 39 | + android:layout_weight="1"/> | ||
| 40 | + <ImageView | ||
| 41 | + android:layout_width="77dp" | ||
| 42 | + android:layout_height="44dp" | ||
| 43 | + android:layout_gravity="center" | ||
| 44 | + android:layout_weight="1" | ||
| 45 | + android:src="@drawable/toolbar_logo" /> | ||
| 46 | + <LinearLayout | ||
| 47 | + android:layout_width="10dp" | ||
| 48 | + android:layout_height="match_parent" | ||
| 49 | + android:orientation="horizontal" | ||
| 50 | + android:layout_weight="1"/> | ||
| 51 | + <LinearLayout | ||
| 52 | + android:layout_width="10dp" | ||
| 53 | + android:layout_height="match_parent" | ||
| 54 | + android:orientation="horizontal" | ||
| 55 | + android:layout_weight="1.5"/> | ||
| 56 | + | ||
| 57 | + </LinearLayout> | ||
| 58 | + | ||
| 59 | + | ||
| 60 | + </androidx.appcompat.widget.Toolbar> | ||
| 61 | + | ||
| 62 | + <LinearLayout | ||
| 63 | + android:layout_width="match_parent" | ||
| 64 | + android:layout_height="50dp" | ||
| 65 | + android:layout_weight="0" | ||
| 66 | + android:orientation="horizontal"> | ||
| 67 | + | ||
| 68 | + <TextView | ||
| 69 | + android:id="@+id/stageTextView1" | ||
| 70 | + android:layout_width="wrap_content" | ||
| 71 | + android:layout_height="match_parent" | ||
| 72 | + android:layout_gravity="center" | ||
| 73 | + android:layout_weight="1" | ||
| 74 | + android:background="#1E90FF" | ||
| 75 | + android:gravity="center" | ||
| 76 | + android:text="1" /> | ||
| 77 | + | ||
| 78 | + <TextView | ||
| 79 | + android:id="@+id/stageTextView2" | ||
| 80 | + android:layout_width="wrap_content" | ||
| 81 | + android:layout_height="match_parent" | ||
| 82 | + android:layout_gravity="center" | ||
| 83 | + android:layout_weight="1" | ||
| 84 | + android:background="#1E90FF" | ||
| 85 | + android:gravity="center" | ||
| 86 | + android:text="2" /> | ||
| 87 | + | ||
| 88 | + <TextView | ||
| 89 | + android:id="@+id/stageTextView3" | ||
| 90 | + android:layout_width="wrap_content" | ||
| 91 | + android:layout_height="match_parent" | ||
| 92 | + android:layout_gravity="center" | ||
| 93 | + android:layout_weight="1" | ||
| 94 | + android:background="#1E90FF" | ||
| 95 | + android:gravity="center" | ||
| 96 | + android:text="3" /> | ||
| 97 | + | ||
| 98 | + <TextView | ||
| 99 | + android:id="@+id/stageTextView4" | ||
| 100 | + android:layout_width="wrap_content" | ||
| 101 | + android:layout_height="match_parent" | ||
| 102 | + android:layout_gravity="center" | ||
| 103 | + android:layout_weight="1" | ||
| 104 | + android:background="#1E90FF" | ||
| 105 | + android:gravity="center" | ||
| 106 | + android:text="4" /> | ||
| 107 | + | ||
| 108 | + <TextView | ||
| 109 | + android:id="@+id/stageTextView5" | ||
| 110 | + android:layout_width="wrap_content" | ||
| 111 | + android:layout_height="match_parent" | ||
| 112 | + android:layout_gravity="center" | ||
| 113 | + android:layout_weight="1" | ||
| 114 | + android:gravity="center" | ||
| 115 | + android:text="5" /> | ||
| 116 | + | ||
| 117 | + </LinearLayout> | ||
| 118 | + | ||
| 119 | + <LinearLayout | ||
| 120 | + android:layout_width="match_parent" | ||
| 121 | + android:layout_height="10dp" | ||
| 122 | + android:layout_weight="1" | ||
| 123 | + android:orientation="vertical"></LinearLayout> | ||
| 124 | + | ||
| 125 | + <LinearLayout | ||
| 126 | + android:layout_width="match_parent" | ||
| 127 | + android:layout_height="wrap_content" | ||
| 128 | + android:layout_weight="1" | ||
| 129 | + android:orientation="vertical"> | ||
| 130 | + | ||
| 131 | + <LinearLayout | ||
| 132 | + android:layout_width="match_parent" | ||
| 133 | + android:layout_height="wrap_content" | ||
| 134 | + android:orientation="vertical"> | ||
| 135 | + | ||
| 136 | + <RelativeLayout | ||
| 137 | + android:layout_width="match_parent" | ||
| 138 | + android:layout_height="match_parent"> | ||
| 139 | + | ||
| 140 | + <TextView | ||
| 141 | + android:id="@+id/explainTextView" | ||
| 142 | + android:layout_width="wrap_content" | ||
| 143 | + android:layout_height="wrap_content" | ||
| 144 | + android:layout_centerInParent="true" | ||
| 145 | + android:layout_gravity="center" | ||
| 146 | + android:gravity="center" | ||
| 147 | + android:text="13. 자신을 포함한 가구구성원의 [위기 상황]을 모두 선택해주세요." /> | ||
| 148 | + | ||
| 149 | + <Button | ||
| 150 | + android:id="@+id/questionButton" | ||
| 151 | + android:layout_width="30dp" | ||
| 152 | + android:layout_height="30dp" | ||
| 153 | + android:layout_gravity="center" | ||
| 154 | + android:layout_toRightOf="@id/explainTextView" | ||
| 155 | + android:backgroundTint="#1E90FF" | ||
| 156 | + android:gravity="center" | ||
| 157 | + android:text=" ? " | ||
| 158 | + android:textSize="8sp" /> | ||
| 159 | + </RelativeLayout> | ||
| 160 | + </LinearLayout> | ||
| 161 | + | ||
| 162 | + <LinearLayout | ||
| 163 | + android:layout_width="match_parent" | ||
| 164 | + android:layout_height="50dp" | ||
| 165 | + android:layout_weight="1" | ||
| 166 | + android:orientation="vertical"> | ||
| 167 | + | ||
| 168 | + </LinearLayout> | ||
| 169 | + | ||
| 170 | + <ScrollView | ||
| 171 | + android:layout_width="match_parent" | ||
| 172 | + android:layout_height="wrap_content"> | ||
| 173 | + | ||
| 174 | + <LinearLayout | ||
| 175 | + android:layout_width="match_parent" | ||
| 176 | + android:layout_height="wrap_content" | ||
| 177 | + android:orientation="vertical"> | ||
| 178 | + | ||
| 179 | + <LinearLayout | ||
| 180 | + android:layout_width="wrap_content" | ||
| 181 | + android:layout_height="wrap_content" | ||
| 182 | + android:layout_gravity="center" | ||
| 183 | + android:gravity="center" | ||
| 184 | + android:orientation="vertical"> | ||
| 185 | + | ||
| 186 | + <LinearLayout | ||
| 187 | + android:layout_width="match_parent" | ||
| 188 | + android:layout_height="match_parent" | ||
| 189 | + android:orientation="horizontal"> | ||
| 190 | + | ||
| 191 | + <ToggleButton | ||
| 192 | + android:id="@+id/nothingButton" | ||
| 193 | + android:layout_width="wrap_content" | ||
| 194 | + android:layout_height="wrap_content" | ||
| 195 | + android:layout_weight="1" | ||
| 196 | + android:background="@drawable/profil_selector" | ||
| 197 | + android:text="해당없음" | ||
| 198 | + android:textOff="해당없음" | ||
| 199 | + android:textOn="해당없음" /> | ||
| 200 | + | ||
| 201 | + <ToggleButton | ||
| 202 | + android:id="@+id/pokryukButton" | ||
| 203 | + android:layout_width="wrap_content" | ||
| 204 | + android:layout_height="wrap_content" | ||
| 205 | + android:layout_weight="1" | ||
| 206 | + android:background="@drawable/profil_selector" | ||
| 207 | + android:text="폭력" | ||
| 208 | + android:textOff="폭력" | ||
| 209 | + android:textOn="폭력" /> | ||
| 210 | + | ||
| 211 | + <ToggleButton | ||
| 212 | + android:id="@+id/pihaeButton" | ||
| 213 | + android:layout_width="wrap_content" | ||
| 214 | + android:layout_height="wrap_content" | ||
| 215 | + android:layout_weight="1" | ||
| 216 | + android:background="@drawable/profil_selector" | ||
| 217 | + android:text="피해/학대" | ||
| 218 | + android:textOff="피해/학대" | ||
| 219 | + android:textOn="피해/학대" /> | ||
| 220 | + | ||
| 221 | + </LinearLayout> | ||
| 222 | + | ||
| 223 | + <LinearLayout | ||
| 224 | + android:layout_width="match_parent" | ||
| 225 | + android:layout_height="match_parent" | ||
| 226 | + android:orientation="horizontal"> | ||
| 227 | + | ||
| 228 | + <ToggleButton | ||
| 229 | + android:id="@+id/kachoolButton" | ||
| 230 | + android:layout_width="wrap_content" | ||
| 231 | + android:layout_height="wrap_content" | ||
| 232 | + android:layout_weight="1" | ||
| 233 | + android:background="@drawable/profil_selector" | ||
| 234 | + android:text="가출/실종/사망" | ||
| 235 | + android:textOff="가출/실종/사망" | ||
| 236 | + android:textOn="가출/실종/사망" /> | ||
| 237 | + | ||
| 238 | + <ToggleButton | ||
| 239 | + android:id="@+id/sagoButton" | ||
| 240 | + android:layout_width="wrap_content" | ||
| 241 | + android:layout_height="wrap_content" | ||
| 242 | + android:layout_weight="1" | ||
| 243 | + android:background="@drawable/profil_selector" | ||
| 244 | + android:text="사고" | ||
| 245 | + android:textOff="사고" | ||
| 246 | + android:textOn="사고" /> | ||
| 247 | + | ||
| 248 | + <ToggleButton | ||
| 249 | + android:id="@+id/ihonButton" | ||
| 250 | + android:layout_width="wrap_content" | ||
| 251 | + android:layout_height="wrap_content" | ||
| 252 | + android:layout_weight="1" | ||
| 253 | + android:background="@drawable/profil_selector" | ||
| 254 | + android:text="이혼(예정)" | ||
| 255 | + android:textOff="이혼(예정)" | ||
| 256 | + android:textOn="이혼(예정)" /> | ||
| 257 | + </LinearLayout> | ||
| 258 | + | ||
| 259 | + | ||
| 260 | + <LinearLayout | ||
| 261 | + android:layout_width="match_parent" | ||
| 262 | + android:layout_height="match_parent" | ||
| 263 | + android:orientation="horizontal"> | ||
| 264 | + | ||
| 265 | + <ToggleButton | ||
| 266 | + android:id="@+id/jaehaeButton" | ||
| 267 | + android:layout_width="wrap_content" | ||
| 268 | + android:layout_height="wrap_content" | ||
| 269 | + android:layout_weight="1" | ||
| 270 | + android:background="@drawable/profil_selector" | ||
| 271 | + android:text="재해" | ||
| 272 | + android:textOff="재해" | ||
| 273 | + android:textOn="재해" /> | ||
| 274 | + | ||
| 275 | + <ToggleButton | ||
| 276 | + android:id="@+id/hakkyobaakButton" | ||
| 277 | + android:layout_width="wrap_content" | ||
| 278 | + android:layout_height="wrap_content" | ||
| 279 | + android:layout_weight="1" | ||
| 280 | + android:background="@drawable/profil_selector" | ||
| 281 | + android:text="학교밖청소년" | ||
| 282 | + android:textOff="학교밖청소년" | ||
| 283 | + android:textOn="학교밖청소년" /> | ||
| 284 | + | ||
| 285 | + <ToggleButton | ||
| 286 | + android:id="@+id/siljikButton" | ||
| 287 | + android:layout_width="wrap_content" | ||
| 288 | + android:layout_height="wrap_content" | ||
| 289 | + android:layout_weight="1" | ||
| 290 | + android:background="@drawable/profil_selector" | ||
| 291 | + android:text="실직" | ||
| 292 | + android:textOff="실직" | ||
| 293 | + android:textOn="실직" /> | ||
| 294 | + </LinearLayout> | ||
| 295 | + | ||
| 296 | + <LinearLayout | ||
| 297 | + android:layout_width="match_parent" | ||
| 298 | + android:layout_height="match_parent" | ||
| 299 | + android:orientation="horizontal"> | ||
| 300 | + | ||
| 301 | + <ToggleButton | ||
| 302 | + android:id="@+id/guitarButton" | ||
| 303 | + android:layout_width="wrap_content" | ||
| 304 | + android:layout_height="wrap_content" | ||
| 305 | + android:layout_weight="1" | ||
| 306 | + android:background="@drawable/profil_selector" | ||
| 307 | + android:text="기타" | ||
| 308 | + android:textOff="기타" | ||
| 309 | + android:textOn="기타" /> | ||
| 310 | + </LinearLayout> | ||
| 311 | + | ||
| 312 | + | ||
| 313 | + </LinearLayout> | ||
| 314 | + </LinearLayout> | ||
| 315 | + </ScrollView> | ||
| 316 | + | ||
| 317 | + <LinearLayout | ||
| 318 | + android:layout_width="match_parent" | ||
| 319 | + android:layout_height="100dp" | ||
| 320 | + android:layout_weight="1" | ||
| 321 | + android:orientation="vertical"></LinearLayout> | ||
| 322 | + | ||
| 323 | + <LinearLayout | ||
| 324 | + android:layout_width="match_parent" | ||
| 325 | + android:layout_height="wrap_content" | ||
| 326 | + android:orientation="horizontal"> | ||
| 327 | + | ||
| 328 | + <Button | ||
| 329 | + android:id="@+id/previousButton" | ||
| 330 | + android:layout_width="10dp" | ||
| 331 | + android:layout_height="wrap_content" | ||
| 332 | + android:layout_weight="1" | ||
| 333 | + android:text="이전 단계로" /> | ||
| 334 | + | ||
| 335 | + <Button | ||
| 336 | + android:id="@+id/nextButton" | ||
| 337 | + android:layout_width="10dp" | ||
| 338 | + android:layout_height="wrap_content" | ||
| 339 | + android:layout_weight="1" | ||
| 340 | + android:text="다음 단계로" /> | ||
| 341 | + </LinearLayout> | ||
| 342 | + </LinearLayout> | ||
| 343 | + </LinearLayout> | ||
| 344 | +</androidx.constraintlayout.widget.ConstraintLayout> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 1 | +<?xml version="1.0" encoding="utf-8"?> | ||
| 2 | +<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
| 3 | + xmlns:app="http://schemas.android.com/apk/res-auto" | ||
| 4 | + xmlns:tools="http://schemas.android.com/tools" | ||
| 5 | + android:layout_width="match_parent" | ||
| 6 | + android:layout_height="match_parent" | ||
| 7 | + tools:context=".InputProfilFourthOneActivity"> | ||
| 8 | + | ||
| 9 | + <LinearLayout | ||
| 10 | + android:layout_width="match_parent" | ||
| 11 | + android:layout_height="match_parent" | ||
| 12 | + android:orientation="vertical"> | ||
| 13 | + | ||
| 14 | + <androidx.appcompat.widget.Toolbar | ||
| 15 | + android:id="@+id/toolbar" | ||
| 16 | + android:layout_width="fill_parent" | ||
| 17 | + android:layout_height="wrap_content" | ||
| 18 | + android:layout_marginBottom="11dp" | ||
| 19 | + android:background="#FFF" | ||
| 20 | + android:elevation="5dp" | ||
| 21 | + android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" | ||
| 22 | + app:popupTheme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> | ||
| 23 | + | ||
| 24 | + <LinearLayout | ||
| 25 | + android:layout_width="match_parent" | ||
| 26 | + android:layout_height="match_parent" | ||
| 27 | + android:orientation="horizontal"> | ||
| 28 | + | ||
| 29 | + <Button | ||
| 30 | + android:id="@+id/skipButton" | ||
| 31 | + android:layout_width="10dp" | ||
| 32 | + android:layout_height="match_parent" | ||
| 33 | + android:layout_weight="1.5" | ||
| 34 | + android:text="건너뛰기"/> | ||
| 35 | + <LinearLayout | ||
| 36 | + android:layout_width="10dp" | ||
| 37 | + android:layout_height="match_parent" | ||
| 38 | + android:orientation="horizontal" | ||
| 39 | + android:layout_weight="1"/> | ||
| 40 | + <ImageView | ||
| 41 | + android:layout_width="77dp" | ||
| 42 | + android:layout_height="44dp" | ||
| 43 | + android:layout_gravity="center" | ||
| 44 | + android:layout_weight="1" | ||
| 45 | + android:src="@drawable/toolbar_logo" /> | ||
| 46 | + <LinearLayout | ||
| 47 | + android:layout_width="10dp" | ||
| 48 | + android:layout_height="match_parent" | ||
| 49 | + android:orientation="horizontal" | ||
| 50 | + android:layout_weight="1"/> | ||
| 51 | + <LinearLayout | ||
| 52 | + android:layout_width="10dp" | ||
| 53 | + android:layout_height="match_parent" | ||
| 54 | + android:orientation="horizontal" | ||
| 55 | + android:layout_weight="1.5"/> | ||
| 56 | + | ||
| 57 | + </LinearLayout> | ||
| 58 | + | ||
| 59 | + | ||
| 60 | + </androidx.appcompat.widget.Toolbar> | ||
| 61 | + | ||
| 62 | + <LinearLayout | ||
| 63 | + android:layout_width="match_parent" | ||
| 64 | + android:layout_height="50dp" | ||
| 65 | + android:layout_weight="0" | ||
| 66 | + android:orientation="horizontal"> | ||
| 67 | + | ||
| 68 | + <TextView | ||
| 69 | + android:id="@+id/stageTextView1" | ||
| 70 | + android:layout_width="wrap_content" | ||
| 71 | + android:layout_height="match_parent" | ||
| 72 | + android:layout_gravity="center" | ||
| 73 | + android:layout_weight="1" | ||
| 74 | + android:background="#1E90FF" | ||
| 75 | + android:gravity="center" | ||
| 76 | + android:text="1" /> | ||
| 77 | + | ||
| 78 | + <TextView | ||
| 79 | + android:id="@+id/stageTextView2" | ||
| 80 | + android:layout_width="wrap_content" | ||
| 81 | + android:layout_height="match_parent" | ||
| 82 | + android:layout_gravity="center" | ||
| 83 | + android:layout_weight="1" | ||
| 84 | + android:background="#1E90FF" | ||
| 85 | + android:gravity="center" | ||
| 86 | + android:text="2" /> | ||
| 87 | + | ||
| 88 | + <TextView | ||
| 89 | + android:id="@+id/stageTextView3" | ||
| 90 | + android:layout_width="wrap_content" | ||
| 91 | + android:layout_height="match_parent" | ||
| 92 | + android:layout_gravity="center" | ||
| 93 | + android:layout_weight="1" | ||
| 94 | + | ||
| 95 | + android:background="#1E90FF" | ||
| 96 | + android:gravity="center" | ||
| 97 | + android:text="3" /> | ||
| 98 | + | ||
| 99 | + <TextView | ||
| 100 | + android:id="@+id/stageTextView4" | ||
| 101 | + android:layout_width="wrap_content" | ||
| 102 | + android:layout_height="match_parent" | ||
| 103 | + android:layout_gravity="center" | ||
| 104 | + android:layout_weight="1" | ||
| 105 | + android:background="#1E90FF" | ||
| 106 | + android:gravity="center" | ||
| 107 | + android:text="4" /> | ||
| 108 | + | ||
| 109 | + <TextView | ||
| 110 | + android:id="@+id/stageTextView5" | ||
| 111 | + android:layout_width="wrap_content" | ||
| 112 | + android:layout_height="match_parent" | ||
| 113 | + android:layout_gravity="center" | ||
| 114 | + android:layout_weight="1" | ||
| 115 | + android:gravity="center" | ||
| 116 | + android:text="5" /> | ||
| 117 | + | ||
| 118 | + </LinearLayout> | ||
| 119 | + | ||
| 120 | + <LinearLayout | ||
| 121 | + android:layout_width="match_parent" | ||
| 122 | + android:layout_height="wrap_content" | ||
| 123 | + android:layout_weight="1" | ||
| 124 | + android:orientation="vertical"> | ||
| 125 | + | ||
| 126 | + <ScrollView | ||
| 127 | + android:layout_width="match_parent" | ||
| 128 | + android:layout_height="match_parent" | ||
| 129 | + android:layout_weight="1"> | ||
| 130 | + | ||
| 131 | + <LinearLayout | ||
| 132 | + android:layout_width="match_parent" | ||
| 133 | + android:layout_height="wrap_content" | ||
| 134 | + android:orientation="vertical"> | ||
| 135 | + | ||
| 136 | + <LinearLayout | ||
| 137 | + android:layout_width="match_parent" | ||
| 138 | + android:layout_height="wrap_content" | ||
| 139 | + android:orientation="vertical"> | ||
| 140 | + | ||
| 141 | + <RelativeLayout | ||
| 142 | + android:layout_width="match_parent" | ||
| 143 | + android:layout_height="match_parent"> | ||
| 144 | + | ||
| 145 | + <TextView | ||
| 146 | + android:id="@+id/explainTextView" | ||
| 147 | + android:layout_width="wrap_content" | ||
| 148 | + android:layout_height="wrap_content" | ||
| 149 | + android:layout_centerInParent="true" | ||
| 150 | + android:layout_gravity="center" | ||
| 151 | + android:gravity="center" | ||
| 152 | + android:text="10. 자신의 주택보유 상태를 선택해주세요." /> | ||
| 153 | + | ||
| 154 | + <Button | ||
| 155 | + android:id="@+id/questionButton" | ||
| 156 | + android:layout_width="30dp" | ||
| 157 | + android:layout_height="30dp" | ||
| 158 | + android:layout_gravity="center" | ||
| 159 | + android:layout_toRightOf="@id/explainTextView" | ||
| 160 | + android:backgroundTint="#1E90FF" | ||
| 161 | + android:gravity="center" | ||
| 162 | + android:text=" ? " | ||
| 163 | + android:textSize="8sp" /> | ||
| 164 | + </RelativeLayout> | ||
| 165 | + </LinearLayout> | ||
| 166 | + | ||
| 167 | + <LinearLayout | ||
| 168 | + android:layout_width="match_parent" | ||
| 169 | + android:layout_height="wrap_content" | ||
| 170 | + android:orientation="vertical"> | ||
| 171 | + | ||
| 172 | + <LinearLayout | ||
| 173 | + android:layout_width="wrap_content" | ||
| 174 | + android:layout_height="wrap_content" | ||
| 175 | + android:layout_gravity="center" | ||
| 176 | + android:gravity="center" | ||
| 177 | + android:orientation="vertical"> | ||
| 178 | + | ||
| 179 | + <LinearLayout | ||
| 180 | + android:layout_width="match_parent" | ||
| 181 | + android:layout_height="match_parent" | ||
| 182 | + android:orientation="horizontal"> | ||
| 183 | + | ||
| 184 | + <ToggleButton | ||
| 185 | + android:id="@+id/yesButton" | ||
| 186 | + android:layout_width="300dp" | ||
| 187 | + android:layout_height="wrap_content" | ||
| 188 | + android:layout_weight="1" | ||
| 189 | + android:background="@drawable/profil_selector" | ||
| 190 | + android:text="보유" | ||
| 191 | + android:textOff="보유" | ||
| 192 | + android:textOn="보유" /> | ||
| 193 | + | ||
| 194 | + </LinearLayout> | ||
| 195 | + | ||
| 196 | + | ||
| 197 | + <LinearLayout | ||
| 198 | + android:layout_width="match_parent" | ||
| 199 | + android:layout_height="match_parent" | ||
| 200 | + android:orientation="horizontal"> | ||
| 201 | + | ||
| 202 | + <ToggleButton | ||
| 203 | + android:id="@+id/noButton" | ||
| 204 | + android:layout_width="300dp" | ||
| 205 | + android:layout_height="wrap_content" | ||
| 206 | + android:layout_weight="1" | ||
| 207 | + android:background="@drawable/profil_selector" | ||
| 208 | + android:text="미보유" | ||
| 209 | + android:textOff="미보유" | ||
| 210 | + android:textOn="미보유" /> | ||
| 211 | + </LinearLayout> | ||
| 212 | + | ||
| 213 | + </LinearLayout> | ||
| 214 | + </LinearLayout> | ||
| 215 | + | ||
| 216 | + <LinearLayout | ||
| 217 | + android:layout_width="match_parent" | ||
| 218 | + android:layout_height="wrap_content" | ||
| 219 | + android:layout_weight="1" | ||
| 220 | + android:orientation="vertical"> | ||
| 221 | + | ||
| 222 | + <LinearLayout | ||
| 223 | + android:layout_width="match_parent" | ||
| 224 | + android:layout_height="wrap_content" | ||
| 225 | + android:orientation="vertical"> | ||
| 226 | + | ||
| 227 | + <RelativeLayout | ||
| 228 | + android:layout_width="match_parent" | ||
| 229 | + android:layout_height="match_parent"> | ||
| 230 | + | ||
| 231 | + <TextView | ||
| 232 | + android:id="@+id/explainSub1TextView" | ||
| 233 | + android:layout_width="wrap_content" | ||
| 234 | + android:layout_height="wrap_content" | ||
| 235 | + android:layout_centerInParent="true" | ||
| 236 | + android:layout_gravity="center" | ||
| 237 | + android:gravity="center" | ||
| 238 | + android:text="10-1. 주거유형(본인)을 선택해주세요." /> | ||
| 239 | + | ||
| 240 | + <Button | ||
| 241 | + android:id="@+id/questionSub1Button" | ||
| 242 | + android:layout_width="30dp" | ||
| 243 | + android:layout_height="30dp" | ||
| 244 | + android:layout_gravity="center" | ||
| 245 | + android:layout_toRightOf="@id/explainSub1TextView" | ||
| 246 | + android:backgroundTint="#1E90FF" | ||
| 247 | + android:gravity="center" | ||
| 248 | + android:text=" ? " | ||
| 249 | + android:textSize="8sp" /> | ||
| 250 | + </RelativeLayout> | ||
| 251 | + </LinearLayout> | ||
| 252 | + | ||
| 253 | + <LinearLayout | ||
| 254 | + android:layout_width="match_parent" | ||
| 255 | + android:layout_height="wrap_content" | ||
| 256 | + android:orientation="vertical"> | ||
| 257 | + | ||
| 258 | + <LinearLayout | ||
| 259 | + android:layout_width="wrap_content" | ||
| 260 | + android:layout_height="wrap_content" | ||
| 261 | + android:layout_gravity="center" | ||
| 262 | + android:gravity="center" | ||
| 263 | + android:orientation="vertical"> | ||
| 264 | + | ||
| 265 | + <LinearLayout | ||
| 266 | + android:layout_width="match_parent" | ||
| 267 | + android:layout_height="match_parent" | ||
| 268 | + android:orientation="horizontal"> | ||
| 269 | + | ||
| 270 | + <ToggleButton | ||
| 271 | + android:id="@+id/jeonsaeButton" | ||
| 272 | + android:layout_width="300dp" | ||
| 273 | + android:layout_height="wrap_content" | ||
| 274 | + android:layout_weight="1" | ||
| 275 | + android:background="@drawable/profil_selector" | ||
| 276 | + android:text="전세" | ||
| 277 | + android:textOff="전세" | ||
| 278 | + android:textOn="전세" /> | ||
| 279 | + | ||
| 280 | + <ToggleButton | ||
| 281 | + android:id="@+id/wolseButton" | ||
| 282 | + android:layout_width="300dp" | ||
| 283 | + android:layout_height="wrap_content" | ||
| 284 | + android:layout_weight="1" | ||
| 285 | + android:background="@drawable/profil_selector" | ||
| 286 | + android:text="월세" | ||
| 287 | + android:textOff="월세" | ||
| 288 | + android:textOn="월세" /> | ||
| 289 | + | ||
| 290 | + </LinearLayout> | ||
| 291 | + | ||
| 292 | + <LinearLayout | ||
| 293 | + android:layout_width="match_parent" | ||
| 294 | + android:layout_height="match_parent" | ||
| 295 | + android:orientation="horizontal"> | ||
| 296 | + | ||
| 297 | + <ToggleButton | ||
| 298 | + android:id="@+id/kongkongButton" | ||
| 299 | + android:layout_width="300dp" | ||
| 300 | + android:layout_height="wrap_content" | ||
| 301 | + android:layout_weight="1" | ||
| 302 | + android:background="@drawable/profil_selector" | ||
| 303 | + android:text="공공(임대)주택" | ||
| 304 | + android:textOff="공공(임대)주택" | ||
| 305 | + android:textOn="공공(임대)주택" /> | ||
| 306 | + | ||
| 307 | + <ToggleButton | ||
| 308 | + android:id="@+id/moosangButton" | ||
| 309 | + android:layout_width="300dp" | ||
| 310 | + android:layout_height="wrap_content" | ||
| 311 | + android:layout_weight="1" | ||
| 312 | + android:background="@drawable/profil_selector" | ||
| 313 | + android:text="무상임대" | ||
| 314 | + android:textOff="무상임대" | ||
| 315 | + android:textOn="무상임대" /> | ||
| 316 | + </LinearLayout> | ||
| 317 | + | ||
| 318 | + <LinearLayout | ||
| 319 | + android:layout_width="match_parent" | ||
| 320 | + android:layout_height="match_parent" | ||
| 321 | + android:orientation="horizontal"> | ||
| 322 | + | ||
| 323 | + <ToggleButton | ||
| 324 | + android:id="@+id/bojangButton" | ||
| 325 | + android:layout_width="300dp" | ||
| 326 | + android:layout_height="wrap_content" | ||
| 327 | + android:layout_weight="1" | ||
| 328 | + android:background="@drawable/profil_selector" | ||
| 329 | + android:text="보장기관제공주거" | ||
| 330 | + android:textOff="보장기관제공주거" | ||
| 331 | + android:textOn="보장기관제공주거" /> | ||
| 332 | + | ||
| 333 | + <ToggleButton | ||
| 334 | + android:id="@+id/guitarButton" | ||
| 335 | + android:layout_width="300dp" | ||
| 336 | + android:layout_height="wrap_content" | ||
| 337 | + android:layout_weight="1" | ||
| 338 | + android:background="@drawable/profil_selector" | ||
| 339 | + android:text="기타" | ||
| 340 | + android:textOff="기타" | ||
| 341 | + android:textOn="기타" /> | ||
| 342 | + </LinearLayout> | ||
| 343 | + | ||
| 344 | + | ||
| 345 | + </LinearLayout> | ||
| 346 | + </LinearLayout> | ||
| 347 | + | ||
| 348 | + </LinearLayout> | ||
| 349 | + | ||
| 350 | + <LinearLayout | ||
| 351 | + android:layout_width="match_parent" | ||
| 352 | + android:layout_height="wrap_content" | ||
| 353 | + android:orientation="horizontal"> | ||
| 354 | + | ||
| 355 | + <Button | ||
| 356 | + android:id="@+id/previousButton" | ||
| 357 | + android:layout_width="10dp" | ||
| 358 | + android:layout_height="wrap_content" | ||
| 359 | + android:layout_weight="1" | ||
| 360 | + android:text="이전 단계로" /> | ||
| 361 | + | ||
| 362 | + <Button | ||
| 363 | + android:id="@+id/nextButton" | ||
| 364 | + android:layout_width="10dp" | ||
| 365 | + android:layout_height="wrap_content" | ||
| 366 | + android:layout_weight="1" | ||
| 367 | + android:text="다음 단계로" /> | ||
| 368 | + </LinearLayout> | ||
| 369 | + </LinearLayout> | ||
| 370 | + </ScrollView> | ||
| 371 | + | ||
| 372 | + </LinearLayout> | ||
| 373 | + </LinearLayout> | ||
| 374 | +</androidx.constraintlayout.widget.ConstraintLayout> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 1 | +<?xml version="1.0" encoding="utf-8"?> | ||
| 2 | +<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
| 3 | + xmlns:app="http://schemas.android.com/apk/res-auto" | ||
| 4 | + xmlns:tools="http://schemas.android.com/tools" | ||
| 5 | + android:layout_width="match_parent" | ||
| 6 | + android:layout_height="match_parent" | ||
| 7 | + tools:context=".InputProfilFourthThreeActivity"> | ||
| 8 | + | ||
| 9 | + <LinearLayout | ||
| 10 | + android:layout_width="match_parent" | ||
| 11 | + android:layout_height="match_parent" | ||
| 12 | + android:orientation="vertical"> | ||
| 13 | + | ||
| 14 | + <androidx.appcompat.widget.Toolbar | ||
| 15 | + android:id="@+id/toolbar" | ||
| 16 | + android:layout_width="fill_parent" | ||
| 17 | + android:layout_height="wrap_content" | ||
| 18 | + android:layout_marginBottom="11dp" | ||
| 19 | + android:background="#FFF" | ||
| 20 | + android:elevation="5dp" | ||
| 21 | + android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" | ||
| 22 | + app:popupTheme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> | ||
| 23 | + | ||
| 24 | + <LinearLayout | ||
| 25 | + android:layout_width="match_parent" | ||
| 26 | + android:layout_height="match_parent" | ||
| 27 | + android:orientation="horizontal"> | ||
| 28 | + | ||
| 29 | + <Button | ||
| 30 | + android:id="@+id/skipButton" | ||
| 31 | + android:layout_width="10dp" | ||
| 32 | + android:layout_height="match_parent" | ||
| 33 | + android:layout_weight="1.5" | ||
| 34 | + android:text="건너뛰기"/> | ||
| 35 | + <LinearLayout | ||
| 36 | + android:layout_width="10dp" | ||
| 37 | + android:layout_height="match_parent" | ||
| 38 | + android:orientation="horizontal" | ||
| 39 | + android:layout_weight="1"/> | ||
| 40 | + <ImageView | ||
| 41 | + android:layout_width="77dp" | ||
| 42 | + android:layout_height="44dp" | ||
| 43 | + android:layout_gravity="center" | ||
| 44 | + android:layout_weight="1" | ||
| 45 | + android:src="@drawable/toolbar_logo" /> | ||
| 46 | + <LinearLayout | ||
| 47 | + android:layout_width="10dp" | ||
| 48 | + android:layout_height="match_parent" | ||
| 49 | + android:orientation="horizontal" | ||
| 50 | + android:layout_weight="1"/> | ||
| 51 | + <LinearLayout | ||
| 52 | + android:layout_width="10dp" | ||
| 53 | + android:layout_height="match_parent" | ||
| 54 | + android:orientation="horizontal" | ||
| 55 | + android:layout_weight="1.5"/> | ||
| 56 | + | ||
| 57 | + </LinearLayout> | ||
| 58 | + | ||
| 59 | + | ||
| 60 | + </androidx.appcompat.widget.Toolbar> | ||
| 61 | + | ||
| 62 | + <LinearLayout | ||
| 63 | + android:layout_width="match_parent" | ||
| 64 | + android:layout_height="50dp" | ||
| 65 | + android:layout_weight="0" | ||
| 66 | + android:orientation="horizontal"> | ||
| 67 | + | ||
| 68 | + <TextView | ||
| 69 | + android:id="@+id/stageTextView1" | ||
| 70 | + android:layout_width="wrap_content" | ||
| 71 | + android:layout_height="match_parent" | ||
| 72 | + android:layout_gravity="center" | ||
| 73 | + android:layout_weight="1" | ||
| 74 | + android:background="#1E90FF" | ||
| 75 | + android:gravity="center" | ||
| 76 | + android:text="1" /> | ||
| 77 | + | ||
| 78 | + <TextView | ||
| 79 | + android:id="@+id/stageTextView2" | ||
| 80 | + android:layout_width="wrap_content" | ||
| 81 | + android:layout_height="match_parent" | ||
| 82 | + android:layout_gravity="center" | ||
| 83 | + android:layout_weight="1" | ||
| 84 | + android:background="#1E90FF" | ||
| 85 | + android:gravity="center" | ||
| 86 | + android:text="2" /> | ||
| 87 | + | ||
| 88 | + <TextView | ||
| 89 | + android:id="@+id/stageTextView3" | ||
| 90 | + android:layout_width="wrap_content" | ||
| 91 | + android:layout_height="match_parent" | ||
| 92 | + android:layout_gravity="center" | ||
| 93 | + android:layout_weight="1" | ||
| 94 | + android:background="#1E90FF" | ||
| 95 | + android:gravity="center" | ||
| 96 | + android:text="3" /> | ||
| 97 | + | ||
| 98 | + <TextView | ||
| 99 | + android:id="@+id/stageTextView4" | ||
| 100 | + android:layout_width="wrap_content" | ||
| 101 | + android:layout_height="match_parent" | ||
| 102 | + android:layout_gravity="center" | ||
| 103 | + android:layout_weight="1" | ||
| 104 | + android:background="#1E90FF" | ||
| 105 | + android:gravity="center" | ||
| 106 | + android:text="4" /> | ||
| 107 | + | ||
| 108 | + <TextView | ||
| 109 | + android:id="@+id/stageTextView5" | ||
| 110 | + android:layout_width="wrap_content" | ||
| 111 | + android:layout_height="match_parent" | ||
| 112 | + android:layout_gravity="center" | ||
| 113 | + android:layout_weight="1" | ||
| 114 | + android:gravity="center" | ||
| 115 | + android:text="5" /> | ||
| 116 | + | ||
| 117 | + </LinearLayout> | ||
| 118 | + | ||
| 119 | + <LinearLayout | ||
| 120 | + android:layout_width="match_parent" | ||
| 121 | + android:layout_height="10dp" | ||
| 122 | + android:layout_weight="1" | ||
| 123 | + android:orientation="vertical"></LinearLayout> | ||
| 124 | + | ||
| 125 | + <LinearLayout | ||
| 126 | + android:layout_width="match_parent" | ||
| 127 | + android:layout_height="wrap_content" | ||
| 128 | + android:layout_weight="1" | ||
| 129 | + android:orientation="vertical"> | ||
| 130 | + | ||
| 131 | + <LinearLayout | ||
| 132 | + android:layout_width="match_parent" | ||
| 133 | + android:layout_height="wrap_content" | ||
| 134 | + android:orientation="vertical"> | ||
| 135 | + | ||
| 136 | + <RelativeLayout | ||
| 137 | + android:layout_width="match_parent" | ||
| 138 | + android:layout_height="match_parent"> | ||
| 139 | + | ||
| 140 | + <TextView | ||
| 141 | + android:id="@+id/explainTextView" | ||
| 142 | + android:layout_width="wrap_content" | ||
| 143 | + android:layout_height="wrap_content" | ||
| 144 | + android:layout_centerInParent="true" | ||
| 145 | + android:layout_gravity="center" | ||
| 146 | + android:gravity="center" | ||
| 147 | + android:text="12. 자신을 포함한 가구구성원의 [상황]을 모두 선택해주세요." /> | ||
| 148 | + | ||
| 149 | + <Button | ||
| 150 | + android:id="@+id/questionButton" | ||
| 151 | + android:layout_width="30dp" | ||
| 152 | + android:layout_height="30dp" | ||
| 153 | + android:layout_gravity="center" | ||
| 154 | + android:layout_toRightOf="@id/explainTextView" | ||
| 155 | + android:backgroundTint="#1E90FF" | ||
| 156 | + android:gravity="center" | ||
| 157 | + android:text=" ? " | ||
| 158 | + android:textSize="8sp" /> | ||
| 159 | + </RelativeLayout> | ||
| 160 | + </LinearLayout> | ||
| 161 | + | ||
| 162 | + <LinearLayout | ||
| 163 | + android:layout_width="match_parent" | ||
| 164 | + android:layout_height="50dp" | ||
| 165 | + android:layout_weight="1" | ||
| 166 | + android:orientation="vertical"> | ||
| 167 | + | ||
| 168 | + </LinearLayout> | ||
| 169 | + | ||
| 170 | + <ScrollView | ||
| 171 | + android:layout_width="match_parent" | ||
| 172 | + android:layout_height="wrap_content"> | ||
| 173 | + | ||
| 174 | + <LinearLayout | ||
| 175 | + android:layout_width="match_parent" | ||
| 176 | + android:layout_height="wrap_content" | ||
| 177 | + android:orientation="vertical"> | ||
| 178 | + | ||
| 179 | + <LinearLayout | ||
| 180 | + android:layout_width="wrap_content" | ||
| 181 | + android:layout_height="wrap_content" | ||
| 182 | + android:layout_gravity="center" | ||
| 183 | + android:gravity="center" | ||
| 184 | + android:orientation="vertical"> | ||
| 185 | + | ||
| 186 | + <LinearLayout | ||
| 187 | + android:layout_width="match_parent" | ||
| 188 | + android:layout_height="match_parent" | ||
| 189 | + android:orientation="horizontal"> | ||
| 190 | + | ||
| 191 | + <ToggleButton | ||
| 192 | + android:id="@+id/nothingButton" | ||
| 193 | + android:layout_width="wrap_content" | ||
| 194 | + android:layout_height="wrap_content" | ||
| 195 | + android:layout_weight="1" | ||
| 196 | + android:background="@drawable/profil_selector" | ||
| 197 | + android:text="해당없음" | ||
| 198 | + android:textOff="해당없음" | ||
| 199 | + android:textOn="해당없음" /> | ||
| 200 | + | ||
| 201 | + <ToggleButton | ||
| 202 | + android:id="@+id/jeosodeukButton" | ||
| 203 | + android:layout_width="wrap_content" | ||
| 204 | + android:layout_height="wrap_content" | ||
| 205 | + android:layout_weight="1" | ||
| 206 | + android:background="@drawable/profil_selector" | ||
| 207 | + android:text="저소득" | ||
| 208 | + android:textOff="저소득" | ||
| 209 | + android:textOn="저소득" /> | ||
| 210 | + | ||
| 211 | + <ToggleButton | ||
| 212 | + android:id="@+id/hanboomoButton" | ||
| 213 | + android:layout_width="wrap_content" | ||
| 214 | + android:layout_height="wrap_content" | ||
| 215 | + android:layout_weight="1" | ||
| 216 | + android:background="@drawable/profil_selector" | ||
| 217 | + android:text="한부모" | ||
| 218 | + android:textOff="한부모" | ||
| 219 | + android:textOn="한부모" /> | ||
| 220 | + | ||
| 221 | + </LinearLayout> | ||
| 222 | + | ||
| 223 | + <LinearLayout | ||
| 224 | + android:layout_width="match_parent" | ||
| 225 | + android:layout_height="match_parent" | ||
| 226 | + android:orientation="horizontal"> | ||
| 227 | + | ||
| 228 | + <ToggleButton | ||
| 229 | + android:id="@+id/oegookinButton" | ||
| 230 | + android:layout_width="wrap_content" | ||
| 231 | + android:layout_height="wrap_content" | ||
| 232 | + android:layout_weight="1" | ||
| 233 | + android:background="@drawable/profil_selector" | ||
| 234 | + android:text="외국인" | ||
| 235 | + android:textOff="외국인" | ||
| 236 | + android:textOn="외국인" /> | ||
| 237 | + | ||
| 238 | + <ToggleButton | ||
| 239 | + android:id="@+id/damoonhwaButton" | ||
| 240 | + android:layout_width="wrap_content" | ||
| 241 | + android:layout_height="wrap_content" | ||
| 242 | + android:layout_weight="1" | ||
| 243 | + android:background="@drawable/profil_selector" | ||
| 244 | + android:text="다문화" | ||
| 245 | + android:textOff="다문화" | ||
| 246 | + android:textOn="다문화" /> | ||
| 247 | + | ||
| 248 | + <ToggleButton | ||
| 249 | + android:id="@+id/jaangaeButton" | ||
| 250 | + android:layout_width="wrap_content" | ||
| 251 | + android:layout_height="wrap_content" | ||
| 252 | + android:layout_weight="1" | ||
| 253 | + android:background="@drawable/profil_selector" | ||
| 254 | + android:text="장애" | ||
| 255 | + android:textOff="장애" | ||
| 256 | + android:textOn="장애" /> | ||
| 257 | + </LinearLayout> | ||
| 258 | + | ||
| 259 | + | ||
| 260 | + <LinearLayout | ||
| 261 | + android:layout_width="match_parent" | ||
| 262 | + android:layout_height="match_parent" | ||
| 263 | + android:orientation="horizontal"> | ||
| 264 | + | ||
| 265 | + <ToggleButton | ||
| 266 | + android:id="@+id/imshinchoolsanButton" | ||
| 267 | + android:layout_width="wrap_content" | ||
| 268 | + android:layout_height="wrap_content" | ||
| 269 | + android:layout_weight="1" | ||
| 270 | + android:background="@drawable/profil_selector" | ||
| 271 | + android:text="임신출산" | ||
| 272 | + android:textOff="임신출산" | ||
| 273 | + android:textOn="임신출산" /> | ||
| 274 | + | ||
| 275 | + <ToggleButton | ||
| 276 | + android:id="@+id/ipyaangButton" | ||
| 277 | + android:layout_width="wrap_content" | ||
| 278 | + android:layout_height="wrap_content" | ||
| 279 | + android:layout_weight="1" | ||
| 280 | + android:background="@drawable/profil_selector" | ||
| 281 | + android:text="입양" | ||
| 282 | + android:textOff="입양" | ||
| 283 | + android:textOn="입양" /> | ||
| 284 | + | ||
| 285 | + <ToggleButton | ||
| 286 | + android:id="@+id/gaajungButton" | ||
| 287 | + android:layout_width="wrap_content" | ||
| 288 | + android:layout_height="wrap_content" | ||
| 289 | + android:layout_weight="1" | ||
| 290 | + android:background="@drawable/profil_selector" | ||
| 291 | + android:text="가정위탁" | ||
| 292 | + android:textOff="가정위탁" | ||
| 293 | + android:textOn="가정위탁" /> | ||
| 294 | + </LinearLayout> | ||
| 295 | + | ||
| 296 | + <LinearLayout | ||
| 297 | + android:layout_width="match_parent" | ||
| 298 | + android:layout_height="match_parent" | ||
| 299 | + android:orientation="horizontal"> | ||
| 300 | + | ||
| 301 | + <ToggleButton | ||
| 302 | + android:id="@+id/bookhanButton" | ||
| 303 | + android:layout_width="wrap_content" | ||
| 304 | + android:layout_height="wrap_content" | ||
| 305 | + android:layout_weight="1" | ||
| 306 | + android:background="@drawable/profil_selector" | ||
| 307 | + android:text="북한이탈주민" | ||
| 308 | + android:textOff="북한이탈주민" | ||
| 309 | + android:textOn="북한이탈주민" /> | ||
| 310 | + | ||
| 311 | + <ToggleButton | ||
| 312 | + android:id="@+id/gookgayoogongButton" | ||
| 313 | + android:layout_width="wrap_content" | ||
| 314 | + android:layout_height="wrap_content" | ||
| 315 | + android:layout_weight="1" | ||
| 316 | + android:background="@drawable/profil_selector" | ||
| 317 | + android:text="국가유공" | ||
| 318 | + android:textOff="국가유공" | ||
| 319 | + android:textOn="국가유공" /> | ||
| 320 | + | ||
| 321 | + <ToggleButton | ||
| 322 | + android:id="@+id/guitarButton" | ||
| 323 | + android:layout_width="wrap_content" | ||
| 324 | + android:layout_height="wrap_content" | ||
| 325 | + android:layout_weight="1" | ||
| 326 | + android:background="@drawable/profil_selector" | ||
| 327 | + android:text="기타" | ||
| 328 | + android:textOff="기타" | ||
| 329 | + android:textOn="기타" /> | ||
| 330 | + </LinearLayout> | ||
| 331 | + | ||
| 332 | + | ||
| 333 | + </LinearLayout> | ||
| 334 | + </LinearLayout> | ||
| 335 | + </ScrollView> | ||
| 336 | + | ||
| 337 | + <LinearLayout | ||
| 338 | + android:layout_width="match_parent" | ||
| 339 | + android:layout_height="100dp" | ||
| 340 | + android:layout_weight="1" | ||
| 341 | + android:orientation="vertical"></LinearLayout> | ||
| 342 | + | ||
| 343 | + <LinearLayout | ||
| 344 | + android:layout_width="match_parent" | ||
| 345 | + android:layout_height="wrap_content" | ||
| 346 | + android:orientation="horizontal"> | ||
| 347 | + | ||
| 348 | + <Button | ||
| 349 | + android:id="@+id/previousButton" | ||
| 350 | + android:layout_width="10dp" | ||
| 351 | + android:layout_height="wrap_content" | ||
| 352 | + android:layout_weight="1" | ||
| 353 | + android:text="이전 단계로" /> | ||
| 354 | + | ||
| 355 | + <Button | ||
| 356 | + android:id="@+id/nextButton" | ||
| 357 | + android:layout_width="10dp" | ||
| 358 | + android:layout_height="wrap_content" | ||
| 359 | + android:layout_weight="1" | ||
| 360 | + android:text="다음 단계로" /> | ||
| 361 | + </LinearLayout> | ||
| 362 | + </LinearLayout> | ||
| 363 | + </LinearLayout> | ||
| 364 | +</androidx.constraintlayout.widget.ConstraintLayout> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 1 | +<?xml version="1.0" encoding="utf-8"?> | ||
| 2 | +<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
| 3 | + xmlns:app="http://schemas.android.com/apk/res-auto" | ||
| 4 | + xmlns:tools="http://schemas.android.com/tools" | ||
| 5 | + android:layout_width="match_parent" | ||
| 6 | + android:layout_height="match_parent" | ||
| 7 | + tools:context=".InputProfilFourthTwoActivity"> | ||
| 8 | + | ||
| 9 | + <LinearLayout | ||
| 10 | + android:layout_width="match_parent" | ||
| 11 | + android:layout_height="match_parent" | ||
| 12 | + android:orientation="vertical"> | ||
| 13 | + | ||
| 14 | + <androidx.appcompat.widget.Toolbar | ||
| 15 | + android:id="@+id/toolbar" | ||
| 16 | + android:layout_width="fill_parent" | ||
| 17 | + android:layout_height="wrap_content" | ||
| 18 | + android:layout_marginBottom="11dp" | ||
| 19 | + android:background="#FFF" | ||
| 20 | + android:elevation="5dp" | ||
| 21 | + android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" | ||
| 22 | + app:popupTheme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> | ||
| 23 | + | ||
| 24 | + <LinearLayout | ||
| 25 | + android:layout_width="match_parent" | ||
| 26 | + android:layout_height="match_parent" | ||
| 27 | + android:orientation="horizontal"> | ||
| 28 | + | ||
| 29 | + <Button | ||
| 30 | + android:id="@+id/skipButton" | ||
| 31 | + android:layout_width="10dp" | ||
| 32 | + android:layout_height="match_parent" | ||
| 33 | + android:layout_weight="1.5" | ||
| 34 | + android:text="건너뛰기"/> | ||
| 35 | + <LinearLayout | ||
| 36 | + android:layout_width="10dp" | ||
| 37 | + android:layout_height="match_parent" | ||
| 38 | + android:orientation="horizontal" | ||
| 39 | + android:layout_weight="1"/> | ||
| 40 | + <ImageView | ||
| 41 | + android:layout_width="77dp" | ||
| 42 | + android:layout_height="44dp" | ||
| 43 | + android:layout_gravity="center" | ||
| 44 | + android:layout_weight="1" | ||
| 45 | + android:src="@drawable/toolbar_logo" /> | ||
| 46 | + <LinearLayout | ||
| 47 | + android:layout_width="10dp" | ||
| 48 | + android:layout_height="match_parent" | ||
| 49 | + android:orientation="horizontal" | ||
| 50 | + android:layout_weight="1"/> | ||
| 51 | + <LinearLayout | ||
| 52 | + android:layout_width="10dp" | ||
| 53 | + android:layout_height="match_parent" | ||
| 54 | + android:orientation="horizontal" | ||
| 55 | + android:layout_weight="1.5"/> | ||
| 56 | + | ||
| 57 | + </LinearLayout> | ||
| 58 | + | ||
| 59 | + | ||
| 60 | + </androidx.appcompat.widget.Toolbar> | ||
| 61 | + | ||
| 62 | + <LinearLayout | ||
| 63 | + android:layout_width="match_parent" | ||
| 64 | + android:layout_height="50dp" | ||
| 65 | + android:layout_weight="0" | ||
| 66 | + android:orientation="horizontal"> | ||
| 67 | + | ||
| 68 | + <TextView | ||
| 69 | + android:id="@+id/stageTextView1" | ||
| 70 | + android:layout_width="wrap_content" | ||
| 71 | + android:layout_height="match_parent" | ||
| 72 | + android:layout_gravity="center" | ||
| 73 | + android:layout_weight="1" | ||
| 74 | + android:background="#1E90FF" | ||
| 75 | + android:gravity="center" | ||
| 76 | + android:text="1" /> | ||
| 77 | + | ||
| 78 | + <TextView | ||
| 79 | + android:id="@+id/stageTextView2" | ||
| 80 | + android:layout_width="wrap_content" | ||
| 81 | + android:layout_height="match_parent" | ||
| 82 | + android:layout_gravity="center" | ||
| 83 | + android:layout_weight="1" | ||
| 84 | + android:background="#1E90FF" | ||
| 85 | + android:gravity="center" | ||
| 86 | + android:text="2" /> | ||
| 87 | + | ||
| 88 | + <TextView | ||
| 89 | + android:id="@+id/stageTextView3" | ||
| 90 | + android:layout_width="wrap_content" | ||
| 91 | + android:layout_height="match_parent" | ||
| 92 | + android:layout_gravity="center" | ||
| 93 | + android:layout_weight="1" | ||
| 94 | + | ||
| 95 | + android:background="#1E90FF" | ||
| 96 | + android:gravity="center" | ||
| 97 | + android:text="3" /> | ||
| 98 | + | ||
| 99 | + <TextView | ||
| 100 | + android:id="@+id/stageTextView4" | ||
| 101 | + android:layout_width="wrap_content" | ||
| 102 | + android:layout_height="match_parent" | ||
| 103 | + android:layout_gravity="center" | ||
| 104 | + android:layout_weight="1" | ||
| 105 | + android:background="#1E90FF" | ||
| 106 | + android:gravity="center" | ||
| 107 | + android:text="4" /> | ||
| 108 | + | ||
| 109 | + <TextView | ||
| 110 | + android:id="@+id/stageTextView5" | ||
| 111 | + android:layout_width="wrap_content" | ||
| 112 | + android:layout_height="match_parent" | ||
| 113 | + android:layout_gravity="center" | ||
| 114 | + android:layout_weight="1" | ||
| 115 | + android:gravity="center" | ||
| 116 | + android:text="5" /> | ||
| 117 | + | ||
| 118 | + </LinearLayout> | ||
| 119 | + | ||
| 120 | + <LinearLayout | ||
| 121 | + android:layout_width="match_parent" | ||
| 122 | + android:layout_height="wrap_content" | ||
| 123 | + android:layout_weight="1" | ||
| 124 | + android:orientation="vertical"> | ||
| 125 | + | ||
| 126 | + <ScrollView | ||
| 127 | + android:layout_width="match_parent" | ||
| 128 | + android:layout_height="match_parent" | ||
| 129 | + android:layout_weight="1"> | ||
| 130 | + | ||
| 131 | + <LinearLayout | ||
| 132 | + android:layout_width="match_parent" | ||
| 133 | + android:layout_height="wrap_content" | ||
| 134 | + android:orientation="vertical"> | ||
| 135 | + | ||
| 136 | + <LinearLayout | ||
| 137 | + android:layout_width="match_parent" | ||
| 138 | + android:layout_height="wrap_content" | ||
| 139 | + android:orientation="vertical"> | ||
| 140 | + | ||
| 141 | + <RelativeLayout | ||
| 142 | + android:layout_width="match_parent" | ||
| 143 | + android:layout_height="match_parent"> | ||
| 144 | + | ||
| 145 | + <TextView | ||
| 146 | + android:id="@+id/explainTextView" | ||
| 147 | + android:layout_width="wrap_content" | ||
| 148 | + android:layout_height="wrap_content" | ||
| 149 | + android:layout_centerInParent="true" | ||
| 150 | + android:layout_gravity="center" | ||
| 151 | + android:gravity="center" | ||
| 152 | + android:text="11. 보호자의 주택보유 상태를 선택해주세요." /> | ||
| 153 | + | ||
| 154 | + <Button | ||
| 155 | + android:id="@+id/questionButton" | ||
| 156 | + android:layout_width="30dp" | ||
| 157 | + android:layout_height="30dp" | ||
| 158 | + android:layout_gravity="center" | ||
| 159 | + android:layout_toRightOf="@id/explainTextView" | ||
| 160 | + android:backgroundTint="#1E90FF" | ||
| 161 | + android:gravity="center" | ||
| 162 | + android:text=" ? " | ||
| 163 | + android:textSize="8sp" /> | ||
| 164 | + </RelativeLayout> | ||
| 165 | + </LinearLayout> | ||
| 166 | + | ||
| 167 | + <LinearLayout | ||
| 168 | + android:layout_width="match_parent" | ||
| 169 | + android:layout_height="wrap_content" | ||
| 170 | + android:orientation="vertical"> | ||
| 171 | + | ||
| 172 | + <LinearLayout | ||
| 173 | + android:layout_width="wrap_content" | ||
| 174 | + android:layout_height="wrap_content" | ||
| 175 | + android:layout_gravity="center" | ||
| 176 | + android:gravity="center" | ||
| 177 | + android:orientation="vertical"> | ||
| 178 | + | ||
| 179 | + <LinearLayout | ||
| 180 | + android:layout_width="match_parent" | ||
| 181 | + android:layout_height="match_parent" | ||
| 182 | + android:orientation="horizontal"> | ||
| 183 | + | ||
| 184 | + <ToggleButton | ||
| 185 | + android:id="@+id/yesButton" | ||
| 186 | + android:layout_width="300dp" | ||
| 187 | + android:layout_height="wrap_content" | ||
| 188 | + android:layout_weight="1" | ||
| 189 | + android:background="@drawable/profil_selector" | ||
| 190 | + android:text="보유" | ||
| 191 | + android:textOff="보유" | ||
| 192 | + android:textOn="보유" /> | ||
| 193 | + | ||
| 194 | + </LinearLayout> | ||
| 195 | + | ||
| 196 | + | ||
| 197 | + <LinearLayout | ||
| 198 | + android:layout_width="match_parent" | ||
| 199 | + android:layout_height="match_parent" | ||
| 200 | + android:orientation="horizontal"> | ||
| 201 | + | ||
| 202 | + <ToggleButton | ||
| 203 | + android:id="@+id/noButton" | ||
| 204 | + android:layout_width="300dp" | ||
| 205 | + android:layout_height="wrap_content" | ||
| 206 | + android:layout_weight="1" | ||
| 207 | + android:background="@drawable/profil_selector" | ||
| 208 | + android:text="미보유" | ||
| 209 | + android:textOff="미보유" | ||
| 210 | + android:textOn="미보유" /> | ||
| 211 | + </LinearLayout> | ||
| 212 | + | ||
| 213 | + </LinearLayout> | ||
| 214 | + </LinearLayout> | ||
| 215 | + | ||
| 216 | + <LinearLayout | ||
| 217 | + android:layout_width="match_parent" | ||
| 218 | + android:layout_height="wrap_content" | ||
| 219 | + android:layout_weight="1" | ||
| 220 | + android:orientation="vertical"> | ||
| 221 | + | ||
| 222 | + <LinearLayout | ||
| 223 | + android:layout_width="match_parent" | ||
| 224 | + android:layout_height="wrap_content" | ||
| 225 | + android:orientation="vertical"> | ||
| 226 | + | ||
| 227 | + <RelativeLayout | ||
| 228 | + android:layout_width="match_parent" | ||
| 229 | + android:layout_height="match_parent"> | ||
| 230 | + | ||
| 231 | + <TextView | ||
| 232 | + android:id="@+id/explainSub1TextView" | ||
| 233 | + android:layout_width="wrap_content" | ||
| 234 | + android:layout_height="wrap_content" | ||
| 235 | + android:layout_centerInParent="true" | ||
| 236 | + android:layout_gravity="center" | ||
| 237 | + android:gravity="center" | ||
| 238 | + android:text="11-1. 주거유형(보호자)를 선택해주세요." /> | ||
| 239 | + | ||
| 240 | + <Button | ||
| 241 | + android:id="@+id/questionSub1Button" | ||
| 242 | + android:layout_width="30dp" | ||
| 243 | + android:layout_height="30dp" | ||
| 244 | + android:layout_gravity="center" | ||
| 245 | + android:layout_toRightOf="@id/explainSub1TextView" | ||
| 246 | + android:backgroundTint="#1E90FF" | ||
| 247 | + android:gravity="center" | ||
| 248 | + android:text=" ? " | ||
| 249 | + android:textSize="8sp" /> | ||
| 250 | + </RelativeLayout> | ||
| 251 | + </LinearLayout> | ||
| 252 | + | ||
| 253 | + <LinearLayout | ||
| 254 | + android:layout_width="match_parent" | ||
| 255 | + android:layout_height="wrap_content" | ||
| 256 | + android:orientation="vertical"> | ||
| 257 | + | ||
| 258 | + <LinearLayout | ||
| 259 | + android:layout_width="wrap_content" | ||
| 260 | + android:layout_height="wrap_content" | ||
| 261 | + android:layout_gravity="center" | ||
| 262 | + android:gravity="center" | ||
| 263 | + android:orientation="vertical"> | ||
| 264 | + | ||
| 265 | + <LinearLayout | ||
| 266 | + android:layout_width="match_parent" | ||
| 267 | + android:layout_height="match_parent" | ||
| 268 | + android:orientation="horizontal"> | ||
| 269 | + | ||
| 270 | + <ToggleButton | ||
| 271 | + android:id="@+id/jeonsaeButton" | ||
| 272 | + android:layout_width="300dp" | ||
| 273 | + android:layout_height="wrap_content" | ||
| 274 | + android:layout_weight="1" | ||
| 275 | + android:background="@drawable/profil_selector" | ||
| 276 | + android:text="전세" | ||
| 277 | + android:textOff="전세" | ||
| 278 | + android:textOn="전세" /> | ||
| 279 | + | ||
| 280 | + <ToggleButton | ||
| 281 | + android:id="@+id/wolseButton" | ||
| 282 | + android:layout_width="300dp" | ||
| 283 | + android:layout_height="wrap_content" | ||
| 284 | + android:layout_weight="1" | ||
| 285 | + android:background="@drawable/profil_selector" | ||
| 286 | + android:text="월세" | ||
| 287 | + android:textOff="월세" | ||
| 288 | + android:textOn="월세" /> | ||
| 289 | + | ||
| 290 | + </LinearLayout> | ||
| 291 | + | ||
| 292 | + <LinearLayout | ||
| 293 | + android:layout_width="match_parent" | ||
| 294 | + android:layout_height="match_parent" | ||
| 295 | + android:orientation="horizontal"> | ||
| 296 | + | ||
| 297 | + <ToggleButton | ||
| 298 | + android:id="@+id/kongkongButton" | ||
| 299 | + android:layout_width="300dp" | ||
| 300 | + android:layout_height="wrap_content" | ||
| 301 | + android:layout_weight="1" | ||
| 302 | + android:background="@drawable/profil_selector" | ||
| 303 | + android:text="공공(임대)주택" | ||
| 304 | + android:textOff="공공(임대)주택" | ||
| 305 | + android:textOn="공공(임대)주택" /> | ||
| 306 | + | ||
| 307 | + <ToggleButton | ||
| 308 | + android:id="@+id/moosangButton" | ||
| 309 | + android:layout_width="300dp" | ||
| 310 | + android:layout_height="wrap_content" | ||
| 311 | + android:layout_weight="1" | ||
| 312 | + android:background="@drawable/profil_selector" | ||
| 313 | + android:text="무상임대" | ||
| 314 | + android:textOff="무상임대" | ||
| 315 | + android:textOn="무상임대" /> | ||
| 316 | + </LinearLayout> | ||
| 317 | + | ||
| 318 | + <LinearLayout | ||
| 319 | + android:layout_width="match_parent" | ||
| 320 | + android:layout_height="match_parent" | ||
| 321 | + android:orientation="horizontal"> | ||
| 322 | + | ||
| 323 | + <ToggleButton | ||
| 324 | + android:id="@+id/bojangButton" | ||
| 325 | + android:layout_width="300dp" | ||
| 326 | + android:layout_height="wrap_content" | ||
| 327 | + android:layout_weight="1" | ||
| 328 | + android:background="@drawable/profil_selector" | ||
| 329 | + android:text="보장기관제공주거" | ||
| 330 | + android:textOff="보장기관제공주거" | ||
| 331 | + android:textOn="보장기관제공주거" /> | ||
| 332 | + | ||
| 333 | + <ToggleButton | ||
| 334 | + android:id="@+id/guitarButton" | ||
| 335 | + android:layout_width="300dp" | ||
| 336 | + android:layout_height="wrap_content" | ||
| 337 | + android:layout_weight="1" | ||
| 338 | + android:background="@drawable/profil_selector" | ||
| 339 | + android:text="기타" | ||
| 340 | + android:textOff="기타" | ||
| 341 | + android:textOn="기타" /> | ||
| 342 | + </LinearLayout> | ||
| 343 | + | ||
| 344 | + | ||
| 345 | + </LinearLayout> | ||
| 346 | + </LinearLayout> | ||
| 347 | + | ||
| 348 | + </LinearLayout> | ||
| 349 | + | ||
| 350 | + <LinearLayout | ||
| 351 | + android:layout_width="match_parent" | ||
| 352 | + android:layout_height="wrap_content" | ||
| 353 | + android:orientation="horizontal"> | ||
| 354 | + | ||
| 355 | + <Button | ||
| 356 | + android:id="@+id/previousButton" | ||
| 357 | + android:layout_width="10dp" | ||
| 358 | + android:layout_height="wrap_content" | ||
| 359 | + android:layout_weight="1" | ||
| 360 | + android:text="이전 단계로" /> | ||
| 361 | + | ||
| 362 | + <Button | ||
| 363 | + android:id="@+id/nextButton" | ||
| 364 | + android:layout_width="10dp" | ||
| 365 | + android:layout_height="wrap_content" | ||
| 366 | + android:layout_weight="1" | ||
| 367 | + android:text="다음 단계로" /> | ||
| 368 | + </LinearLayout> | ||
| 369 | + </LinearLayout> | ||
| 370 | + </ScrollView> | ||
| 371 | + | ||
| 372 | + </LinearLayout> | ||
| 373 | + </LinearLayout> | ||
| 374 | +</androidx.constraintlayout.widget.ConstraintLayout> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 1 | +<?xml version="1.0" encoding="utf-8"?> | ||
| 2 | +<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
| 3 | + xmlns:app="http://schemas.android.com/apk/res-auto" | ||
| 4 | + xmlns:tools="http://schemas.android.com/tools" | ||
| 5 | + android:layout_width="match_parent" | ||
| 6 | + android:layout_height="match_parent" | ||
| 7 | + tools:context=".InputProfilSecondOneActivity"> | ||
| 8 | + | ||
| 9 | + <LinearLayout | ||
| 10 | + android:layout_width="match_parent" | ||
| 11 | + android:layout_height="match_parent" | ||
| 12 | + android:orientation="vertical"> | ||
| 13 | + | ||
| 14 | + <androidx.appcompat.widget.Toolbar | ||
| 15 | + android:id="@+id/toolbar" | ||
| 16 | + android:layout_width="fill_parent" | ||
| 17 | + android:layout_height="wrap_content" | ||
| 18 | + android:layout_marginBottom="11dp" | ||
| 19 | + android:background="#FFF" | ||
| 20 | + android:elevation="5dp" | ||
| 21 | + android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" | ||
| 22 | + app:popupTheme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> | ||
| 23 | + | ||
| 24 | + <LinearLayout | ||
| 25 | + android:layout_width="match_parent" | ||
| 26 | + android:layout_height="match_parent" | ||
| 27 | + android:orientation="horizontal"> | ||
| 28 | + | ||
| 29 | + <Button | ||
| 30 | + android:id="@+id/skipButton" | ||
| 31 | + android:layout_width="10dp" | ||
| 32 | + android:layout_height="match_parent" | ||
| 33 | + android:layout_weight="1.5" | ||
| 34 | + android:text="건너뛰기"/> | ||
| 35 | + <LinearLayout | ||
| 36 | + android:layout_width="10dp" | ||
| 37 | + android:layout_height="match_parent" | ||
| 38 | + android:orientation="horizontal" | ||
| 39 | + android:layout_weight="1"/> | ||
| 40 | + <ImageView | ||
| 41 | + android:layout_width="77dp" | ||
| 42 | + android:layout_height="44dp" | ||
| 43 | + android:layout_gravity="center" | ||
| 44 | + android:layout_weight="1" | ||
| 45 | + android:src="@drawable/toolbar_logo" /> | ||
| 46 | + <LinearLayout | ||
| 47 | + android:layout_width="10dp" | ||
| 48 | + android:layout_height="match_parent" | ||
| 49 | + android:orientation="horizontal" | ||
| 50 | + android:layout_weight="1"/> | ||
| 51 | + <LinearLayout | ||
| 52 | + android:layout_width="10dp" | ||
| 53 | + android:layout_height="match_parent" | ||
| 54 | + android:orientation="horizontal" | ||
| 55 | + android:layout_weight="1.5"/> | ||
| 56 | + | ||
| 57 | + </LinearLayout> | ||
| 58 | + | ||
| 59 | + | ||
| 60 | + </androidx.appcompat.widget.Toolbar> | ||
| 61 | + | ||
| 62 | + <LinearLayout | ||
| 63 | + android:layout_width="match_parent" | ||
| 64 | + android:layout_height="50dp" | ||
| 65 | + android:layout_weight="0" | ||
| 66 | + android:orientation="horizontal"> | ||
| 67 | + | ||
| 68 | + <TextView | ||
| 69 | + android:id="@+id/stageTextView1" | ||
| 70 | + android:layout_width="wrap_content" | ||
| 71 | + android:layout_height="match_parent" | ||
| 72 | + android:layout_gravity="center" | ||
| 73 | + android:layout_weight="1" | ||
| 74 | + android:background="#1E90FF" | ||
| 75 | + android:gravity="center" | ||
| 76 | + android:text="1" /> | ||
| 77 | + | ||
| 78 | + <TextView | ||
| 79 | + android:id="@+id/stageTextView2" | ||
| 80 | + android:layout_width="wrap_content" | ||
| 81 | + android:layout_height="match_parent" | ||
| 82 | + android:layout_gravity="center" | ||
| 83 | + android:layout_weight="1" | ||
| 84 | + android:background="#1E90FF" | ||
| 85 | + android:gravity="center" | ||
| 86 | + android:text="2" /> | ||
| 87 | + | ||
| 88 | + <TextView | ||
| 89 | + android:id="@+id/stageTextView3" | ||
| 90 | + android:layout_width="wrap_content" | ||
| 91 | + android:layout_height="match_parent" | ||
| 92 | + android:layout_gravity="center" | ||
| 93 | + android:layout_weight="1" | ||
| 94 | + android:gravity="center" | ||
| 95 | + android:text="3" /> | ||
| 96 | + | ||
| 97 | + <TextView | ||
| 98 | + android:id="@+id/stageTextView4" | ||
| 99 | + android:layout_width="wrap_content" | ||
| 100 | + android:layout_height="match_parent" | ||
| 101 | + android:layout_gravity="center" | ||
| 102 | + android:layout_weight="1" | ||
| 103 | + android:gravity="center" | ||
| 104 | + android:text="4" /> | ||
| 105 | + | ||
| 106 | + <TextView | ||
| 107 | + android:id="@+id/stageTextView5" | ||
| 108 | + android:layout_width="wrap_content" | ||
| 109 | + android:layout_height="match_parent" | ||
| 110 | + android:layout_gravity="center" | ||
| 111 | + android:layout_weight="1" | ||
| 112 | + android:gravity="center" | ||
| 113 | + android:text="5" /> | ||
| 114 | + | ||
| 115 | + </LinearLayout> | ||
| 116 | + | ||
| 117 | + <LinearLayout | ||
| 118 | + android:layout_width="match_parent" | ||
| 119 | + android:layout_height="10dp" | ||
| 120 | + android:layout_weight="1" | ||
| 121 | + android:orientation="vertical"></LinearLayout> | ||
| 122 | + | ||
| 123 | + <LinearLayout | ||
| 124 | + android:layout_width="match_parent" | ||
| 125 | + android:layout_height="wrap_content" | ||
| 126 | + android:layout_weight="1" | ||
| 127 | + android:orientation="vertical"> | ||
| 128 | + | ||
| 129 | + <LinearLayout | ||
| 130 | + android:layout_width="match_parent" | ||
| 131 | + android:layout_height="wrap_content" | ||
| 132 | + android:orientation="vertical"> | ||
| 133 | + | ||
| 134 | + <RelativeLayout | ||
| 135 | + android:layout_width="match_parent" | ||
| 136 | + android:layout_height="match_parent"> | ||
| 137 | + | ||
| 138 | + <TextView | ||
| 139 | + android:id="@+id/explainTextView" | ||
| 140 | + android:layout_width="wrap_content" | ||
| 141 | + android:layout_height="wrap_content" | ||
| 142 | + android:layout_centerInParent="true" | ||
| 143 | + android:layout_gravity="center" | ||
| 144 | + android:gravity="center" | ||
| 145 | + android:text="1. 가구 구성원을 모두 선택해 주세요." /> | ||
| 146 | + | ||
| 147 | + <Button | ||
| 148 | + android:id="@+id/questionButton" | ||
| 149 | + android:layout_width="30dp" | ||
| 150 | + android:layout_height="30dp" | ||
| 151 | + android:layout_gravity="center" | ||
| 152 | + android:layout_toRightOf="@id/explainTextView" | ||
| 153 | + android:backgroundTint="#1E90FF" | ||
| 154 | + android:gravity="center" | ||
| 155 | + android:text=" ? " | ||
| 156 | + android:textSize="8sp" /> | ||
| 157 | + </RelativeLayout> | ||
| 158 | + </LinearLayout> | ||
| 159 | + | ||
| 160 | + <LinearLayout | ||
| 161 | + android:layout_width="match_parent" | ||
| 162 | + android:layout_height="50dp" | ||
| 163 | + android:layout_weight="1" | ||
| 164 | + android:orientation="vertical"> | ||
| 165 | + | ||
| 166 | + </LinearLayout> | ||
| 167 | + | ||
| 168 | + <ScrollView | ||
| 169 | + android:layout_width="match_parent" | ||
| 170 | + android:layout_height="wrap_content"> | ||
| 171 | + | ||
| 172 | + <LinearLayout | ||
| 173 | + android:layout_width="match_parent" | ||
| 174 | + android:layout_height="wrap_content" | ||
| 175 | + android:orientation="vertical"> | ||
| 176 | + | ||
| 177 | + <LinearLayout | ||
| 178 | + android:layout_width="wrap_content" | ||
| 179 | + android:layout_height="wrap_content" | ||
| 180 | + android:layout_gravity="center" | ||
| 181 | + android:gravity="center" | ||
| 182 | + android:orientation="vertical"> | ||
| 183 | + | ||
| 184 | + <LinearLayout | ||
| 185 | + android:layout_width="match_parent" | ||
| 186 | + android:layout_height="match_parent" | ||
| 187 | + android:orientation="horizontal"> | ||
| 188 | + | ||
| 189 | + <ToggleButton | ||
| 190 | + android:id="@+id/baewoojaButton" | ||
| 191 | + android:layout_width="wrap_content" | ||
| 192 | + android:layout_height="wrap_content" | ||
| 193 | + android:layout_weight="1" | ||
| 194 | + android:background="@drawable/profil_selector" | ||
| 195 | + android:text="배우자" | ||
| 196 | + android:textOff="배우자" | ||
| 197 | + android:textOn="배우자" /> | ||
| 198 | + | ||
| 199 | + <ToggleButton | ||
| 200 | + android:id="@+id/baewoojaboomoButton" | ||
| 201 | + android:layout_width="wrap_content" | ||
| 202 | + android:layout_height="wrap_content" | ||
| 203 | + android:layout_weight="1" | ||
| 204 | + android:background="@drawable/profil_selector" | ||
| 205 | + android:text="배우자부모" | ||
| 206 | + android:textOff="배우자부모" | ||
| 207 | + android:textOn="배우자부모" /> | ||
| 208 | + | ||
| 209 | + <ToggleButton | ||
| 210 | + android:id="@+id/baewoojajoboomoButton" | ||
| 211 | + android:layout_width="wrap_content" | ||
| 212 | + android:layout_height="wrap_content" | ||
| 213 | + android:layout_weight="1" | ||
| 214 | + android:background="@drawable/profil_selector" | ||
| 215 | + android:text="배우자의조부모" | ||
| 216 | + android:textOff="배우자의조부모" | ||
| 217 | + android:textOn="배우자의조부모" /> | ||
| 218 | + | ||
| 219 | + </LinearLayout> | ||
| 220 | + | ||
| 221 | + <LinearLayout | ||
| 222 | + android:layout_width="match_parent" | ||
| 223 | + android:layout_height="match_parent" | ||
| 224 | + android:orientation="horizontal"> | ||
| 225 | + | ||
| 226 | + <ToggleButton | ||
| 227 | + android:id="@+id/brotherButton" | ||
| 228 | + android:layout_width="wrap_content" | ||
| 229 | + android:layout_height="wrap_content" | ||
| 230 | + android:layout_weight="1" | ||
| 231 | + android:background="@drawable/profil_selector" | ||
| 232 | + android:text="형제/자매" | ||
| 233 | + android:textOff="형제/자매" | ||
| 234 | + android:textOn="형제/자매" /> | ||
| 235 | + | ||
| 236 | + <ToggleButton | ||
| 237 | + android:id="@+id/baewoojabrotherButton" | ||
| 238 | + android:layout_width="wrap_content" | ||
| 239 | + android:layout_height="wrap_content" | ||
| 240 | + android:layout_weight="1" | ||
| 241 | + android:background="@drawable/profil_selector" | ||
| 242 | + android:text="배우자의형제/자매" | ||
| 243 | + android:textOff="배우자의형제/자매" | ||
| 244 | + android:textOn="배우자의형제/자매" /> | ||
| 245 | + | ||
| 246 | + <ToggleButton | ||
| 247 | + android:id="@+id/donggeoButton" | ||
| 248 | + android:layout_width="wrap_content" | ||
| 249 | + android:layout_height="wrap_content" | ||
| 250 | + android:layout_weight="1" | ||
| 251 | + android:background="@drawable/profil_selector" | ||
| 252 | + android:text="동거인" | ||
| 253 | + android:textOff="동거인" | ||
| 254 | + android:textOn="동거인" /> | ||
| 255 | + </LinearLayout> | ||
| 256 | + | ||
| 257 | + | ||
| 258 | + <LinearLayout | ||
| 259 | + android:layout_width="match_parent" | ||
| 260 | + android:layout_height="match_parent" | ||
| 261 | + android:orientation="horizontal"> | ||
| 262 | + | ||
| 263 | + <ToggleButton | ||
| 264 | + android:id="@+id/fatherButton" | ||
| 265 | + android:layout_width="wrap_content" | ||
| 266 | + android:layout_height="wrap_content" | ||
| 267 | + android:layout_weight="1" | ||
| 268 | + android:background="@drawable/profil_selector" | ||
| 269 | + android:text="아버지" | ||
| 270 | + android:textOff="아버지" | ||
| 271 | + android:textOn="아버지" /> | ||
| 272 | + | ||
| 273 | + <ToggleButton | ||
| 274 | + android:id="@+id/motherButton" | ||
| 275 | + android:layout_width="wrap_content" | ||
| 276 | + android:layout_height="wrap_content" | ||
| 277 | + android:layout_weight="1" | ||
| 278 | + android:background="@drawable/profil_selector" | ||
| 279 | + android:text="어머니" | ||
| 280 | + android:textOff="어머니" | ||
| 281 | + android:textOn="어머니" /> | ||
| 282 | + | ||
| 283 | + <ToggleButton | ||
| 284 | + android:id="@+id/grandsonbaewoojaButton" | ||
| 285 | + android:layout_width="wrap_content" | ||
| 286 | + android:layout_height="wrap_content" | ||
| 287 | + android:layout_weight="1" | ||
| 288 | + android:background="@drawable/profil_selector" | ||
| 289 | + android:text="손자녀의배우자" | ||
| 290 | + android:textOff="손자녀의배우자" | ||
| 291 | + android:textOn="손자녀의배우자" /> | ||
| 292 | + </LinearLayout> | ||
| 293 | + | ||
| 294 | + <LinearLayout | ||
| 295 | + android:layout_width="match_parent" | ||
| 296 | + android:layout_height="match_parent" | ||
| 297 | + android:orientation="horizontal"> | ||
| 298 | + | ||
| 299 | + <ToggleButton | ||
| 300 | + android:id="@+id/grandfatherButton" | ||
| 301 | + android:layout_width="wrap_content" | ||
| 302 | + android:layout_height="wrap_content" | ||
| 303 | + android:layout_weight="1" | ||
| 304 | + android:background="@drawable/profil_selector" | ||
| 305 | + android:text="할아버지" | ||
| 306 | + android:textOff="할아버지" | ||
| 307 | + android:textOn="할아버지" /> | ||
| 308 | + | ||
| 309 | + <ToggleButton | ||
| 310 | + android:id="@+id/grandmotherButton" | ||
| 311 | + android:layout_width="wrap_content" | ||
| 312 | + android:layout_height="wrap_content" | ||
| 313 | + android:layout_weight="1" | ||
| 314 | + android:background="@drawable/profil_selector" | ||
| 315 | + android:text="할머니" | ||
| 316 | + android:textOff="할머니" | ||
| 317 | + android:textOn="할머니" /> | ||
| 318 | + | ||
| 319 | + <ToggleButton | ||
| 320 | + android:id="@+id/grandsonButton" | ||
| 321 | + android:layout_width="wrap_content" | ||
| 322 | + android:layout_height="wrap_content" | ||
| 323 | + android:layout_weight="1" | ||
| 324 | + android:background="@drawable/profil_selector" | ||
| 325 | + android:text="손자녀" | ||
| 326 | + android:textOff="손자녀" | ||
| 327 | + android:textOn="손자녀" /> | ||
| 328 | + </LinearLayout> | ||
| 329 | + | ||
| 330 | + | ||
| 331 | + <LinearLayout | ||
| 332 | + android:layout_width="match_parent" | ||
| 333 | + android:layout_height="match_parent" | ||
| 334 | + android:orientation="horizontal"> | ||
| 335 | + | ||
| 336 | + <ToggleButton | ||
| 337 | + android:id="@+id/janyeoButton" | ||
| 338 | + android:layout_width="wrap_content" | ||
| 339 | + android:layout_height="wrap_content" | ||
| 340 | + android:layout_weight="1" | ||
| 341 | + android:background="@drawable/profil_selector" | ||
| 342 | + android:text="자녀" | ||
| 343 | + android:textOff="자녀" | ||
| 344 | + android:textOn="자녀" /> | ||
| 345 | + | ||
| 346 | + <ToggleButton | ||
| 347 | + android:id="@+id/janyeobaewoojaButton" | ||
| 348 | + android:layout_width="wrap_content" | ||
| 349 | + android:layout_height="wrap_content" | ||
| 350 | + android:layout_weight="1" | ||
| 351 | + android:background="@drawable/profil_selector" | ||
| 352 | + android:text="자녀의배우자" | ||
| 353 | + android:textOff="자녀의배우자" | ||
| 354 | + android:textOn="자녀의배우자" /> | ||
| 355 | + | ||
| 356 | + <ToggleButton | ||
| 357 | + android:id="@+id/nothingButton" | ||
| 358 | + android:layout_width="wrap_content" | ||
| 359 | + android:layout_height="wrap_content" | ||
| 360 | + android:layout_weight="1" | ||
| 361 | + android:background="@drawable/profil_selector" | ||
| 362 | + android:text="해당없음" | ||
| 363 | + android:textOff="해당없음" | ||
| 364 | + android:textOn="해당없음" /> | ||
| 365 | + </LinearLayout> | ||
| 366 | + | ||
| 367 | + </LinearLayout> | ||
| 368 | + </LinearLayout> | ||
| 369 | + </ScrollView> | ||
| 370 | + | ||
| 371 | + <LinearLayout | ||
| 372 | + android:layout_width="match_parent" | ||
| 373 | + android:layout_height="100dp" | ||
| 374 | + android:layout_weight="1" | ||
| 375 | + android:orientation="vertical"></LinearLayout> | ||
| 376 | + | ||
| 377 | + <LinearLayout | ||
| 378 | + android:layout_width="match_parent" | ||
| 379 | + android:layout_height="wrap_content" | ||
| 380 | + android:orientation="horizontal"> | ||
| 381 | + | ||
| 382 | + <Button | ||
| 383 | + android:id="@+id/previousButton" | ||
| 384 | + android:layout_width="10dp" | ||
| 385 | + android:layout_height="wrap_content" | ||
| 386 | + android:layout_weight="1" | ||
| 387 | + android:text="이전 단계로" /> | ||
| 388 | + | ||
| 389 | + <Button | ||
| 390 | + android:id="@+id/nextButton" | ||
| 391 | + android:layout_width="10dp" | ||
| 392 | + android:layout_height="wrap_content" | ||
| 393 | + android:layout_weight="1" | ||
| 394 | + android:text="다음 단계로" /> | ||
| 395 | + </LinearLayout> | ||
| 396 | + </LinearLayout> | ||
| 397 | + </LinearLayout> | ||
| 398 | +</androidx.constraintlayout.widget.ConstraintLayout> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 1 | +<?xml version="1.0" encoding="utf-8"?> | ||
| 2 | +<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
| 3 | + xmlns:app="http://schemas.android.com/apk/res-auto" | ||
| 4 | + xmlns:tools="http://schemas.android.com/tools" | ||
| 5 | + android:layout_width="match_parent" | ||
| 6 | + android:layout_height="match_parent" | ||
| 7 | + tools:context=".InputProfilSecondThreeActivity"> | ||
| 8 | + | ||
| 9 | + <LinearLayout | ||
| 10 | + android:layout_width="match_parent" | ||
| 11 | + android:layout_height="match_parent" | ||
| 12 | + android:orientation="vertical"> | ||
| 13 | + | ||
| 14 | + | ||
| 15 | + | ||
| 16 | + <androidx.appcompat.widget.Toolbar | ||
| 17 | + android:id="@+id/toolbar" | ||
| 18 | + android:layout_width="fill_parent" | ||
| 19 | + android:layout_height="wrap_content" | ||
| 20 | + android:layout_marginBottom="11dp" | ||
| 21 | + android:background="#FFF" | ||
| 22 | + android:elevation="5dp" | ||
| 23 | + android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" | ||
| 24 | + app:popupTheme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> | ||
| 25 | + | ||
| 26 | + <LinearLayout | ||
| 27 | + android:layout_width="match_parent" | ||
| 28 | + android:layout_height="match_parent" | ||
| 29 | + android:orientation="horizontal"> | ||
| 30 | + | ||
| 31 | + <Button | ||
| 32 | + android:id="@+id/skipButton" | ||
| 33 | + android:layout_width="10dp" | ||
| 34 | + android:layout_height="match_parent" | ||
| 35 | + android:layout_weight="1.5" | ||
| 36 | + android:text="건너뛰기"/> | ||
| 37 | + <LinearLayout | ||
| 38 | + android:layout_width="10dp" | ||
| 39 | + android:layout_height="match_parent" | ||
| 40 | + android:orientation="horizontal" | ||
| 41 | + android:layout_weight="1"/> | ||
| 42 | + <ImageView | ||
| 43 | + android:layout_width="77dp" | ||
| 44 | + android:layout_height="44dp" | ||
| 45 | + android:layout_gravity="center" | ||
| 46 | + android:layout_weight="1" | ||
| 47 | + android:src="@drawable/toolbar_logo" /> | ||
| 48 | + <LinearLayout | ||
| 49 | + android:layout_width="10dp" | ||
| 50 | + android:layout_height="match_parent" | ||
| 51 | + android:orientation="horizontal" | ||
| 52 | + android:layout_weight="1"/> | ||
| 53 | + <LinearLayout | ||
| 54 | + android:layout_width="10dp" | ||
| 55 | + android:layout_height="match_parent" | ||
| 56 | + android:orientation="horizontal" | ||
| 57 | + android:layout_weight="1.5"/> | ||
| 58 | + | ||
| 59 | + </LinearLayout> | ||
| 60 | + | ||
| 61 | + | ||
| 62 | + </androidx.appcompat.widget.Toolbar> | ||
| 63 | + | ||
| 64 | + <LinearLayout | ||
| 65 | + android:layout_width="match_parent" | ||
| 66 | + android:layout_height="50dp" | ||
| 67 | + android:layout_weight="0" | ||
| 68 | + android:orientation="horizontal"> | ||
| 69 | + | ||
| 70 | + <TextView | ||
| 71 | + android:id="@+id/stageTextView1" | ||
| 72 | + android:layout_width="wrap_content" | ||
| 73 | + android:layout_height="match_parent" | ||
| 74 | + android:layout_gravity="center" | ||
| 75 | + android:layout_weight="1" | ||
| 76 | + android:background="#1E90FF" | ||
| 77 | + android:gravity="center" | ||
| 78 | + android:text="1" /> | ||
| 79 | + | ||
| 80 | + <TextView | ||
| 81 | + android:id="@+id/stageTextView2" | ||
| 82 | + android:layout_width="wrap_content" | ||
| 83 | + android:layout_height="match_parent" | ||
| 84 | + android:layout_gravity="center" | ||
| 85 | + android:layout_weight="1" | ||
| 86 | + android:background="#1E90FF" | ||
| 87 | + android:gravity="center" | ||
| 88 | + android:text="2" /> | ||
| 89 | + | ||
| 90 | + <TextView | ||
| 91 | + android:id="@+id/stageTextView3" | ||
| 92 | + android:layout_width="wrap_content" | ||
| 93 | + android:layout_height="match_parent" | ||
| 94 | + android:layout_gravity="center" | ||
| 95 | + android:layout_weight="1" | ||
| 96 | + android:gravity="center" | ||
| 97 | + android:text="3" /> | ||
| 98 | + | ||
| 99 | + <TextView | ||
| 100 | + android:id="@+id/stageTextView4" | ||
| 101 | + android:layout_width="wrap_content" | ||
| 102 | + android:layout_height="match_parent" | ||
| 103 | + android:layout_gravity="center" | ||
| 104 | + android:layout_weight="1" | ||
| 105 | + android:gravity="center" | ||
| 106 | + android:text="4" /> | ||
| 107 | + | ||
| 108 | + <TextView | ||
| 109 | + android:id="@+id/stageTextView5" | ||
| 110 | + android:layout_width="wrap_content" | ||
| 111 | + android:layout_height="match_parent" | ||
| 112 | + android:layout_gravity="center" | ||
| 113 | + android:layout_weight="1" | ||
| 114 | + android:gravity="center" | ||
| 115 | + android:text="5" /> | ||
| 116 | + | ||
| 117 | + </LinearLayout> | ||
| 118 | + | ||
| 119 | + <LinearLayout | ||
| 120 | + android:layout_width="match_parent" | ||
| 121 | + android:layout_height="10dp" | ||
| 122 | + android:orientation="vertical"></LinearLayout> | ||
| 123 | + | ||
| 124 | + <LinearLayout | ||
| 125 | + android:layout_width="match_parent" | ||
| 126 | + android:layout_height="50dp" | ||
| 127 | + android:layout_weight="1" | ||
| 128 | + android:orientation="vertical"> | ||
| 129 | + | ||
| 130 | + <LinearLayout | ||
| 131 | + android:layout_width="match_parent" | ||
| 132 | + android:layout_height="10dp" | ||
| 133 | + android:orientation="vertical"> | ||
| 134 | + | ||
| 135 | + </LinearLayout> | ||
| 136 | + | ||
| 137 | + <ScrollView | ||
| 138 | + android:layout_width="match_parent" | ||
| 139 | + android:layout_height="match_parent" | ||
| 140 | + android:layout_weight="1"> | ||
| 141 | + | ||
| 142 | + <LinearLayout | ||
| 143 | + android:layout_width="match_parent" | ||
| 144 | + android:layout_height="wrap_content" | ||
| 145 | + android:orientation="vertical"> | ||
| 146 | + | ||
| 147 | + <LinearLayout | ||
| 148 | + android:layout_width="match_parent" | ||
| 149 | + android:layout_height="wrap_content" | ||
| 150 | + android:orientation="vertical"></LinearLayout> | ||
| 151 | + | ||
| 152 | + <TextView | ||
| 153 | + android:id="@+id/mainTextView" | ||
| 154 | + android:layout_width="match_parent" | ||
| 155 | + android:layout_height="wrap_content" | ||
| 156 | + android:text="4-2. 가족구성원 '형제/자매' 선택 시 총 형제/자매 수를 입력해주세요." /> | ||
| 157 | + | ||
| 158 | + <LinearLayout | ||
| 159 | + android:layout_width="match_parent" | ||
| 160 | + android:layout_height="wrap_content" | ||
| 161 | + android:orientation="vertical"></LinearLayout> | ||
| 162 | + | ||
| 163 | + <LinearLayout | ||
| 164 | + android:layout_width="match_parent" | ||
| 165 | + android:layout_height="wrap_content" | ||
| 166 | + android:orientation="horizontal"> | ||
| 167 | + | ||
| 168 | + <EditText | ||
| 169 | + android:id="@+id/brotherNumberEditText" | ||
| 170 | + android:layout_width="wrap_content" | ||
| 171 | + android:layout_height="wrap_content" | ||
| 172 | + android:layout_weight="1" | ||
| 173 | + android:ems="10" | ||
| 174 | + android:hint="ex) 3" | ||
| 175 | + android:inputType="textPersonName" /> | ||
| 176 | + | ||
| 177 | + <Button | ||
| 178 | + android:id="@+id/brotherNumberInputButton" | ||
| 179 | + android:layout_width="wrap_content" | ||
| 180 | + android:layout_height="wrap_content" | ||
| 181 | + android:layout_weight="1" | ||
| 182 | + android:text="입 력" /> | ||
| 183 | + </LinearLayout> | ||
| 184 | + | ||
| 185 | + <LinearLayout | ||
| 186 | + android:layout_width="match_parent" | ||
| 187 | + android:layout_height="wrap_content" | ||
| 188 | + android:orientation="vertical"> | ||
| 189 | + | ||
| 190 | + <LinearLayout | ||
| 191 | + android:id="@+id/brother1LinearLayout" | ||
| 192 | + android:layout_width="match_parent" | ||
| 193 | + android:layout_height="wrap_content" | ||
| 194 | + android:orientation="vertical"> | ||
| 195 | + | ||
| 196 | + <TextView | ||
| 197 | + android:id="@+id/brother1TextView" | ||
| 198 | + android:layout_width="match_parent" | ||
| 199 | + android:layout_height="wrap_content" | ||
| 200 | + android:text="형제자매 1" /> | ||
| 201 | + | ||
| 202 | + <LinearLayout | ||
| 203 | + android:layout_width="match_parent" | ||
| 204 | + android:layout_height="match_parent" | ||
| 205 | + android:orientation="vertical"></LinearLayout> | ||
| 206 | + | ||
| 207 | + <TextView | ||
| 208 | + android:id="@+id/brother1BirthTextView" | ||
| 209 | + android:layout_width="match_parent" | ||
| 210 | + android:layout_height="wrap_content" | ||
| 211 | + android:text="생년월일" /> | ||
| 212 | + | ||
| 213 | + <LinearLayout | ||
| 214 | + android:layout_width="match_parent" | ||
| 215 | + android:layout_height="match_parent" | ||
| 216 | + android:orientation="horizontal"> | ||
| 217 | + | ||
| 218 | + <EditText | ||
| 219 | + android:id="@+id/brother1BirthEditText" | ||
| 220 | + android:layout_width="wrap_content" | ||
| 221 | + android:layout_height="wrap_content" | ||
| 222 | + android:layout_weight="1" | ||
| 223 | + android:ems="10" | ||
| 224 | + android:inputType="textPersonName" /> | ||
| 225 | + | ||
| 226 | + <Button | ||
| 227 | + android:id="@+id/brother1BirthInputButton" | ||
| 228 | + android:layout_width="wrap_content" | ||
| 229 | + android:layout_height="wrap_content" | ||
| 230 | + android:layout_weight="1" | ||
| 231 | + android:text="입력" /> | ||
| 232 | + | ||
| 233 | + </LinearLayout> | ||
| 234 | + | ||
| 235 | + <LinearLayout | ||
| 236 | + android:layout_width="match_parent" | ||
| 237 | + android:layout_height="match_parent" | ||
| 238 | + android:orientation="vertical"></LinearLayout> | ||
| 239 | + | ||
| 240 | + <TextView | ||
| 241 | + android:id="@+id/brother1SexTextView" | ||
| 242 | + android:layout_width="match_parent" | ||
| 243 | + android:layout_height="wrap_content" | ||
| 244 | + android:text="TextView" /> | ||
| 245 | + | ||
| 246 | + <LinearLayout | ||
| 247 | + android:layout_width="match_parent" | ||
| 248 | + android:layout_height="match_parent" | ||
| 249 | + android:orientation="horizontal"> | ||
| 250 | + | ||
| 251 | + <ToggleButton | ||
| 252 | + android:id="@+id/brother1SexManButton" | ||
| 253 | + android:layout_width="wrap_content" | ||
| 254 | + android:layout_height="wrap_content" | ||
| 255 | + android:layout_weight="1" | ||
| 256 | + android:background="@drawable/profil_selector" | ||
| 257 | + android:text="ToggleButton" | ||
| 258 | + android:textOff="남자" | ||
| 259 | + android:textOn="남자" /> | ||
| 260 | + | ||
| 261 | + <ToggleButton | ||
| 262 | + android:id="@+id/brother1SexWomanButton" | ||
| 263 | + android:layout_width="wrap_content" | ||
| 264 | + android:layout_height="wrap_content" | ||
| 265 | + android:layout_weight="1" | ||
| 266 | + android:background="@drawable/profil_selector" | ||
| 267 | + android:text="ToggleButton" | ||
| 268 | + android:textOff="여자" | ||
| 269 | + android:textOn="여자" /> | ||
| 270 | + </LinearLayout> | ||
| 271 | + | ||
| 272 | + </LinearLayout> | ||
| 273 | + | ||
| 274 | + | ||
| 275 | + <LinearLayout | ||
| 276 | + android:id="@+id/brother2LinearLayout" | ||
| 277 | + android:layout_width="match_parent" | ||
| 278 | + android:layout_height="wrap_content" | ||
| 279 | + android:orientation="vertical"> | ||
| 280 | + | ||
| 281 | + <TextView | ||
| 282 | + android:id="@+id/brother2TextView" | ||
| 283 | + android:layout_width="match_parent" | ||
| 284 | + android:layout_height="wrap_content" | ||
| 285 | + android:text="형제자매 2" /> | ||
| 286 | + | ||
| 287 | + <LinearLayout | ||
| 288 | + android:layout_width="match_parent" | ||
| 289 | + android:layout_height="match_parent" | ||
| 290 | + android:orientation="vertical"></LinearLayout> | ||
| 291 | + | ||
| 292 | + <TextView | ||
| 293 | + android:id="@+id/brother2BirthTextView" | ||
| 294 | + android:layout_width="match_parent" | ||
| 295 | + android:layout_height="wrap_content" | ||
| 296 | + android:text="생년월일" /> | ||
| 297 | + | ||
| 298 | + <LinearLayout | ||
| 299 | + android:layout_width="match_parent" | ||
| 300 | + android:layout_height="match_parent" | ||
| 301 | + android:orientation="horizontal"> | ||
| 302 | + | ||
| 303 | + <EditText | ||
| 304 | + android:id="@+id/brother2BirthEditText" | ||
| 305 | + android:layout_width="wrap_content" | ||
| 306 | + android:layout_height="wrap_content" | ||
| 307 | + android:layout_weight="1" | ||
| 308 | + android:ems="10" | ||
| 309 | + android:inputType="textPersonName" /> | ||
| 310 | + | ||
| 311 | + <Button | ||
| 312 | + android:id="@+id/brother2BirthInputButton" | ||
| 313 | + android:layout_width="wrap_content" | ||
| 314 | + android:layout_height="wrap_content" | ||
| 315 | + android:layout_weight="1" | ||
| 316 | + android:text="입력" /> | ||
| 317 | + | ||
| 318 | + </LinearLayout> | ||
| 319 | + | ||
| 320 | + <LinearLayout | ||
| 321 | + android:layout_width="match_parent" | ||
| 322 | + android:layout_height="match_parent" | ||
| 323 | + android:orientation="vertical"></LinearLayout> | ||
| 324 | + | ||
| 325 | + <TextView | ||
| 326 | + android:id="@+id/brother2SexTextView" | ||
| 327 | + android:layout_width="match_parent" | ||
| 328 | + android:layout_height="wrap_content" | ||
| 329 | + android:text="TextView" /> | ||
| 330 | + | ||
| 331 | + <LinearLayout | ||
| 332 | + android:layout_width="match_parent" | ||
| 333 | + android:layout_height="match_parent" | ||
| 334 | + android:orientation="horizontal"> | ||
| 335 | + | ||
| 336 | + <ToggleButton | ||
| 337 | + android:id="@+id/brother2SexManButton" | ||
| 338 | + android:layout_width="wrap_content" | ||
| 339 | + android:layout_height="wrap_content" | ||
| 340 | + android:layout_weight="1" | ||
| 341 | + android:background="@drawable/profil_selector" | ||
| 342 | + android:text="ToggleButton" | ||
| 343 | + android:textOff="남자" | ||
| 344 | + android:textOn="남자" /> | ||
| 345 | + | ||
| 346 | + <ToggleButton | ||
| 347 | + android:id="@+id/brother2SexWomanButton" | ||
| 348 | + android:layout_width="wrap_content" | ||
| 349 | + android:layout_height="wrap_content" | ||
| 350 | + android:layout_weight="1" | ||
| 351 | + android:background="@drawable/profil_selector" | ||
| 352 | + android:text="ToggleButton" | ||
| 353 | + android:textOff="여자" | ||
| 354 | + android:textOn="여자" /> | ||
| 355 | + </LinearLayout> | ||
| 356 | + | ||
| 357 | + </LinearLayout> | ||
| 358 | + | ||
| 359 | + | ||
| 360 | + <LinearLayout | ||
| 361 | + android:id="@+id/brother3LinearLayout" | ||
| 362 | + android:layout_width="match_parent" | ||
| 363 | + android:layout_height="wrap_content" | ||
| 364 | + android:orientation="vertical"> | ||
| 365 | + | ||
| 366 | + <TextView | ||
| 367 | + android:id="@+id/brother3TextView" | ||
| 368 | + android:layout_width="match_parent" | ||
| 369 | + android:layout_height="wrap_content" | ||
| 370 | + android:text="형제자매 3" /> | ||
| 371 | + | ||
| 372 | + <LinearLayout | ||
| 373 | + android:layout_width="match_parent" | ||
| 374 | + android:layout_height="match_parent" | ||
| 375 | + android:orientation="vertical"></LinearLayout> | ||
| 376 | + | ||
| 377 | + <TextView | ||
| 378 | + android:id="@+id/brother3BirthTextView" | ||
| 379 | + android:layout_width="match_parent" | ||
| 380 | + android:layout_height="wrap_content" | ||
| 381 | + android:text="생년월일" /> | ||
| 382 | + | ||
| 383 | + <LinearLayout | ||
| 384 | + android:layout_width="match_parent" | ||
| 385 | + android:layout_height="match_parent" | ||
| 386 | + android:orientation="horizontal"> | ||
| 387 | + | ||
| 388 | + <EditText | ||
| 389 | + android:id="@+id/brother3BirthEditText" | ||
| 390 | + android:layout_width="wrap_content" | ||
| 391 | + android:layout_height="wrap_content" | ||
| 392 | + android:layout_weight="1" | ||
| 393 | + android:ems="10" | ||
| 394 | + android:inputType="textPersonName" /> | ||
| 395 | + | ||
| 396 | + <Button | ||
| 397 | + android:id="@+id/brother3BirthInputButton" | ||
| 398 | + android:layout_width="wrap_content" | ||
| 399 | + android:layout_height="wrap_content" | ||
| 400 | + android:layout_weight="1" | ||
| 401 | + android:text="입력" /> | ||
| 402 | + | ||
| 403 | + </LinearLayout> | ||
| 404 | + | ||
| 405 | + <LinearLayout | ||
| 406 | + android:layout_width="match_parent" | ||
| 407 | + android:layout_height="match_parent" | ||
| 408 | + android:orientation="vertical"></LinearLayout> | ||
| 409 | + | ||
| 410 | + <TextView | ||
| 411 | + android:id="@+id/brother3SexTextView" | ||
| 412 | + android:layout_width="match_parent" | ||
| 413 | + android:layout_height="wrap_content" | ||
| 414 | + android:text="TextView" /> | ||
| 415 | + | ||
| 416 | + <LinearLayout | ||
| 417 | + android:layout_width="match_parent" | ||
| 418 | + android:layout_height="match_parent" | ||
| 419 | + android:orientation="horizontal"> | ||
| 420 | + | ||
| 421 | + <ToggleButton | ||
| 422 | + android:id="@+id/brother3SexManButton" | ||
| 423 | + android:layout_width="wrap_content" | ||
| 424 | + android:layout_height="wrap_content" | ||
| 425 | + android:layout_weight="1" | ||
| 426 | + android:background="@drawable/profil_selector" | ||
| 427 | + android:text="ToggleButton" | ||
| 428 | + android:textOff="남자" | ||
| 429 | + android:textOn="남자" /> | ||
| 430 | + | ||
| 431 | + <ToggleButton | ||
| 432 | + android:id="@+id/brother3SexWomanButton" | ||
| 433 | + android:layout_width="wrap_content" | ||
| 434 | + android:layout_height="wrap_content" | ||
| 435 | + android:layout_weight="1" | ||
| 436 | + android:background="@drawable/profil_selector" | ||
| 437 | + android:text="ToggleButton" | ||
| 438 | + android:textOff="여자" | ||
| 439 | + android:textOn="여자" /> | ||
| 440 | + </LinearLayout> | ||
| 441 | + | ||
| 442 | + </LinearLayout> | ||
| 443 | + | ||
| 444 | + | ||
| 445 | + <LinearLayout | ||
| 446 | + android:id="@+id/brother4LinearLayout" | ||
| 447 | + android:layout_width="match_parent" | ||
| 448 | + android:layout_height="wrap_content" | ||
| 449 | + android:orientation="vertical"> | ||
| 450 | + | ||
| 451 | + <TextView | ||
| 452 | + android:id="@+id/brother4TextView" | ||
| 453 | + android:layout_width="match_parent" | ||
| 454 | + android:layout_height="wrap_content" | ||
| 455 | + android:text="형제자매 4" /> | ||
| 456 | + | ||
| 457 | + <LinearLayout | ||
| 458 | + android:layout_width="match_parent" | ||
| 459 | + android:layout_height="match_parent" | ||
| 460 | + android:orientation="vertical"></LinearLayout> | ||
| 461 | + | ||
| 462 | + <TextView | ||
| 463 | + android:id="@+id/brother4BirthTextView" | ||
| 464 | + android:layout_width="match_parent" | ||
| 465 | + android:layout_height="wrap_content" | ||
| 466 | + android:text="생년월일" /> | ||
| 467 | + | ||
| 468 | + <LinearLayout | ||
| 469 | + android:layout_width="match_parent" | ||
| 470 | + android:layout_height="match_parent" | ||
| 471 | + android:orientation="horizontal"> | ||
| 472 | + | ||
| 473 | + <EditText | ||
| 474 | + android:id="@+id/brother4BirthEditText" | ||
| 475 | + android:layout_width="wrap_content" | ||
| 476 | + android:layout_height="wrap_content" | ||
| 477 | + android:layout_weight="1" | ||
| 478 | + android:ems="10" | ||
| 479 | + android:inputType="textPersonName" /> | ||
| 480 | + | ||
| 481 | + <Button | ||
| 482 | + android:id="@+id/brother4BirthInputButton" | ||
| 483 | + android:layout_width="wrap_content" | ||
| 484 | + android:layout_height="wrap_content" | ||
| 485 | + android:layout_weight="1" | ||
| 486 | + android:text="입력" /> | ||
| 487 | + | ||
| 488 | + </LinearLayout> | ||
| 489 | + | ||
| 490 | + <LinearLayout | ||
| 491 | + android:layout_width="match_parent" | ||
| 492 | + android:layout_height="match_parent" | ||
| 493 | + android:orientation="vertical"></LinearLayout> | ||
| 494 | + | ||
| 495 | + <TextView | ||
| 496 | + android:id="@+id/brother4SexTextView" | ||
| 497 | + android:layout_width="match_parent" | ||
| 498 | + android:layout_height="wrap_content" | ||
| 499 | + android:text="TextView" /> | ||
| 500 | + | ||
| 501 | + <LinearLayout | ||
| 502 | + android:layout_width="match_parent" | ||
| 503 | + android:layout_height="match_parent" | ||
| 504 | + android:orientation="horizontal"> | ||
| 505 | + | ||
| 506 | + <ToggleButton | ||
| 507 | + android:id="@+id/brother4SexManButton" | ||
| 508 | + android:layout_width="wrap_content" | ||
| 509 | + android:layout_height="wrap_content" | ||
| 510 | + android:layout_weight="1" | ||
| 511 | + android:background="@drawable/profil_selector" | ||
| 512 | + android:text="ToggleButton" | ||
| 513 | + android:textOff="남자" | ||
| 514 | + android:textOn="남자" /> | ||
| 515 | + | ||
| 516 | + <ToggleButton | ||
| 517 | + android:id="@+id/brother4SexWomanButton" | ||
| 518 | + android:layout_width="wrap_content" | ||
| 519 | + android:layout_height="wrap_content" | ||
| 520 | + android:layout_weight="1" | ||
| 521 | + android:background="@drawable/profil_selector" | ||
| 522 | + android:text="ToggleButton" | ||
| 523 | + android:textOff="여자" | ||
| 524 | + android:textOn="여자" /> | ||
| 525 | + </LinearLayout> | ||
| 526 | + | ||
| 527 | + </LinearLayout> | ||
| 528 | + | ||
| 529 | + | ||
| 530 | + <LinearLayout | ||
| 531 | + android:id="@+id/brother5LinearLayout" | ||
| 532 | + android:layout_width="match_parent" | ||
| 533 | + android:layout_height="wrap_content" | ||
| 534 | + android:orientation="vertical"> | ||
| 535 | + | ||
| 536 | + <TextView | ||
| 537 | + android:id="@+id/brother5TextView" | ||
| 538 | + android:layout_width="match_parent" | ||
| 539 | + android:layout_height="wrap_content" | ||
| 540 | + android:text="형제자매 5" /> | ||
| 541 | + | ||
| 542 | + <LinearLayout | ||
| 543 | + android:layout_width="match_parent" | ||
| 544 | + android:layout_height="match_parent" | ||
| 545 | + android:orientation="vertical"></LinearLayout> | ||
| 546 | + | ||
| 547 | + <TextView | ||
| 548 | + android:id="@+id/brother5BirthTextView" | ||
| 549 | + android:layout_width="match_parent" | ||
| 550 | + android:layout_height="wrap_content" | ||
| 551 | + android:text="생년월일" /> | ||
| 552 | + | ||
| 553 | + <LinearLayout | ||
| 554 | + android:layout_width="match_parent" | ||
| 555 | + android:layout_height="match_parent" | ||
| 556 | + android:orientation="horizontal"> | ||
| 557 | + | ||
| 558 | + <EditText | ||
| 559 | + android:id="@+id/brother5BirthEditText" | ||
| 560 | + android:layout_width="wrap_content" | ||
| 561 | + android:layout_height="wrap_content" | ||
| 562 | + android:layout_weight="1" | ||
| 563 | + android:ems="10" | ||
| 564 | + android:inputType="textPersonName" /> | ||
| 565 | + | ||
| 566 | + <Button | ||
| 567 | + android:id="@+id/brother5BirthInputButton" | ||
| 568 | + android:layout_width="wrap_content" | ||
| 569 | + android:layout_height="wrap_content" | ||
| 570 | + android:layout_weight="1" | ||
| 571 | + android:text="입력" /> | ||
| 572 | + | ||
| 573 | + </LinearLayout> | ||
| 574 | + | ||
| 575 | + <LinearLayout | ||
| 576 | + android:layout_width="match_parent" | ||
| 577 | + android:layout_height="match_parent" | ||
| 578 | + android:orientation="vertical"></LinearLayout> | ||
| 579 | + | ||
| 580 | + <TextView | ||
| 581 | + android:id="@+id/brother5SexTextView" | ||
| 582 | + android:layout_width="match_parent" | ||
| 583 | + android:layout_height="wrap_content" | ||
| 584 | + android:text="TextView" /> | ||
| 585 | + | ||
| 586 | + <LinearLayout | ||
| 587 | + android:layout_width="match_parent" | ||
| 588 | + android:layout_height="match_parent" | ||
| 589 | + android:orientation="horizontal"> | ||
| 590 | + | ||
| 591 | + <ToggleButton | ||
| 592 | + android:id="@+id/brother5SexManButton" | ||
| 593 | + android:layout_width="wrap_content" | ||
| 594 | + android:layout_height="wrap_content" | ||
| 595 | + android:layout_weight="1" | ||
| 596 | + android:background="@drawable/profil_selector" | ||
| 597 | + android:text="ToggleButton" | ||
| 598 | + android:textOff="남자" | ||
| 599 | + android:textOn="남자" /> | ||
| 600 | + | ||
| 601 | + <ToggleButton | ||
| 602 | + android:id="@+id/brother5SexWomanButton" | ||
| 603 | + android:layout_width="wrap_content" | ||
| 604 | + android:layout_height="wrap_content" | ||
| 605 | + android:layout_weight="1" | ||
| 606 | + android:background="@drawable/profil_selector" | ||
| 607 | + android:text="ToggleButton" | ||
| 608 | + android:textOff="여자" | ||
| 609 | + android:textOn="여자" /> | ||
| 610 | + </LinearLayout> | ||
| 611 | + | ||
| 612 | + </LinearLayout> | ||
| 613 | + | ||
| 614 | + | ||
| 615 | + </LinearLayout> | ||
| 616 | + | ||
| 617 | + <LinearLayout | ||
| 618 | + android:layout_width="match_parent" | ||
| 619 | + android:layout_height="wrap_content" | ||
| 620 | + android:orientation="horizontal"> | ||
| 621 | + | ||
| 622 | + <Button | ||
| 623 | + android:id="@+id/previousButton" | ||
| 624 | + android:layout_width="10dp" | ||
| 625 | + android:layout_height="wrap_content" | ||
| 626 | + android:layout_weight="1" | ||
| 627 | + android:text="이전 단계로" /> | ||
| 628 | + | ||
| 629 | + <Button | ||
| 630 | + android:id="@+id/nextButton" | ||
| 631 | + android:layout_width="10dp" | ||
| 632 | + android:layout_height="wrap_content" | ||
| 633 | + android:layout_weight="1" | ||
| 634 | + android:text="다음 단계로" /> | ||
| 635 | + </LinearLayout> | ||
| 636 | + | ||
| 637 | + </LinearLayout> | ||
| 638 | + </ScrollView> | ||
| 639 | + | ||
| 640 | + </LinearLayout> | ||
| 641 | + </LinearLayout> | ||
| 642 | +</androidx.constraintlayout.widget.ConstraintLayout> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 1 | +<?xml version="1.0" encoding="utf-8"?> | ||
| 2 | +<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
| 3 | + xmlns:app="http://schemas.android.com/apk/res-auto" | ||
| 4 | + xmlns:tools="http://schemas.android.com/tools" | ||
| 5 | + android:layout_width="match_parent" | ||
| 6 | + android:layout_height="match_parent" | ||
| 7 | + tools:context=".InputProfilSecondTwoActivity"> | ||
| 8 | + | ||
| 9 | + <LinearLayout | ||
| 10 | + android:layout_width="match_parent" | ||
| 11 | + android:layout_height="match_parent" | ||
| 12 | + android:orientation="vertical"> | ||
| 13 | + | ||
| 14 | + | ||
| 15 | + | ||
| 16 | + <androidx.appcompat.widget.Toolbar | ||
| 17 | + android:id="@+id/toolbar" | ||
| 18 | + android:layout_width="fill_parent" | ||
| 19 | + android:layout_height="wrap_content" | ||
| 20 | + android:layout_marginBottom="11dp" | ||
| 21 | + android:background="#FFF" | ||
| 22 | + android:elevation="5dp" | ||
| 23 | + android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" | ||
| 24 | + app:popupTheme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> | ||
| 25 | + | ||
| 26 | + <LinearLayout | ||
| 27 | + android:layout_width="match_parent" | ||
| 28 | + android:layout_height="match_parent" | ||
| 29 | + android:orientation="horizontal"> | ||
| 30 | + | ||
| 31 | + <Button | ||
| 32 | + android:id="@+id/skipButton" | ||
| 33 | + android:layout_width="10dp" | ||
| 34 | + android:layout_height="match_parent" | ||
| 35 | + android:layout_weight="1.5" | ||
| 36 | + android:text="건너뛰기"/> | ||
| 37 | + <LinearLayout | ||
| 38 | + android:layout_width="10dp" | ||
| 39 | + android:layout_height="match_parent" | ||
| 40 | + android:orientation="horizontal" | ||
| 41 | + android:layout_weight="1"/> | ||
| 42 | + <ImageView | ||
| 43 | + android:layout_width="77dp" | ||
| 44 | + android:layout_height="44dp" | ||
| 45 | + android:layout_gravity="center" | ||
| 46 | + android:layout_weight="1" | ||
| 47 | + android:src="@drawable/toolbar_logo" /> | ||
| 48 | + <LinearLayout | ||
| 49 | + android:layout_width="10dp" | ||
| 50 | + android:layout_height="match_parent" | ||
| 51 | + android:orientation="horizontal" | ||
| 52 | + android:layout_weight="1"/> | ||
| 53 | + <LinearLayout | ||
| 54 | + android:layout_width="10dp" | ||
| 55 | + android:layout_height="match_parent" | ||
| 56 | + android:orientation="horizontal" | ||
| 57 | + android:layout_weight="1.5"/> | ||
| 58 | + | ||
| 59 | + </LinearLayout> | ||
| 60 | + | ||
| 61 | + | ||
| 62 | + </androidx.appcompat.widget.Toolbar> | ||
| 63 | + | ||
| 64 | + <LinearLayout | ||
| 65 | + android:layout_width="match_parent" | ||
| 66 | + android:layout_height="50dp" | ||
| 67 | + android:layout_weight="0" | ||
| 68 | + android:orientation="horizontal"> | ||
| 69 | + | ||
| 70 | + <TextView | ||
| 71 | + android:id="@+id/stageTextView1" | ||
| 72 | + android:layout_width="wrap_content" | ||
| 73 | + android:layout_height="match_parent" | ||
| 74 | + android:layout_gravity="center" | ||
| 75 | + android:layout_weight="1" | ||
| 76 | + android:background="#1E90FF" | ||
| 77 | + android:gravity="center" | ||
| 78 | + android:text="1" /> | ||
| 79 | + | ||
| 80 | + <TextView | ||
| 81 | + android:id="@+id/stageTextView2" | ||
| 82 | + android:layout_width="wrap_content" | ||
| 83 | + android:layout_height="match_parent" | ||
| 84 | + android:layout_gravity="center" | ||
| 85 | + android:layout_weight="1" | ||
| 86 | + android:background="#1E90FF" | ||
| 87 | + android:gravity="center" | ||
| 88 | + android:text="2" /> | ||
| 89 | + | ||
| 90 | + <TextView | ||
| 91 | + android:id="@+id/stageTextView3" | ||
| 92 | + android:layout_width="wrap_content" | ||
| 93 | + android:layout_height="match_parent" | ||
| 94 | + android:layout_gravity="center" | ||
| 95 | + android:layout_weight="1" | ||
| 96 | + android:gravity="center" | ||
| 97 | + android:text="3" /> | ||
| 98 | + | ||
| 99 | + <TextView | ||
| 100 | + android:id="@+id/stageTextView4" | ||
| 101 | + android:layout_width="wrap_content" | ||
| 102 | + android:layout_height="match_parent" | ||
| 103 | + android:layout_gravity="center" | ||
| 104 | + android:layout_weight="1" | ||
| 105 | + android:gravity="center" | ||
| 106 | + android:text="4" /> | ||
| 107 | + | ||
| 108 | + <TextView | ||
| 109 | + android:id="@+id/stageTextView5" | ||
| 110 | + android:layout_width="wrap_content" | ||
| 111 | + android:layout_height="match_parent" | ||
| 112 | + android:layout_gravity="center" | ||
| 113 | + android:layout_weight="1" | ||
| 114 | + android:gravity="center" | ||
| 115 | + android:text="5" /> | ||
| 116 | + | ||
| 117 | + </LinearLayout> | ||
| 118 | + | ||
| 119 | + <LinearLayout | ||
| 120 | + android:layout_width="match_parent" | ||
| 121 | + android:layout_height="10dp" | ||
| 122 | + android:orientation="vertical"></LinearLayout> | ||
| 123 | + | ||
| 124 | + <LinearLayout | ||
| 125 | + android:layout_width="match_parent" | ||
| 126 | + android:layout_height="50dp" | ||
| 127 | + android:layout_weight="1" | ||
| 128 | + android:orientation="vertical"> | ||
| 129 | + | ||
| 130 | + <LinearLayout | ||
| 131 | + android:layout_width="match_parent" | ||
| 132 | + android:layout_height="10dp" | ||
| 133 | + android:orientation="vertical"> | ||
| 134 | + | ||
| 135 | + </LinearLayout> | ||
| 136 | + | ||
| 137 | + <ScrollView | ||
| 138 | + android:layout_width="match_parent" | ||
| 139 | + android:layout_height="match_parent" | ||
| 140 | + android:layout_weight="1"> | ||
| 141 | + | ||
| 142 | + <LinearLayout | ||
| 143 | + android:layout_width="match_parent" | ||
| 144 | + android:layout_height="wrap_content" | ||
| 145 | + android:orientation="vertical"> | ||
| 146 | + | ||
| 147 | + <LinearLayout | ||
| 148 | + android:layout_width="match_parent" | ||
| 149 | + android:layout_height="wrap_content" | ||
| 150 | + android:orientation="vertical"></LinearLayout> | ||
| 151 | + | ||
| 152 | + <TextView | ||
| 153 | + android:id="@+id/mainTextView" | ||
| 154 | + android:layout_width="match_parent" | ||
| 155 | + android:layout_height="wrap_content" | ||
| 156 | + android:text="4-1. 가족구성원 '자녀' 선택 시 총 자녀 수를 입력해주세요." /> | ||
| 157 | + | ||
| 158 | + <LinearLayout | ||
| 159 | + android:layout_width="match_parent" | ||
| 160 | + android:layout_height="wrap_content" | ||
| 161 | + android:orientation="vertical"></LinearLayout> | ||
| 162 | + | ||
| 163 | + <LinearLayout | ||
| 164 | + android:layout_width="match_parent" | ||
| 165 | + android:layout_height="wrap_content" | ||
| 166 | + android:orientation="horizontal"> | ||
| 167 | + | ||
| 168 | + <EditText | ||
| 169 | + android:id="@+id/childNumberEditText" | ||
| 170 | + android:layout_width="wrap_content" | ||
| 171 | + android:layout_height="wrap_content" | ||
| 172 | + android:layout_weight="1" | ||
| 173 | + android:ems="10" | ||
| 174 | + android:hint="ex) 3" | ||
| 175 | + android:inputType="textPersonName" /> | ||
| 176 | + | ||
| 177 | + <Button | ||
| 178 | + android:id="@+id/childNumberInputButton" | ||
| 179 | + android:layout_width="wrap_content" | ||
| 180 | + android:layout_height="wrap_content" | ||
| 181 | + android:layout_weight="1" | ||
| 182 | + android:text="입 력" /> | ||
| 183 | + </LinearLayout> | ||
| 184 | + | ||
| 185 | + <LinearLayout | ||
| 186 | + android:layout_width="match_parent" | ||
| 187 | + android:layout_height="wrap_content" | ||
| 188 | + android:orientation="vertical"> | ||
| 189 | + | ||
| 190 | + <LinearLayout | ||
| 191 | + android:id="@+id/child1LinearLayout" | ||
| 192 | + android:layout_width="match_parent" | ||
| 193 | + android:layout_height="wrap_content" | ||
| 194 | + android:orientation="vertical" | ||
| 195 | + android:visibility="gone"> | ||
| 196 | + | ||
| 197 | + <TextView | ||
| 198 | + android:id="@+id/child1TextView" | ||
| 199 | + android:layout_width="match_parent" | ||
| 200 | + android:layout_height="wrap_content" | ||
| 201 | + android:text="자녀 1" /> | ||
| 202 | + | ||
| 203 | + <LinearLayout | ||
| 204 | + android:layout_width="match_parent" | ||
| 205 | + android:layout_height="match_parent" | ||
| 206 | + android:orientation="vertical"></LinearLayout> | ||
| 207 | + | ||
| 208 | + <TextView | ||
| 209 | + android:id="@+id/child1BirthTextView" | ||
| 210 | + android:layout_width="match_parent" | ||
| 211 | + android:layout_height="wrap_content" | ||
| 212 | + android:text="생년월일" /> | ||
| 213 | + | ||
| 214 | + <LinearLayout | ||
| 215 | + android:layout_width="match_parent" | ||
| 216 | + android:layout_height="match_parent" | ||
| 217 | + android:orientation="horizontal"> | ||
| 218 | + | ||
| 219 | + <EditText | ||
| 220 | + android:id="@+id/child1BirthEditText" | ||
| 221 | + android:layout_width="wrap_content" | ||
| 222 | + android:layout_height="wrap_content" | ||
| 223 | + android:layout_weight="1" | ||
| 224 | + android:ems="10" | ||
| 225 | + android:inputType="textPersonName" /> | ||
| 226 | + | ||
| 227 | + <Button | ||
| 228 | + android:id="@+id/child1BirthInputButton" | ||
| 229 | + android:layout_width="wrap_content" | ||
| 230 | + android:layout_height="wrap_content" | ||
| 231 | + android:layout_weight="1" | ||
| 232 | + android:text="입력" /> | ||
| 233 | + | ||
| 234 | + </LinearLayout> | ||
| 235 | + | ||
| 236 | + <LinearLayout | ||
| 237 | + android:layout_width="match_parent" | ||
| 238 | + android:layout_height="match_parent" | ||
| 239 | + android:orientation="vertical"></LinearLayout> | ||
| 240 | + | ||
| 241 | + <TextView | ||
| 242 | + android:id="@+id/child1SexTextView" | ||
| 243 | + android:layout_width="match_parent" | ||
| 244 | + android:layout_height="wrap_content" | ||
| 245 | + android:text="TextView" /> | ||
| 246 | + | ||
| 247 | + <LinearLayout | ||
| 248 | + android:layout_width="match_parent" | ||
| 249 | + android:layout_height="match_parent" | ||
| 250 | + android:orientation="horizontal"> | ||
| 251 | + | ||
| 252 | + <ToggleButton | ||
| 253 | + android:id="@+id/child1SexManButton" | ||
| 254 | + android:layout_width="wrap_content" | ||
| 255 | + android:layout_height="wrap_content" | ||
| 256 | + android:layout_weight="1" | ||
| 257 | + android:background="@drawable/profil_selector" | ||
| 258 | + android:text="ToggleButton" | ||
| 259 | + android:textOff="남자" | ||
| 260 | + android:textOn="남자" /> | ||
| 261 | + | ||
| 262 | + <ToggleButton | ||
| 263 | + android:id="@+id/child1SexWomanButton" | ||
| 264 | + android:layout_width="wrap_content" | ||
| 265 | + android:layout_height="wrap_content" | ||
| 266 | + android:layout_weight="1" | ||
| 267 | + android:background="@drawable/profil_selector" | ||
| 268 | + android:text="ToggleButton" | ||
| 269 | + android:textOff="여자" | ||
| 270 | + android:textOn="여자" /> | ||
| 271 | + </LinearLayout> | ||
| 272 | + | ||
| 273 | + </LinearLayout> | ||
| 274 | + | ||
| 275 | + | ||
| 276 | + <LinearLayout | ||
| 277 | + android:id="@+id/child2LinearLayout" | ||
| 278 | + android:layout_width="match_parent" | ||
| 279 | + android:layout_height="wrap_content" | ||
| 280 | + android:orientation="vertical" | ||
| 281 | + android:visibility="gone"> | ||
| 282 | + | ||
| 283 | + <TextView | ||
| 284 | + android:id="@+id/child2TextView" | ||
| 285 | + android:layout_width="match_parent" | ||
| 286 | + android:layout_height="wrap_content" | ||
| 287 | + android:text="자녀 2" /> | ||
| 288 | + | ||
| 289 | + <LinearLayout | ||
| 290 | + android:layout_width="match_parent" | ||
| 291 | + android:layout_height="match_parent" | ||
| 292 | + android:orientation="vertical"></LinearLayout> | ||
| 293 | + | ||
| 294 | + <TextView | ||
| 295 | + android:id="@+id/child2BirthTextView" | ||
| 296 | + android:layout_width="match_parent" | ||
| 297 | + android:layout_height="wrap_content" | ||
| 298 | + android:text="생년월일" /> | ||
| 299 | + | ||
| 300 | + <LinearLayout | ||
| 301 | + android:layout_width="match_parent" | ||
| 302 | + android:layout_height="match_parent" | ||
| 303 | + android:orientation="horizontal"> | ||
| 304 | + | ||
| 305 | + <EditText | ||
| 306 | + android:id="@+id/child2BirthEditText" | ||
| 307 | + android:layout_width="wrap_content" | ||
| 308 | + android:layout_height="wrap_content" | ||
| 309 | + android:layout_weight="1" | ||
| 310 | + android:ems="10" | ||
| 311 | + android:inputType="textPersonName" /> | ||
| 312 | + | ||
| 313 | + <Button | ||
| 314 | + android:id="@+id/child2BirthInputButton" | ||
| 315 | + android:layout_width="wrap_content" | ||
| 316 | + android:layout_height="wrap_content" | ||
| 317 | + android:layout_weight="1" | ||
| 318 | + android:text="입력" /> | ||
| 319 | + | ||
| 320 | + </LinearLayout> | ||
| 321 | + | ||
| 322 | + <LinearLayout | ||
| 323 | + android:layout_width="match_parent" | ||
| 324 | + android:layout_height="match_parent" | ||
| 325 | + android:orientation="vertical"></LinearLayout> | ||
| 326 | + | ||
| 327 | + <TextView | ||
| 328 | + android:id="@+id/child2SexTextView" | ||
| 329 | + android:layout_width="match_parent" | ||
| 330 | + android:layout_height="wrap_content" | ||
| 331 | + android:text="TextView" /> | ||
| 332 | + | ||
| 333 | + <LinearLayout | ||
| 334 | + android:layout_width="match_parent" | ||
| 335 | + android:layout_height="match_parent" | ||
| 336 | + android:orientation="horizontal"> | ||
| 337 | + | ||
| 338 | + <ToggleButton | ||
| 339 | + android:id="@+id/child2SexManButton" | ||
| 340 | + android:layout_width="wrap_content" | ||
| 341 | + android:layout_height="wrap_content" | ||
| 342 | + android:layout_weight="1" | ||
| 343 | + android:background="@drawable/profil_selector" | ||
| 344 | + android:text="ToggleButton" | ||
| 345 | + android:textOff="남자" | ||
| 346 | + android:textOn="남자" /> | ||
| 347 | + | ||
| 348 | + <ToggleButton | ||
| 349 | + android:id="@+id/child2SexWomanButton" | ||
| 350 | + android:layout_width="wrap_content" | ||
| 351 | + android:layout_height="wrap_content" | ||
| 352 | + android:layout_weight="1" | ||
| 353 | + android:background="@drawable/profil_selector" | ||
| 354 | + android:text="ToggleButton" | ||
| 355 | + android:textOff="여자" | ||
| 356 | + android:textOn="여자" /> | ||
| 357 | + </LinearLayout> | ||
| 358 | + | ||
| 359 | + </LinearLayout> | ||
| 360 | + | ||
| 361 | + | ||
| 362 | + <LinearLayout | ||
| 363 | + android:id="@+id/child3LinearLayout" | ||
| 364 | + android:layout_width="match_parent" | ||
| 365 | + android:layout_height="wrap_content" | ||
| 366 | + android:orientation="vertical" | ||
| 367 | + android:visibility="gone"> | ||
| 368 | + | ||
| 369 | + <TextView | ||
| 370 | + android:id="@+id/child3TextView" | ||
| 371 | + android:layout_width="match_parent" | ||
| 372 | + android:layout_height="wrap_content" | ||
| 373 | + android:text="자녀 3" /> | ||
| 374 | + | ||
| 375 | + <LinearLayout | ||
| 376 | + android:layout_width="match_parent" | ||
| 377 | + android:layout_height="match_parent" | ||
| 378 | + android:orientation="vertical"></LinearLayout> | ||
| 379 | + | ||
| 380 | + <TextView | ||
| 381 | + android:id="@+id/child3BirthTextView" | ||
| 382 | + android:layout_width="match_parent" | ||
| 383 | + android:layout_height="wrap_content" | ||
| 384 | + android:text="생년월일" /> | ||
| 385 | + | ||
| 386 | + <LinearLayout | ||
| 387 | + android:layout_width="match_parent" | ||
| 388 | + android:layout_height="match_parent" | ||
| 389 | + android:orientation="horizontal"> | ||
| 390 | + | ||
| 391 | + <EditText | ||
| 392 | + android:id="@+id/child3BirthEditText" | ||
| 393 | + android:layout_width="wrap_content" | ||
| 394 | + android:layout_height="wrap_content" | ||
| 395 | + android:layout_weight="1" | ||
| 396 | + android:ems="10" | ||
| 397 | + android:inputType="textPersonName" /> | ||
| 398 | + | ||
| 399 | + <Button | ||
| 400 | + android:id="@+id/child3BirthInputButton" | ||
| 401 | + android:layout_width="wrap_content" | ||
| 402 | + android:layout_height="wrap_content" | ||
| 403 | + android:layout_weight="1" | ||
| 404 | + android:text="입력" /> | ||
| 405 | + | ||
| 406 | + </LinearLayout> | ||
| 407 | + | ||
| 408 | + <LinearLayout | ||
| 409 | + android:layout_width="match_parent" | ||
| 410 | + android:layout_height="match_parent" | ||
| 411 | + android:orientation="vertical"></LinearLayout> | ||
| 412 | + | ||
| 413 | + <TextView | ||
| 414 | + android:id="@+id/child3SexTextView" | ||
| 415 | + android:layout_width="match_parent" | ||
| 416 | + android:layout_height="wrap_content" | ||
| 417 | + android:text="TextView" /> | ||
| 418 | + | ||
| 419 | + <LinearLayout | ||
| 420 | + android:layout_width="match_parent" | ||
| 421 | + android:layout_height="match_parent" | ||
| 422 | + android:orientation="horizontal"> | ||
| 423 | + | ||
| 424 | + <ToggleButton | ||
| 425 | + android:id="@+id/child3SexManButton" | ||
| 426 | + android:layout_width="wrap_content" | ||
| 427 | + android:layout_height="wrap_content" | ||
| 428 | + android:layout_weight="1" | ||
| 429 | + android:background="@drawable/profil_selector" | ||
| 430 | + android:text="ToggleButton" | ||
| 431 | + android:textOff="남자" | ||
| 432 | + android:textOn="남자" /> | ||
| 433 | + | ||
| 434 | + <ToggleButton | ||
| 435 | + android:id="@+id/child3SexWomanButton" | ||
| 436 | + android:layout_width="wrap_content" | ||
| 437 | + android:layout_height="wrap_content" | ||
| 438 | + android:layout_weight="1" | ||
| 439 | + android:background="@drawable/profil_selector" | ||
| 440 | + android:text="ToggleButton" | ||
| 441 | + android:textOff="여자" | ||
| 442 | + android:textOn="여자" /> | ||
| 443 | + </LinearLayout> | ||
| 444 | + | ||
| 445 | + </LinearLayout> | ||
| 446 | + | ||
| 447 | + | ||
| 448 | + <LinearLayout | ||
| 449 | + android:id="@+id/child4LinearLayout" | ||
| 450 | + android:layout_width="match_parent" | ||
| 451 | + android:layout_height="wrap_content" | ||
| 452 | + android:orientation="vertical" | ||
| 453 | + android:visibility="gone"> | ||
| 454 | + | ||
| 455 | + <TextView | ||
| 456 | + android:id="@+id/child4TextView" | ||
| 457 | + android:layout_width="match_parent" | ||
| 458 | + android:layout_height="wrap_content" | ||
| 459 | + android:text="자녀 4" /> | ||
| 460 | + | ||
| 461 | + <LinearLayout | ||
| 462 | + android:layout_width="match_parent" | ||
| 463 | + android:layout_height="match_parent" | ||
| 464 | + android:orientation="vertical"></LinearLayout> | ||
| 465 | + | ||
| 466 | + <TextView | ||
| 467 | + android:id="@+id/child4BirthTextView" | ||
| 468 | + android:layout_width="match_parent" | ||
| 469 | + android:layout_height="wrap_content" | ||
| 470 | + android:text="생년월일" /> | ||
| 471 | + | ||
| 472 | + <LinearLayout | ||
| 473 | + android:layout_width="match_parent" | ||
| 474 | + android:layout_height="match_parent" | ||
| 475 | + android:orientation="horizontal"> | ||
| 476 | + | ||
| 477 | + <EditText | ||
| 478 | + android:id="@+id/child4BirthEditText" | ||
| 479 | + android:layout_width="wrap_content" | ||
| 480 | + android:layout_height="wrap_content" | ||
| 481 | + android:layout_weight="1" | ||
| 482 | + android:ems="10" | ||
| 483 | + android:inputType="textPersonName" /> | ||
| 484 | + | ||
| 485 | + <Button | ||
| 486 | + android:id="@+id/child4BirthInputButton" | ||
| 487 | + android:layout_width="wrap_content" | ||
| 488 | + android:layout_height="wrap_content" | ||
| 489 | + android:layout_weight="1" | ||
| 490 | + android:text="입력" /> | ||
| 491 | + | ||
| 492 | + </LinearLayout> | ||
| 493 | + | ||
| 494 | + <LinearLayout | ||
| 495 | + android:layout_width="match_parent" | ||
| 496 | + android:layout_height="match_parent" | ||
| 497 | + android:orientation="vertical"></LinearLayout> | ||
| 498 | + | ||
| 499 | + <TextView | ||
| 500 | + android:id="@+id/child4SexTextView" | ||
| 501 | + android:layout_width="match_parent" | ||
| 502 | + android:layout_height="wrap_content" | ||
| 503 | + android:text="TextView" /> | ||
| 504 | + | ||
| 505 | + <LinearLayout | ||
| 506 | + android:layout_width="match_parent" | ||
| 507 | + android:layout_height="match_parent" | ||
| 508 | + android:orientation="horizontal"> | ||
| 509 | + | ||
| 510 | + <ToggleButton | ||
| 511 | + android:id="@+id/child4SexManButton" | ||
| 512 | + android:layout_width="wrap_content" | ||
| 513 | + android:layout_height="wrap_content" | ||
| 514 | + android:layout_weight="1" | ||
| 515 | + android:background="@drawable/profil_selector" | ||
| 516 | + android:text="ToggleButton" | ||
| 517 | + android:textOff="남자" | ||
| 518 | + android:textOn="남자" /> | ||
| 519 | + | ||
| 520 | + <ToggleButton | ||
| 521 | + android:id="@+id/child4SexWomanButton" | ||
| 522 | + android:layout_width="wrap_content" | ||
| 523 | + android:layout_height="wrap_content" | ||
| 524 | + android:layout_weight="1" | ||
| 525 | + android:background="@drawable/profil_selector" | ||
| 526 | + android:text="ToggleButton" | ||
| 527 | + android:textOff="여자" | ||
| 528 | + android:textOn="여자" /> | ||
| 529 | + </LinearLayout> | ||
| 530 | + | ||
| 531 | + </LinearLayout> | ||
| 532 | + | ||
| 533 | + | ||
| 534 | + <LinearLayout | ||
| 535 | + android:id="@+id/child5LinearLayout" | ||
| 536 | + android:layout_width="match_parent" | ||
| 537 | + android:layout_height="wrap_content" | ||
| 538 | + android:orientation="vertical" | ||
| 539 | + android:visibility="gone"> | ||
| 540 | + | ||
| 541 | + <TextView | ||
| 542 | + android:id="@+id/child5TextView" | ||
| 543 | + android:layout_width="match_parent" | ||
| 544 | + android:layout_height="wrap_content" | ||
| 545 | + android:text="자녀 5" /> | ||
| 546 | + | ||
| 547 | + <LinearLayout | ||
| 548 | + android:layout_width="match_parent" | ||
| 549 | + android:layout_height="match_parent" | ||
| 550 | + android:orientation="vertical"></LinearLayout> | ||
| 551 | + | ||
| 552 | + <TextView | ||
| 553 | + android:id="@+id/child5BirthTextView" | ||
| 554 | + android:layout_width="match_parent" | ||
| 555 | + android:layout_height="wrap_content" | ||
| 556 | + android:text="생년월일" /> | ||
| 557 | + | ||
| 558 | + <LinearLayout | ||
| 559 | + android:layout_width="match_parent" | ||
| 560 | + android:layout_height="match_parent" | ||
| 561 | + android:orientation="horizontal"> | ||
| 562 | + | ||
| 563 | + <EditText | ||
| 564 | + android:id="@+id/child5BirthEditText" | ||
| 565 | + android:layout_width="wrap_content" | ||
| 566 | + android:layout_height="wrap_content" | ||
| 567 | + android:layout_weight="1" | ||
| 568 | + android:ems="10" | ||
| 569 | + android:inputType="textPersonName" /> | ||
| 570 | + | ||
| 571 | + <Button | ||
| 572 | + android:id="@+id/child5BirthInputButton" | ||
| 573 | + android:layout_width="wrap_content" | ||
| 574 | + android:layout_height="wrap_content" | ||
| 575 | + android:layout_weight="1" | ||
| 576 | + android:text="입력" /> | ||
| 577 | + | ||
| 578 | + </LinearLayout> | ||
| 579 | + | ||
| 580 | + <LinearLayout | ||
| 581 | + android:layout_width="match_parent" | ||
| 582 | + android:layout_height="match_parent" | ||
| 583 | + android:orientation="vertical"></LinearLayout> | ||
| 584 | + | ||
| 585 | + <TextView | ||
| 586 | + android:id="@+id/child5SexTextView" | ||
| 587 | + android:layout_width="match_parent" | ||
| 588 | + android:layout_height="wrap_content" | ||
| 589 | + android:text="TextView" /> | ||
| 590 | + | ||
| 591 | + <LinearLayout | ||
| 592 | + android:layout_width="match_parent" | ||
| 593 | + android:layout_height="match_parent" | ||
| 594 | + android:orientation="horizontal"> | ||
| 595 | + | ||
| 596 | + <ToggleButton | ||
| 597 | + android:id="@+id/child5SexManButton" | ||
| 598 | + android:layout_width="wrap_content" | ||
| 599 | + android:layout_height="wrap_content" | ||
| 600 | + android:layout_weight="1" | ||
| 601 | + android:background="@drawable/profil_selector" | ||
| 602 | + android:text="ToggleButton" | ||
| 603 | + android:textOff="남자" | ||
| 604 | + android:textOn="남자" /> | ||
| 605 | + | ||
| 606 | + <ToggleButton | ||
| 607 | + android:id="@+id/child5SexWomanButton" | ||
| 608 | + android:layout_width="wrap_content" | ||
| 609 | + android:layout_height="wrap_content" | ||
| 610 | + android:layout_weight="1" | ||
| 611 | + android:background="@drawable/profil_selector" | ||
| 612 | + android:text="ToggleButton" | ||
| 613 | + android:textOff="여자" | ||
| 614 | + android:textOn="여자" /> | ||
| 615 | + </LinearLayout> | ||
| 616 | + | ||
| 617 | + </LinearLayout> | ||
| 618 | + | ||
| 619 | + | ||
| 620 | + </LinearLayout> | ||
| 621 | + | ||
| 622 | + <LinearLayout | ||
| 623 | + android:layout_width="match_parent" | ||
| 624 | + android:layout_height="wrap_content" | ||
| 625 | + android:orientation="horizontal"> | ||
| 626 | + | ||
| 627 | + <Button | ||
| 628 | + android:id="@+id/previousButton" | ||
| 629 | + android:layout_width="10dp" | ||
| 630 | + android:layout_height="wrap_content" | ||
| 631 | + android:layout_weight="1" | ||
| 632 | + android:text="이전 단계로" /> | ||
| 633 | + | ||
| 634 | + <Button | ||
| 635 | + android:id="@+id/nextButton" | ||
| 636 | + android:layout_width="10dp" | ||
| 637 | + android:layout_height="wrap_content" | ||
| 638 | + android:layout_weight="1" | ||
| 639 | + android:text="다음 단계로" /> | ||
| 640 | + </LinearLayout> | ||
| 641 | + | ||
| 642 | + </LinearLayout> | ||
| 643 | + </ScrollView> | ||
| 644 | + | ||
| 645 | + </LinearLayout> | ||
| 646 | + </LinearLayout> | ||
| 647 | +</androidx.constraintlayout.widget.ConstraintLayout> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 1 | +<?xml version="1.0" encoding="utf-8"?> | ||
| 2 | +<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
| 3 | + xmlns:app="http://schemas.android.com/apk/res-auto" | ||
| 4 | + xmlns:tools="http://schemas.android.com/tools" | ||
| 5 | + android:layout_width="match_parent" | ||
| 6 | + android:layout_height="match_parent" | ||
| 7 | + tools:context=".InputProfilThirdFourActivity"> | ||
| 8 | + | ||
| 9 | + <LinearLayout | ||
| 10 | + android:layout_width="match_parent" | ||
| 11 | + android:layout_height="match_parent" | ||
| 12 | + android:orientation="vertical"> | ||
| 13 | + | ||
| 14 | + <androidx.appcompat.widget.Toolbar | ||
| 15 | + android:id="@+id/toolbar" | ||
| 16 | + android:layout_width="fill_parent" | ||
| 17 | + android:layout_height="wrap_content" | ||
| 18 | + android:layout_marginBottom="11dp" | ||
| 19 | + android:background="#FFF" | ||
| 20 | + android:elevation="5dp" | ||
| 21 | + android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" | ||
| 22 | + app:popupTheme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> | ||
| 23 | + | ||
| 24 | + <LinearLayout | ||
| 25 | + android:layout_width="match_parent" | ||
| 26 | + android:layout_height="match_parent" | ||
| 27 | + android:orientation="horizontal"> | ||
| 28 | + | ||
| 29 | + <Button | ||
| 30 | + android:id="@+id/skipButton" | ||
| 31 | + android:layout_width="10dp" | ||
| 32 | + android:layout_height="match_parent" | ||
| 33 | + android:layout_weight="1.5" | ||
| 34 | + android:text="건너뛰기"/> | ||
| 35 | + <LinearLayout | ||
| 36 | + android:layout_width="10dp" | ||
| 37 | + android:layout_height="match_parent" | ||
| 38 | + android:orientation="horizontal" | ||
| 39 | + android:layout_weight="1"/> | ||
| 40 | + <ImageView | ||
| 41 | + android:layout_width="77dp" | ||
| 42 | + android:layout_height="44dp" | ||
| 43 | + android:layout_gravity="center" | ||
| 44 | + android:layout_weight="1" | ||
| 45 | + android:src="@drawable/toolbar_logo" /> | ||
| 46 | + <LinearLayout | ||
| 47 | + android:layout_width="10dp" | ||
| 48 | + android:layout_height="match_parent" | ||
| 49 | + android:orientation="horizontal" | ||
| 50 | + android:layout_weight="1"/> | ||
| 51 | + <LinearLayout | ||
| 52 | + android:layout_width="10dp" | ||
| 53 | + android:layout_height="match_parent" | ||
| 54 | + android:orientation="horizontal" | ||
| 55 | + android:layout_weight="1.5"/> | ||
| 56 | + | ||
| 57 | + </LinearLayout> | ||
| 58 | + | ||
| 59 | + | ||
| 60 | + </androidx.appcompat.widget.Toolbar> | ||
| 61 | + | ||
| 62 | + <LinearLayout | ||
| 63 | + android:layout_width="match_parent" | ||
| 64 | + android:layout_height="50dp" | ||
| 65 | + android:layout_weight="0" | ||
| 66 | + android:orientation="horizontal"> | ||
| 67 | + | ||
| 68 | + <TextView | ||
| 69 | + android:id="@+id/stageTextView1" | ||
| 70 | + android:layout_width="wrap_content" | ||
| 71 | + android:layout_height="match_parent" | ||
| 72 | + android:layout_gravity="center" | ||
| 73 | + android:layout_weight="1" | ||
| 74 | + android:background="#1E90FF" | ||
| 75 | + android:gravity="center" | ||
| 76 | + android:text="1" /> | ||
| 77 | + | ||
| 78 | + <TextView | ||
| 79 | + android:id="@+id/stageTextView2" | ||
| 80 | + android:layout_width="wrap_content" | ||
| 81 | + android:layout_height="match_parent" | ||
| 82 | + android:layout_gravity="center" | ||
| 83 | + android:layout_weight="1" | ||
| 84 | + android:background="#1E90FF" | ||
| 85 | + android:gravity="center" | ||
| 86 | + android:text="2" /> | ||
| 87 | + | ||
| 88 | + <TextView | ||
| 89 | + android:id="@+id/stageTextView3" | ||
| 90 | + android:layout_width="wrap_content" | ||
| 91 | + android:layout_height="match_parent" | ||
| 92 | + android:layout_gravity="center" | ||
| 93 | + android:layout_weight="1" | ||
| 94 | + | ||
| 95 | + android:background="#1E90FF" | ||
| 96 | + android:gravity="center" | ||
| 97 | + android:text="3" /> | ||
| 98 | + | ||
| 99 | + <TextView | ||
| 100 | + android:id="@+id/stageTextView4" | ||
| 101 | + android:layout_width="wrap_content" | ||
| 102 | + android:layout_height="match_parent" | ||
| 103 | + android:layout_gravity="center" | ||
| 104 | + android:layout_weight="1" | ||
| 105 | + android:gravity="center" | ||
| 106 | + android:text="4" /> | ||
| 107 | + | ||
| 108 | + <TextView | ||
| 109 | + android:id="@+id/stageTextView5" | ||
| 110 | + android:layout_width="wrap_content" | ||
| 111 | + android:layout_height="match_parent" | ||
| 112 | + android:layout_gravity="center" | ||
| 113 | + android:layout_weight="1" | ||
| 114 | + android:gravity="center" | ||
| 115 | + android:text="5" /> | ||
| 116 | + | ||
| 117 | + </LinearLayout> | ||
| 118 | + | ||
| 119 | + <LinearLayout | ||
| 120 | + android:layout_width="match_parent" | ||
| 121 | + android:layout_height="wrap_content" | ||
| 122 | + android:layout_weight="1" | ||
| 123 | + android:orientation="vertical"> | ||
| 124 | + | ||
| 125 | + <ScrollView | ||
| 126 | + android:layout_width="match_parent" | ||
| 127 | + android:layout_height="match_parent" | ||
| 128 | + android:layout_weight="1"> | ||
| 129 | + | ||
| 130 | + <LinearLayout | ||
| 131 | + android:layout_width="match_parent" | ||
| 132 | + android:layout_height="wrap_content" | ||
| 133 | + android:orientation="vertical"> | ||
| 134 | + | ||
| 135 | + <LinearLayout | ||
| 136 | + android:layout_width="match_parent" | ||
| 137 | + android:layout_height="wrap_content" | ||
| 138 | + android:orientation="vertical"> | ||
| 139 | + | ||
| 140 | + <RelativeLayout | ||
| 141 | + android:layout_width="match_parent" | ||
| 142 | + android:layout_height="match_parent"> | ||
| 143 | + | ||
| 144 | + <TextView | ||
| 145 | + android:id="@+id/explainTextView" | ||
| 146 | + android:layout_width="wrap_content" | ||
| 147 | + android:layout_height="wrap_content" | ||
| 148 | + android:layout_centerInParent="true" | ||
| 149 | + android:layout_gravity="center" | ||
| 150 | + android:gravity="center" | ||
| 151 | + android:text="8. 자신의 장애 유무를 선택해 주세요." /> | ||
| 152 | + | ||
| 153 | + <Button | ||
| 154 | + android:id="@+id/questionButton" | ||
| 155 | + android:layout_width="30dp" | ||
| 156 | + android:layout_height="30dp" | ||
| 157 | + android:layout_gravity="center" | ||
| 158 | + android:layout_toRightOf="@id/explainTextView" | ||
| 159 | + android:backgroundTint="#1E90FF" | ||
| 160 | + android:gravity="center" | ||
| 161 | + android:text=" ? " | ||
| 162 | + android:textSize="8sp" /> | ||
| 163 | + </RelativeLayout> | ||
| 164 | + </LinearLayout> | ||
| 165 | + | ||
| 166 | + <LinearLayout | ||
| 167 | + android:layout_width="match_parent" | ||
| 168 | + android:layout_height="wrap_content" | ||
| 169 | + android:orientation="vertical"> | ||
| 170 | + | ||
| 171 | + <LinearLayout | ||
| 172 | + android:layout_width="wrap_content" | ||
| 173 | + android:layout_height="wrap_content" | ||
| 174 | + android:layout_gravity="center" | ||
| 175 | + android:gravity="center" | ||
| 176 | + android:orientation="vertical"> | ||
| 177 | + | ||
| 178 | + <LinearLayout | ||
| 179 | + android:layout_width="match_parent" | ||
| 180 | + android:layout_height="match_parent" | ||
| 181 | + android:orientation="horizontal"> | ||
| 182 | + | ||
| 183 | + <ToggleButton | ||
| 184 | + android:id="@+id/yesButton" | ||
| 185 | + android:layout_width="300dp" | ||
| 186 | + android:layout_height="wrap_content" | ||
| 187 | + android:layout_weight="1" | ||
| 188 | + android:background="@drawable/profil_selector" | ||
| 189 | + android:text="있음" | ||
| 190 | + android:textOff="있음" | ||
| 191 | + android:textOn="있음" /> | ||
| 192 | + | ||
| 193 | + </LinearLayout> | ||
| 194 | + | ||
| 195 | + | ||
| 196 | + <LinearLayout | ||
| 197 | + android:layout_width="match_parent" | ||
| 198 | + android:layout_height="match_parent" | ||
| 199 | + android:orientation="horizontal"> | ||
| 200 | + | ||
| 201 | + <ToggleButton | ||
| 202 | + android:id="@+id/noButton" | ||
| 203 | + android:layout_width="300dp" | ||
| 204 | + android:layout_height="wrap_content" | ||
| 205 | + android:layout_weight="1" | ||
| 206 | + android:background="@drawable/profil_selector" | ||
| 207 | + android:text="없음" | ||
| 208 | + android:textOff="없음" | ||
| 209 | + android:textOn="없음" /> | ||
| 210 | + </LinearLayout> | ||
| 211 | + | ||
| 212 | + </LinearLayout> | ||
| 213 | + </LinearLayout> | ||
| 214 | + | ||
| 215 | + <LinearLayout | ||
| 216 | + android:layout_width="match_parent" | ||
| 217 | + android:layout_height="wrap_content" | ||
| 218 | + android:layout_weight="1" | ||
| 219 | + android:orientation="vertical"> | ||
| 220 | + | ||
| 221 | + <LinearLayout | ||
| 222 | + android:layout_width="match_parent" | ||
| 223 | + android:layout_height="wrap_content" | ||
| 224 | + android:orientation="vertical"> | ||
| 225 | + | ||
| 226 | + <RelativeLayout | ||
| 227 | + android:layout_width="match_parent" | ||
| 228 | + android:layout_height="match_parent"> | ||
| 229 | + | ||
| 230 | + <TextView | ||
| 231 | + android:id="@+id/explainSub1TextView" | ||
| 232 | + android:layout_width="wrap_content" | ||
| 233 | + android:layout_height="wrap_content" | ||
| 234 | + android:layout_centerInParent="true" | ||
| 235 | + android:layout_gravity="center" | ||
| 236 | + android:gravity="center" | ||
| 237 | + android:text="8-1. 장애 유형을 모두 선택해주세요." /> | ||
| 238 | + | ||
| 239 | + <Button | ||
| 240 | + android:id="@+id/questionSub1Button" | ||
| 241 | + android:layout_width="30dp" | ||
| 242 | + android:layout_height="30dp" | ||
| 243 | + android:layout_gravity="center" | ||
| 244 | + android:layout_toRightOf="@id/explainSub1TextView" | ||
| 245 | + android:backgroundTint="#1E90FF" | ||
| 246 | + android:gravity="center" | ||
| 247 | + android:text=" ? " | ||
| 248 | + android:textSize="8sp" /> | ||
| 249 | + </RelativeLayout> | ||
| 250 | + </LinearLayout> | ||
| 251 | + | ||
| 252 | + <LinearLayout | ||
| 253 | + android:layout_width="match_parent" | ||
| 254 | + android:layout_height="wrap_content" | ||
| 255 | + android:orientation="vertical"> | ||
| 256 | + | ||
| 257 | + <LinearLayout | ||
| 258 | + android:layout_width="wrap_content" | ||
| 259 | + android:layout_height="wrap_content" | ||
| 260 | + android:layout_gravity="center" | ||
| 261 | + android:gravity="center" | ||
| 262 | + android:orientation="vertical"> | ||
| 263 | + | ||
| 264 | + <LinearLayout | ||
| 265 | + android:layout_width="match_parent" | ||
| 266 | + android:layout_height="match_parent" | ||
| 267 | + android:orientation="horizontal"> | ||
| 268 | + | ||
| 269 | + <ToggleButton | ||
| 270 | + android:id="@+id/jichaeButton" | ||
| 271 | + android:layout_width="300dp" | ||
| 272 | + android:layout_height="wrap_content" | ||
| 273 | + android:layout_weight="1" | ||
| 274 | + android:background="@drawable/profil_selector" | ||
| 275 | + android:text="지체장애" | ||
| 276 | + android:textOff="지체장애" | ||
| 277 | + android:textOn="지체장애" /> | ||
| 278 | + | ||
| 279 | + <ToggleButton | ||
| 280 | + android:id="@+id/noebyungbyunButton" | ||
| 281 | + android:layout_width="300dp" | ||
| 282 | + android:layout_height="wrap_content" | ||
| 283 | + android:layout_weight="1" | ||
| 284 | + android:background="@drawable/profil_selector" | ||
| 285 | + android:text="뇌병변장애" | ||
| 286 | + android:textOff="뇌병변장애" | ||
| 287 | + android:textOn="뇌병변장애" /> | ||
| 288 | + | ||
| 289 | + <ToggleButton | ||
| 290 | + android:id="@+id/sigaakButton" | ||
| 291 | + android:layout_width="300dp" | ||
| 292 | + android:layout_height="wrap_content" | ||
| 293 | + android:layout_weight="1" | ||
| 294 | + android:background="@drawable/profil_selector" | ||
| 295 | + android:text="시각장애" | ||
| 296 | + android:textOff="시각장애" | ||
| 297 | + android:textOn="시각장애" /> | ||
| 298 | + | ||
| 299 | + </LinearLayout> | ||
| 300 | + | ||
| 301 | + <LinearLayout | ||
| 302 | + android:layout_width="match_parent" | ||
| 303 | + android:layout_height="match_parent" | ||
| 304 | + android:orientation="horizontal"> | ||
| 305 | + | ||
| 306 | + <ToggleButton | ||
| 307 | + android:id="@+id/chungkaakButton" | ||
| 308 | + android:layout_width="300dp" | ||
| 309 | + android:layout_height="wrap_content" | ||
| 310 | + android:layout_weight="1" | ||
| 311 | + android:background="@drawable/profil_selector" | ||
| 312 | + android:text="청각장애" | ||
| 313 | + android:textOff="청각장애" | ||
| 314 | + android:textOn="청각장애" /> | ||
| 315 | + | ||
| 316 | + <ToggleButton | ||
| 317 | + android:id="@+id/unuhButton" | ||
| 318 | + android:layout_width="300dp" | ||
| 319 | + android:layout_height="wrap_content" | ||
| 320 | + android:layout_weight="1" | ||
| 321 | + android:background="@drawable/profil_selector" | ||
| 322 | + android:text="언어장애" | ||
| 323 | + android:textOff="언어장애" | ||
| 324 | + android:textOn="언어장애" /> | ||
| 325 | + | ||
| 326 | + <ToggleButton | ||
| 327 | + android:id="@+id/ahnmyunButton" | ||
| 328 | + android:layout_width="300dp" | ||
| 329 | + android:layout_height="wrap_content" | ||
| 330 | + android:layout_weight="1" | ||
| 331 | + android:background="@drawable/profil_selector" | ||
| 332 | + android:text="안면장애" | ||
| 333 | + android:textOff="안면장애" | ||
| 334 | + android:textOn="안면장애" /> | ||
| 335 | + | ||
| 336 | + </LinearLayout> | ||
| 337 | + | ||
| 338 | + <LinearLayout | ||
| 339 | + android:layout_width="match_parent" | ||
| 340 | + android:layout_height="match_parent" | ||
| 341 | + android:orientation="horizontal"> | ||
| 342 | + | ||
| 343 | + <ToggleButton | ||
| 344 | + android:id="@+id/sinjaangButton" | ||
| 345 | + android:layout_width="300dp" | ||
| 346 | + android:layout_height="wrap_content" | ||
| 347 | + android:layout_weight="1" | ||
| 348 | + android:background="@drawable/profil_selector" | ||
| 349 | + android:text="신장장애" | ||
| 350 | + android:textOff="신장장애" | ||
| 351 | + android:textOn="신장장애" /> | ||
| 352 | + | ||
| 353 | + <ToggleButton | ||
| 354 | + android:id="@+id/simjaangButton" | ||
| 355 | + android:layout_width="300dp" | ||
| 356 | + android:layout_height="wrap_content" | ||
| 357 | + android:layout_weight="1" | ||
| 358 | + android:background="@drawable/profil_selector" | ||
| 359 | + android:text="심장장애" | ||
| 360 | + android:textOff="심장장애" | ||
| 361 | + android:textOn="심장장애" /> | ||
| 362 | + | ||
| 363 | + <ToggleButton | ||
| 364 | + android:id="@+id/gaanjaangButton" | ||
| 365 | + android:layout_width="300dp" | ||
| 366 | + android:layout_height="wrap_content" | ||
| 367 | + android:layout_weight="1" | ||
| 368 | + android:background="@drawable/profil_selector" | ||
| 369 | + android:text="간장애" | ||
| 370 | + android:textOff="간장애" | ||
| 371 | + android:textOn="간장애" /> | ||
| 372 | + | ||
| 373 | + </LinearLayout> | ||
| 374 | + | ||
| 375 | + <LinearLayout | ||
| 376 | + android:layout_width="match_parent" | ||
| 377 | + android:layout_height="match_parent" | ||
| 378 | + android:orientation="horizontal"> | ||
| 379 | + | ||
| 380 | + <ToggleButton | ||
| 381 | + android:id="@+id/jaangrooButton" | ||
| 382 | + android:layout_width="300dp" | ||
| 383 | + android:layout_height="wrap_content" | ||
| 384 | + android:layout_weight="1" | ||
| 385 | + android:background="@drawable/profil_selector" | ||
| 386 | + android:text="장루/요루장애" | ||
| 387 | + android:textOff="장루/요루장애" | ||
| 388 | + android:textOn="장루/요루장애" /> | ||
| 389 | + | ||
| 390 | + <ToggleButton | ||
| 391 | + android:id="@+id/noejungjeungButton" | ||
| 392 | + android:layout_width="300dp" | ||
| 393 | + android:layout_height="wrap_content" | ||
| 394 | + android:layout_weight="1" | ||
| 395 | + android:background="@drawable/profil_selector" | ||
| 396 | + android:text="뇌전증" | ||
| 397 | + android:textOff="뇌전증" | ||
| 398 | + android:textOn="뇌전증" /> | ||
| 399 | + | ||
| 400 | + <ToggleButton | ||
| 401 | + android:id="@+id/hoheupkiButton" | ||
| 402 | + android:layout_width="300dp" | ||
| 403 | + android:layout_height="wrap_content" | ||
| 404 | + android:layout_weight="1" | ||
| 405 | + android:background="@drawable/profil_selector" | ||
| 406 | + android:text="호흡기" | ||
| 407 | + android:textOff="호흡기" | ||
| 408 | + android:textOn="호흡기" /> | ||
| 409 | + | ||
| 410 | + </LinearLayout> | ||
| 411 | + | ||
| 412 | + | ||
| 413 | + <LinearLayout | ||
| 414 | + android:layout_width="match_parent" | ||
| 415 | + android:layout_height="match_parent" | ||
| 416 | + android:orientation="horizontal"> | ||
| 417 | + | ||
| 418 | + <ToggleButton | ||
| 419 | + android:id="@+id/jijukButton" | ||
| 420 | + android:layout_width="300dp" | ||
| 421 | + android:layout_height="wrap_content" | ||
| 422 | + android:layout_weight="1" | ||
| 423 | + android:background="@drawable/profil_selector" | ||
| 424 | + android:text="지적장애" | ||
| 425 | + android:textOff="지적장애" | ||
| 426 | + android:textOn="지적장애" /> | ||
| 427 | + | ||
| 428 | + <ToggleButton | ||
| 429 | + android:id="@+id/japyeahButton" | ||
| 430 | + android:layout_width="300dp" | ||
| 431 | + android:layout_height="wrap_content" | ||
| 432 | + android:layout_weight="1" | ||
| 433 | + android:background="@drawable/profil_selector" | ||
| 434 | + android:text="자폐성장애" | ||
| 435 | + android:textOff="자폐성장애" | ||
| 436 | + android:textOn="자폐성장애" /> | ||
| 437 | + | ||
| 438 | + <ToggleButton | ||
| 439 | + android:id="@+id/jeongshinButton" | ||
| 440 | + android:layout_width="300dp" | ||
| 441 | + android:layout_height="wrap_content" | ||
| 442 | + android:layout_weight="1" | ||
| 443 | + android:background="@drawable/profil_selector" | ||
| 444 | + android:text="정신장애" | ||
| 445 | + android:textOff="정신장애" | ||
| 446 | + android:textOn="정신장애" /> | ||
| 447 | + </LinearLayout> | ||
| 448 | + | ||
| 449 | + </LinearLayout> | ||
| 450 | + </LinearLayout> | ||
| 451 | + | ||
| 452 | + </LinearLayout> | ||
| 453 | + | ||
| 454 | + <LinearLayout | ||
| 455 | + android:layout_width="match_parent" | ||
| 456 | + android:layout_height="wrap_content" | ||
| 457 | + android:layout_weight="1" | ||
| 458 | + android:orientation="vertical"> | ||
| 459 | + | ||
| 460 | + <LinearLayout | ||
| 461 | + android:layout_width="match_parent" | ||
| 462 | + android:layout_height="wrap_content" | ||
| 463 | + android:orientation="vertical"> | ||
| 464 | + | ||
| 465 | + <RelativeLayout | ||
| 466 | + android:layout_width="match_parent" | ||
| 467 | + android:layout_height="match_parent"> | ||
| 468 | + | ||
| 469 | + <TextView | ||
| 470 | + android:id="@+id/explainSub2TextView" | ||
| 471 | + android:layout_width="wrap_content" | ||
| 472 | + android:layout_height="wrap_content" | ||
| 473 | + android:layout_centerInParent="true" | ||
| 474 | + android:layout_gravity="center" | ||
| 475 | + android:gravity="center" | ||
| 476 | + android:text="9. 자신의 건강 상태를 선택해 주세요." /> | ||
| 477 | + | ||
| 478 | + <Button | ||
| 479 | + android:id="@+id/questionSub2Button" | ||
| 480 | + android:layout_width="30dp" | ||
| 481 | + android:layout_height="30dp" | ||
| 482 | + android:layout_gravity="center" | ||
| 483 | + android:layout_toRightOf="@id/explainSub2TextView" | ||
| 484 | + android:backgroundTint="#1E90FF" | ||
| 485 | + android:gravity="center" | ||
| 486 | + android:text=" ? " | ||
| 487 | + android:textSize="8sp" /> | ||
| 488 | + </RelativeLayout> | ||
| 489 | + </LinearLayout> | ||
| 490 | + | ||
| 491 | + <LinearLayout | ||
| 492 | + android:layout_width="match_parent" | ||
| 493 | + android:layout_height="wrap_content" | ||
| 494 | + android:orientation="vertical"> | ||
| 495 | + | ||
| 496 | + <LinearLayout | ||
| 497 | + android:layout_width="wrap_content" | ||
| 498 | + android:layout_height="wrap_content" | ||
| 499 | + android:layout_gravity="center" | ||
| 500 | + android:gravity="center" | ||
| 501 | + android:orientation="vertical"> | ||
| 502 | + | ||
| 503 | + <LinearLayout | ||
| 504 | + android:layout_width="match_parent" | ||
| 505 | + android:layout_height="match_parent" | ||
| 506 | + android:orientation="horizontal"> | ||
| 507 | + | ||
| 508 | + <ToggleButton | ||
| 509 | + android:id="@+id/nothingButton" | ||
| 510 | + android:layout_width="300dp" | ||
| 511 | + android:layout_height="wrap_content" | ||
| 512 | + android:layout_weight="1" | ||
| 513 | + android:background="@drawable/profil_selector" | ||
| 514 | + android:text="해당없음" | ||
| 515 | + android:textOff="해당없음" | ||
| 516 | + android:textOn="해당없음" /> | ||
| 517 | + | ||
| 518 | + <ToggleButton | ||
| 519 | + android:id="@+id/imshinButton" | ||
| 520 | + android:layout_width="300dp" | ||
| 521 | + android:layout_height="wrap_content" | ||
| 522 | + android:layout_weight="1" | ||
| 523 | + android:background="@drawable/profil_selector" | ||
| 524 | + android:text="임신및출산(예정)" | ||
| 525 | + android:textOff="임신및출산(예정)" | ||
| 526 | + android:textOn="임신및출산(예정)" /> | ||
| 527 | + | ||
| 528 | + </LinearLayout> | ||
| 529 | + | ||
| 530 | + <LinearLayout | ||
| 531 | + android:layout_width="match_parent" | ||
| 532 | + android:layout_height="match_parent" | ||
| 533 | + android:orientation="horizontal"> | ||
| 534 | + | ||
| 535 | + <ToggleButton | ||
| 536 | + android:id="@+id/nanchiButton" | ||
| 537 | + android:layout_width="300dp" | ||
| 538 | + android:layout_height="wrap_content" | ||
| 539 | + android:layout_weight="1" | ||
| 540 | + android:background="@drawable/profil_selector" | ||
| 541 | + android:text="희귀난치성및중증질환" | ||
| 542 | + android:textOff="희귀난치성및중증질환" | ||
| 543 | + android:textOn="희귀난치성및중증질환" /> | ||
| 544 | + | ||
| 545 | + <ToggleButton | ||
| 546 | + android:id="@+id/oeButton" | ||
| 547 | + android:layout_width="300dp" | ||
| 548 | + android:layout_height="wrap_content" | ||
| 549 | + android:layout_weight="1" | ||
| 550 | + android:background="@drawable/profil_selector" | ||
| 551 | + android:text="중증질환외질병" | ||
| 552 | + android:textOff="중증질환외질병" | ||
| 553 | + android:textOn="중증질환외질병" /> | ||
| 554 | + </LinearLayout> | ||
| 555 | + | ||
| 556 | + <LinearLayout | ||
| 557 | + android:layout_width="match_parent" | ||
| 558 | + android:layout_height="match_parent" | ||
| 559 | + android:orientation="horizontal"> | ||
| 560 | + | ||
| 561 | + <ToggleButton | ||
| 562 | + android:id="@+id/yoyaangButton" | ||
| 563 | + android:layout_width="300dp" | ||
| 564 | + android:layout_height="wrap_content" | ||
| 565 | + android:layout_weight="1" | ||
| 566 | + android:background="@drawable/profil_selector" | ||
| 567 | + android:text="(장기)요양환자" | ||
| 568 | + android:textOff="(장기)요양환자" | ||
| 569 | + android:textOn="(장기)요양환자" /> | ||
| 570 | + | ||
| 571 | + <ToggleButton | ||
| 572 | + android:id="@+id/guitarButton" | ||
| 573 | + android:layout_width="300dp" | ||
| 574 | + android:layout_height="wrap_content" | ||
| 575 | + android:layout_weight="1" | ||
| 576 | + android:background="@drawable/profil_selector" | ||
| 577 | + android:text="기타" | ||
| 578 | + android:textOff="기타" | ||
| 579 | + android:textOn="기타" /> | ||
| 580 | + </LinearLayout> | ||
| 581 | + | ||
| 582 | + | ||
| 583 | + </LinearLayout> | ||
| 584 | + </LinearLayout> | ||
| 585 | + | ||
| 586 | + </LinearLayout> | ||
| 587 | + | ||
| 588 | + <LinearLayout | ||
| 589 | + android:layout_width="match_parent" | ||
| 590 | + android:layout_height="wrap_content" | ||
| 591 | + android:orientation="horizontal"> | ||
| 592 | + | ||
| 593 | + <Button | ||
| 594 | + android:id="@+id/previousButton" | ||
| 595 | + android:layout_width="10dp" | ||
| 596 | + android:layout_height="wrap_content" | ||
| 597 | + android:layout_weight="1" | ||
| 598 | + android:text="이전 단계로" /> | ||
| 599 | + | ||
| 600 | + <Button | ||
| 601 | + android:id="@+id/nextButton" | ||
| 602 | + android:layout_width="10dp" | ||
| 603 | + android:layout_height="wrap_content" | ||
| 604 | + android:layout_weight="1" | ||
| 605 | + android:text="다음 단계로" /> | ||
| 606 | + </LinearLayout> | ||
| 607 | + </LinearLayout> | ||
| 608 | + </ScrollView> | ||
| 609 | + | ||
| 610 | + </LinearLayout> | ||
| 611 | + </LinearLayout> | ||
| 612 | +</androidx.constraintlayout.widget.ConstraintLayout> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 1 | +<?xml version="1.0" encoding="utf-8"?> | ||
| 2 | +<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
| 3 | + xmlns:app="http://schemas.android.com/apk/res-auto" | ||
| 4 | + xmlns:tools="http://schemas.android.com/tools" | ||
| 5 | + android:layout_width="match_parent" | ||
| 6 | + android:layout_height="match_parent" | ||
| 7 | + tools:context=".InputProfilThirdOneActivity"> | ||
| 8 | + | ||
| 9 | + <LinearLayout | ||
| 10 | + android:layout_width="match_parent" | ||
| 11 | + android:layout_height="match_parent" | ||
| 12 | + android:orientation="vertical"> | ||
| 13 | + | ||
| 14 | + <androidx.appcompat.widget.Toolbar | ||
| 15 | + android:id="@+id/toolbar" | ||
| 16 | + android:layout_width="fill_parent" | ||
| 17 | + android:layout_height="wrap_content" | ||
| 18 | + android:layout_marginBottom="11dp" | ||
| 19 | + android:background="#FFF" | ||
| 20 | + android:elevation="5dp" | ||
| 21 | + android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" | ||
| 22 | + app:popupTheme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> | ||
| 23 | + | ||
| 24 | + <LinearLayout | ||
| 25 | + android:layout_width="match_parent" | ||
| 26 | + android:layout_height="match_parent" | ||
| 27 | + android:orientation="horizontal"> | ||
| 28 | + | ||
| 29 | + <Button | ||
| 30 | + android:id="@+id/skipButton" | ||
| 31 | + android:layout_width="10dp" | ||
| 32 | + android:layout_height="match_parent" | ||
| 33 | + android:layout_weight="1.5" | ||
| 34 | + android:text="건너뛰기"/> | ||
| 35 | + <LinearLayout | ||
| 36 | + android:layout_width="10dp" | ||
| 37 | + android:layout_height="match_parent" | ||
| 38 | + android:orientation="horizontal" | ||
| 39 | + android:layout_weight="1"/> | ||
| 40 | + <ImageView | ||
| 41 | + android:layout_width="77dp" | ||
| 42 | + android:layout_height="44dp" | ||
| 43 | + android:layout_gravity="center" | ||
| 44 | + android:layout_weight="1" | ||
| 45 | + android:src="@drawable/toolbar_logo" /> | ||
| 46 | + <LinearLayout | ||
| 47 | + android:layout_width="10dp" | ||
| 48 | + android:layout_height="match_parent" | ||
| 49 | + android:orientation="horizontal" | ||
| 50 | + android:layout_weight="1"/> | ||
| 51 | + <LinearLayout | ||
| 52 | + android:layout_width="10dp" | ||
| 53 | + android:layout_height="match_parent" | ||
| 54 | + android:orientation="horizontal" | ||
| 55 | + android:layout_weight="1.5"/> | ||
| 56 | + | ||
| 57 | + </LinearLayout> | ||
| 58 | + | ||
| 59 | + | ||
| 60 | + </androidx.appcompat.widget.Toolbar> | ||
| 61 | + | ||
| 62 | + <LinearLayout | ||
| 63 | + android:layout_width="match_parent" | ||
| 64 | + android:layout_height="50dp" | ||
| 65 | + android:layout_weight="0" | ||
| 66 | + android:orientation="horizontal"> | ||
| 67 | + | ||
| 68 | + <TextView | ||
| 69 | + android:id="@+id/stageTextView1" | ||
| 70 | + android:layout_width="wrap_content" | ||
| 71 | + android:layout_height="match_parent" | ||
| 72 | + android:layout_gravity="center" | ||
| 73 | + android:layout_weight="1" | ||
| 74 | + android:background="#1E90FF" | ||
| 75 | + android:gravity="center" | ||
| 76 | + android:text="1" /> | ||
| 77 | + | ||
| 78 | + <TextView | ||
| 79 | + android:id="@+id/stageTextView2" | ||
| 80 | + android:layout_width="wrap_content" | ||
| 81 | + android:layout_height="match_parent" | ||
| 82 | + android:layout_gravity="center" | ||
| 83 | + android:layout_weight="1" | ||
| 84 | + android:background="#1E90FF" | ||
| 85 | + android:gravity="center" | ||
| 86 | + android:text="2" /> | ||
| 87 | + | ||
| 88 | + <TextView | ||
| 89 | + android:id="@+id/stageTextView3" | ||
| 90 | + android:layout_width="wrap_content" | ||
| 91 | + android:layout_height="match_parent" | ||
| 92 | + android:layout_gravity="center" | ||
| 93 | + android:layout_weight="1" | ||
| 94 | + | ||
| 95 | + android:background="#1E90FF" | ||
| 96 | + android:gravity="center" | ||
| 97 | + android:text="3" /> | ||
| 98 | + | ||
| 99 | + <TextView | ||
| 100 | + android:id="@+id/stageTextView4" | ||
| 101 | + android:layout_width="wrap_content" | ||
| 102 | + android:layout_height="match_parent" | ||
| 103 | + android:layout_gravity="center" | ||
| 104 | + android:layout_weight="1" | ||
| 105 | + android:gravity="center" | ||
| 106 | + android:text="4" /> | ||
| 107 | + | ||
| 108 | + <TextView | ||
| 109 | + android:id="@+id/stageTextView5" | ||
| 110 | + android:layout_width="wrap_content" | ||
| 111 | + android:layout_height="match_parent" | ||
| 112 | + android:layout_gravity="center" | ||
| 113 | + android:layout_weight="1" | ||
| 114 | + android:gravity="center" | ||
| 115 | + android:text="5" /> | ||
| 116 | + | ||
| 117 | + </LinearLayout> | ||
| 118 | + | ||
| 119 | + <LinearLayout | ||
| 120 | + android:layout_width="match_parent" | ||
| 121 | + android:layout_height="10dp" | ||
| 122 | + android:layout_weight="1" | ||
| 123 | + android:orientation="vertical"></LinearLayout> | ||
| 124 | + | ||
| 125 | + <LinearLayout | ||
| 126 | + android:layout_width="match_parent" | ||
| 127 | + android:layout_height="wrap_content" | ||
| 128 | + android:layout_weight="1" | ||
| 129 | + android:orientation="vertical"> | ||
| 130 | + | ||
| 131 | + <LinearLayout | ||
| 132 | + android:layout_width="match_parent" | ||
| 133 | + android:layout_height="wrap_content" | ||
| 134 | + android:orientation="vertical"> | ||
| 135 | + | ||
| 136 | + <RelativeLayout | ||
| 137 | + android:layout_width="match_parent" | ||
| 138 | + android:layout_height="match_parent"> | ||
| 139 | + | ||
| 140 | + <TextView | ||
| 141 | + android:id="@+id/explainTextView" | ||
| 142 | + android:layout_width="wrap_content" | ||
| 143 | + android:layout_height="wrap_content" | ||
| 144 | + android:layout_centerInParent="true" | ||
| 145 | + android:layout_gravity="center" | ||
| 146 | + android:gravity="center" | ||
| 147 | + android:text="5. 현재 재학상태를 선택해 주세요." /> | ||
| 148 | + | ||
| 149 | + <Button | ||
| 150 | + android:id="@+id/questionButton" | ||
| 151 | + android:layout_width="30dp" | ||
| 152 | + android:layout_height="30dp" | ||
| 153 | + android:layout_gravity="center" | ||
| 154 | + android:layout_toRightOf="@id/explainTextView" | ||
| 155 | + android:backgroundTint="#1E90FF" | ||
| 156 | + android:gravity="center" | ||
| 157 | + android:text=" ? " | ||
| 158 | + android:textSize="8sp" /> | ||
| 159 | + </RelativeLayout> | ||
| 160 | + </LinearLayout> | ||
| 161 | + | ||
| 162 | + <LinearLayout | ||
| 163 | + android:layout_width="match_parent" | ||
| 164 | + android:layout_height="50dp" | ||
| 165 | + android:layout_weight="1" | ||
| 166 | + android:orientation="vertical"> | ||
| 167 | + | ||
| 168 | + </LinearLayout> | ||
| 169 | + | ||
| 170 | + <ScrollView | ||
| 171 | + android:layout_width="match_parent" | ||
| 172 | + android:layout_height="wrap_content"> | ||
| 173 | + | ||
| 174 | + <LinearLayout | ||
| 175 | + android:layout_width="match_parent" | ||
| 176 | + android:layout_height="wrap_content" | ||
| 177 | + android:orientation="vertical"> | ||
| 178 | + | ||
| 179 | + <LinearLayout | ||
| 180 | + android:layout_width="wrap_content" | ||
| 181 | + android:layout_height="wrap_content" | ||
| 182 | + android:layout_gravity="center" | ||
| 183 | + android:gravity="center" | ||
| 184 | + android:orientation="vertical"> | ||
| 185 | + | ||
| 186 | + <LinearLayout | ||
| 187 | + android:layout_width="match_parent" | ||
| 188 | + android:layout_height="match_parent" | ||
| 189 | + android:orientation="horizontal"> | ||
| 190 | + | ||
| 191 | + <ToggleButton | ||
| 192 | + android:id="@+id/elementaryButton" | ||
| 193 | + android:layout_width="wrap_content" | ||
| 194 | + android:layout_height="wrap_content" | ||
| 195 | + android:layout_weight="1" | ||
| 196 | + android:background="@drawable/profil_selector" | ||
| 197 | + android:text="초등학교" | ||
| 198 | + android:textOff="초등학교" | ||
| 199 | + android:textOn="초등학교" /> | ||
| 200 | + | ||
| 201 | + <ToggleButton | ||
| 202 | + android:id="@+id/middleButton" | ||
| 203 | + android:layout_width="wrap_content" | ||
| 204 | + android:layout_height="wrap_content" | ||
| 205 | + android:layout_weight="1" | ||
| 206 | + android:background="@drawable/profil_selector" | ||
| 207 | + android:text="중학교" | ||
| 208 | + android:textOff="중학교" | ||
| 209 | + android:textOn="중학교"/> | ||
| 210 | + | ||
| 211 | + <ToggleButton | ||
| 212 | + android:id="@+id/highButton" | ||
| 213 | + android:layout_width="wrap_content" | ||
| 214 | + android:layout_height="wrap_content" | ||
| 215 | + android:layout_weight="1" | ||
| 216 | + android:background="@drawable/profil_selector" | ||
| 217 | + android:text="고등학교" | ||
| 218 | + android:textOff="고등학교" | ||
| 219 | + android:textOn="고등학교" /> | ||
| 220 | + | ||
| 221 | + </LinearLayout> | ||
| 222 | + | ||
| 223 | + <LinearLayout | ||
| 224 | + android:layout_width="match_parent" | ||
| 225 | + android:layout_height="match_parent" | ||
| 226 | + android:orientation="horizontal"> | ||
| 227 | + | ||
| 228 | + <ToggleButton | ||
| 229 | + android:id="@+id/specialButton" | ||
| 230 | + android:layout_width="wrap_content" | ||
| 231 | + android:layout_height="wrap_content" | ||
| 232 | + android:layout_weight="1" | ||
| 233 | + android:background="@drawable/profil_selector" | ||
| 234 | + android:text="특수학교" | ||
| 235 | + android:textOff="특수학교" | ||
| 236 | + android:textOn="특수학교" /> | ||
| 237 | + | ||
| 238 | + <ToggleButton | ||
| 239 | + android:id="@+id/universityButton" | ||
| 240 | + android:layout_width="wrap_content" | ||
| 241 | + android:layout_height="wrap_content" | ||
| 242 | + android:layout_weight="1" | ||
| 243 | + android:background="@drawable/profil_selector" | ||
| 244 | + android:text="대학교" | ||
| 245 | + android:textOff="대학교" | ||
| 246 | + android:textOn="대학교" /> | ||
| 247 | + | ||
| 248 | + <ToggleButton | ||
| 249 | + android:id="@+id/graduateButton" | ||
| 250 | + android:layout_width="wrap_content" | ||
| 251 | + android:layout_height="wrap_content" | ||
| 252 | + android:layout_weight="1" | ||
| 253 | + android:background="@drawable/profil_selector" | ||
| 254 | + android:text="대학원" | ||
| 255 | + android:textOff="대학원" | ||
| 256 | + android:textOn="대학원" /> | ||
| 257 | + </LinearLayout> | ||
| 258 | + | ||
| 259 | + | ||
| 260 | + <LinearLayout | ||
| 261 | + android:layout_width="match_parent" | ||
| 262 | + android:layout_height="match_parent" | ||
| 263 | + android:orientation="horizontal"> | ||
| 264 | + | ||
| 265 | + <ToggleButton | ||
| 266 | + android:id="@+id/nothingButton" | ||
| 267 | + android:layout_width="wrap_content" | ||
| 268 | + android:layout_height="wrap_content" | ||
| 269 | + android:layout_weight="1" | ||
| 270 | + android:background="@drawable/profil_selector" | ||
| 271 | + android:text="해당없음" | ||
| 272 | + android:textOff="해당없음" | ||
| 273 | + android:textOn="해당없음" /> | ||
| 274 | + </LinearLayout> | ||
| 275 | + | ||
| 276 | + </LinearLayout> | ||
| 277 | + </LinearLayout> | ||
| 278 | + </ScrollView> | ||
| 279 | + | ||
| 280 | + <LinearLayout | ||
| 281 | + android:layout_width="match_parent" | ||
| 282 | + android:layout_height="100dp" | ||
| 283 | + android:layout_weight="1" | ||
| 284 | + android:orientation="vertical"></LinearLayout> | ||
| 285 | + | ||
| 286 | + <LinearLayout | ||
| 287 | + android:layout_width="match_parent" | ||
| 288 | + android:layout_height="wrap_content" | ||
| 289 | + android:orientation="horizontal"> | ||
| 290 | + | ||
| 291 | + <Button | ||
| 292 | + android:id="@+id/previousButton" | ||
| 293 | + android:layout_width="10dp" | ||
| 294 | + android:layout_height="wrap_content" | ||
| 295 | + android:layout_weight="1" | ||
| 296 | + android:text="이전 단계로" /> | ||
| 297 | + | ||
| 298 | + <Button | ||
| 299 | + android:id="@+id/nextButton" | ||
| 300 | + android:layout_width="10dp" | ||
| 301 | + android:layout_height="wrap_content" | ||
| 302 | + android:layout_weight="1" | ||
| 303 | + android:text="다음 단계로" /> | ||
| 304 | + </LinearLayout> | ||
| 305 | + </LinearLayout> | ||
| 306 | + </LinearLayout> | ||
| 307 | +</androidx.constraintlayout.widget.ConstraintLayout> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 1 | +<?xml version="1.0" encoding="utf-8"?> | ||
| 2 | +<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
| 3 | + xmlns:app="http://schemas.android.com/apk/res-auto" | ||
| 4 | + xmlns:tools="http://schemas.android.com/tools" | ||
| 5 | + android:layout_width="match_parent" | ||
| 6 | + android:layout_height="match_parent" | ||
| 7 | + tools:context=".InputProfilThirdThreeActivity"> | ||
| 8 | + | ||
| 9 | + <LinearLayout | ||
| 10 | + android:layout_width="match_parent" | ||
| 11 | + android:layout_height="match_parent" | ||
| 12 | + android:orientation="vertical"> | ||
| 13 | + | ||
| 14 | + <androidx.appcompat.widget.Toolbar | ||
| 15 | + android:id="@+id/toolbar" | ||
| 16 | + android:layout_width="fill_parent" | ||
| 17 | + android:layout_height="wrap_content" | ||
| 18 | + android:layout_marginBottom="11dp" | ||
| 19 | + android:background="#FFF" | ||
| 20 | + android:elevation="5dp" | ||
| 21 | + android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" | ||
| 22 | + app:popupTheme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> | ||
| 23 | + | ||
| 24 | + <LinearLayout | ||
| 25 | + android:layout_width="match_parent" | ||
| 26 | + android:layout_height="match_parent" | ||
| 27 | + android:orientation="horizontal"> | ||
| 28 | + | ||
| 29 | + <Button | ||
| 30 | + android:id="@+id/skipButton" | ||
| 31 | + android:layout_width="10dp" | ||
| 32 | + android:layout_height="match_parent" | ||
| 33 | + android:layout_weight="1.5" | ||
| 34 | + android:text="건너뛰기"/> | ||
| 35 | + <LinearLayout | ||
| 36 | + android:layout_width="10dp" | ||
| 37 | + android:layout_height="match_parent" | ||
| 38 | + android:orientation="horizontal" | ||
| 39 | + android:layout_weight="1"/> | ||
| 40 | + <ImageView | ||
| 41 | + android:layout_width="77dp" | ||
| 42 | + android:layout_height="44dp" | ||
| 43 | + android:layout_gravity="center" | ||
| 44 | + android:layout_weight="1" | ||
| 45 | + android:src="@drawable/toolbar_logo" /> | ||
| 46 | + <LinearLayout | ||
| 47 | + android:layout_width="10dp" | ||
| 48 | + android:layout_height="match_parent" | ||
| 49 | + android:orientation="horizontal" | ||
| 50 | + android:layout_weight="1"/> | ||
| 51 | + <LinearLayout | ||
| 52 | + android:layout_width="10dp" | ||
| 53 | + android:layout_height="match_parent" | ||
| 54 | + android:orientation="horizontal" | ||
| 55 | + android:layout_weight="1.5"/> | ||
| 56 | + | ||
| 57 | + </LinearLayout> | ||
| 58 | + | ||
| 59 | + | ||
| 60 | + </androidx.appcompat.widget.Toolbar> | ||
| 61 | + | ||
| 62 | + <LinearLayout | ||
| 63 | + android:layout_width="match_parent" | ||
| 64 | + android:layout_height="50dp" | ||
| 65 | + android:layout_weight="0" | ||
| 66 | + android:orientation="horizontal"> | ||
| 67 | + | ||
| 68 | + <TextView | ||
| 69 | + android:id="@+id/stageTextView1" | ||
| 70 | + android:layout_width="wrap_content" | ||
| 71 | + android:layout_height="match_parent" | ||
| 72 | + android:layout_gravity="center" | ||
| 73 | + android:layout_weight="1" | ||
| 74 | + android:background="#1E90FF" | ||
| 75 | + android:gravity="center" | ||
| 76 | + android:text="1" /> | ||
| 77 | + | ||
| 78 | + <TextView | ||
| 79 | + android:id="@+id/stageTextView2" | ||
| 80 | + android:layout_width="wrap_content" | ||
| 81 | + android:layout_height="match_parent" | ||
| 82 | + android:layout_gravity="center" | ||
| 83 | + android:layout_weight="1" | ||
| 84 | + android:background="#1E90FF" | ||
| 85 | + android:gravity="center" | ||
| 86 | + android:text="2" /> | ||
| 87 | + | ||
| 88 | + <TextView | ||
| 89 | + android:id="@+id/stageTextView3" | ||
| 90 | + android:layout_width="wrap_content" | ||
| 91 | + android:layout_height="match_parent" | ||
| 92 | + android:layout_gravity="center" | ||
| 93 | + android:layout_weight="1" | ||
| 94 | + android:background="#1E90FF" | ||
| 95 | + android:gravity="center" | ||
| 96 | + android:text="3" /> | ||
| 97 | + | ||
| 98 | + <TextView | ||
| 99 | + android:id="@+id/stageTextView4" | ||
| 100 | + android:layout_width="wrap_content" | ||
| 101 | + android:layout_height="match_parent" | ||
| 102 | + android:layout_gravity="center" | ||
| 103 | + android:layout_weight="1" | ||
| 104 | + android:gravity="center" | ||
| 105 | + android:text="4" /> | ||
| 106 | + | ||
| 107 | + <TextView | ||
| 108 | + android:id="@+id/stageTextView5" | ||
| 109 | + android:layout_width="wrap_content" | ||
| 110 | + android:layout_height="match_parent" | ||
| 111 | + android:layout_gravity="center" | ||
| 112 | + android:layout_weight="1" | ||
| 113 | + android:gravity="center" | ||
| 114 | + android:text="5" /> | ||
| 115 | + | ||
| 116 | + </LinearLayout> | ||
| 117 | + | ||
| 118 | + <LinearLayout | ||
| 119 | + android:layout_width="match_parent" | ||
| 120 | + android:layout_height="10dp" | ||
| 121 | + android:layout_weight="1" | ||
| 122 | + android:orientation="vertical"></LinearLayout> | ||
| 123 | + | ||
| 124 | + <LinearLayout | ||
| 125 | + android:layout_width="match_parent" | ||
| 126 | + android:layout_height="wrap_content" | ||
| 127 | + android:layout_weight="1" | ||
| 128 | + android:orientation="vertical"> | ||
| 129 | + | ||
| 130 | + <LinearLayout | ||
| 131 | + android:layout_width="match_parent" | ||
| 132 | + android:layout_height="wrap_content" | ||
| 133 | + android:orientation="vertical"> | ||
| 134 | + | ||
| 135 | + <RelativeLayout | ||
| 136 | + android:layout_width="match_parent" | ||
| 137 | + android:layout_height="match_parent"> | ||
| 138 | + | ||
| 139 | + <TextView | ||
| 140 | + android:id="@+id/explainTextView" | ||
| 141 | + android:layout_width="wrap_content" | ||
| 142 | + android:layout_height="wrap_content" | ||
| 143 | + android:layout_centerInParent="true" | ||
| 144 | + android:layout_gravity="center" | ||
| 145 | + android:gravity="center" | ||
| 146 | + android:text="7. 병역 구분을 선택해 주세요." /> | ||
| 147 | + | ||
| 148 | + <Button | ||
| 149 | + android:id="@+id/questionButton" | ||
| 150 | + android:layout_width="30dp" | ||
| 151 | + android:layout_height="30dp" | ||
| 152 | + android:layout_gravity="center" | ||
| 153 | + android:layout_toRightOf="@id/explainTextView" | ||
| 154 | + android:backgroundTint="#1E90FF" | ||
| 155 | + android:gravity="center" | ||
| 156 | + android:text=" ? " | ||
| 157 | + android:textSize="8sp" /> | ||
| 158 | + </RelativeLayout> | ||
| 159 | + </LinearLayout> | ||
| 160 | + | ||
| 161 | + <LinearLayout | ||
| 162 | + android:layout_width="match_parent" | ||
| 163 | + android:layout_height="50dp" | ||
| 164 | + android:layout_weight="1" | ||
| 165 | + android:orientation="vertical"> | ||
| 166 | + | ||
| 167 | + </LinearLayout> | ||
| 168 | + | ||
| 169 | + <ScrollView | ||
| 170 | + android:layout_width="match_parent" | ||
| 171 | + android:layout_height="wrap_content"> | ||
| 172 | + | ||
| 173 | + <LinearLayout | ||
| 174 | + android:layout_width="match_parent" | ||
| 175 | + android:layout_height="wrap_content" | ||
| 176 | + android:orientation="vertical"> | ||
| 177 | + | ||
| 178 | + <LinearLayout | ||
| 179 | + android:layout_width="wrap_content" | ||
| 180 | + android:layout_height="wrap_content" | ||
| 181 | + android:layout_gravity="center" | ||
| 182 | + android:gravity="center" | ||
| 183 | + android:orientation="vertical"> | ||
| 184 | + | ||
| 185 | + <LinearLayout | ||
| 186 | + android:layout_width="match_parent" | ||
| 187 | + android:layout_height="match_parent" | ||
| 188 | + android:orientation="horizontal"> | ||
| 189 | + | ||
| 190 | + <ToggleButton | ||
| 191 | + android:id="@+id/nothingButton" | ||
| 192 | + android:layout_width="wrap_content" | ||
| 193 | + android:layout_height="wrap_content" | ||
| 194 | + android:layout_weight="1" | ||
| 195 | + android:background="@drawable/profil_selector" | ||
| 196 | + android:text="해당없음" | ||
| 197 | + android:textOff="해당없음" | ||
| 198 | + android:textOn="해당없음" /> | ||
| 199 | + | ||
| 200 | + <ToggleButton | ||
| 201 | + android:id="@+id/mipilButton" | ||
| 202 | + android:layout_width="wrap_content" | ||
| 203 | + android:layout_height="wrap_content" | ||
| 204 | + android:layout_weight="1" | ||
| 205 | + android:background="@drawable/profil_selector" | ||
| 206 | + android:text="군미필" | ||
| 207 | + android:textOff="군미필" | ||
| 208 | + android:textOn="군미필" /> | ||
| 209 | + | ||
| 210 | + <ToggleButton | ||
| 211 | + android:id="@+id/myunjaeButton" | ||
| 212 | + android:layout_width="wrap_content" | ||
| 213 | + android:layout_height="wrap_content" | ||
| 214 | + android:layout_weight="1" | ||
| 215 | + android:background="@drawable/profil_selector" | ||
| 216 | + android:text="면제" | ||
| 217 | + android:textOff="면제" | ||
| 218 | + android:textOn="면제" /> | ||
| 219 | + | ||
| 220 | + </LinearLayout> | ||
| 221 | + | ||
| 222 | + <LinearLayout | ||
| 223 | + android:layout_width="match_parent" | ||
| 224 | + android:layout_height="match_parent" | ||
| 225 | + android:orientation="horizontal"> | ||
| 226 | + | ||
| 227 | + <ToggleButton | ||
| 228 | + android:id="@+id/jobsoldierButton" | ||
| 229 | + android:layout_width="wrap_content" | ||
| 230 | + android:layout_height="wrap_content" | ||
| 231 | + android:layout_weight="1" | ||
| 232 | + android:background="@drawable/profil_selector" | ||
| 233 | + android:text="직업군인" | ||
| 234 | + android:textOff="직업군인" | ||
| 235 | + android:textOn="직업군인" /> | ||
| 236 | + | ||
| 237 | + <ToggleButton | ||
| 238 | + android:id="@+id/bokmoojoongButton" | ||
| 239 | + android:layout_width="wrap_content" | ||
| 240 | + android:layout_height="wrap_content" | ||
| 241 | + android:layout_weight="1" | ||
| 242 | + android:background="@drawable/profil_selector" | ||
| 243 | + android:text="복무중(현역병)" | ||
| 244 | + android:textOff="복무중(현역병)" | ||
| 245 | + android:textOn="복무중(현역병)" /> | ||
| 246 | + | ||
| 247 | + <ToggleButton | ||
| 248 | + android:id="@+id/mangijedaeButton" | ||
| 249 | + android:layout_width="wrap_content" | ||
| 250 | + android:layout_height="wrap_content" | ||
| 251 | + android:layout_weight="1" | ||
| 252 | + android:background="@drawable/profil_selector" | ||
| 253 | + android:text="만기제대" | ||
| 254 | + android:textOff="만기제대" | ||
| 255 | + android:textOn="만기제대" /> | ||
| 256 | + </LinearLayout> | ||
| 257 | + | ||
| 258 | + | ||
| 259 | + <LinearLayout | ||
| 260 | + android:layout_width="match_parent" | ||
| 261 | + android:layout_height="match_parent" | ||
| 262 | + android:orientation="horizontal"> | ||
| 263 | + | ||
| 264 | + <ToggleButton | ||
| 265 | + android:id="@+id/specialmanryoButton" | ||
| 266 | + android:layout_width="wrap_content" | ||
| 267 | + android:layout_height="wrap_content" | ||
| 268 | + android:layout_weight="1" | ||
| 269 | + android:background="@drawable/profil_selector" | ||
| 270 | + android:text="병역특례(복무만료)" | ||
| 271 | + android:textOff="병역특례(복무만료)" | ||
| 272 | + android:textOn="병역특례(복무만료)" /> | ||
| 273 | + | ||
| 274 | + <ToggleButton | ||
| 275 | + android:id="@+id/specialbokmoosanupButton" | ||
| 276 | + android:layout_width="wrap_content" | ||
| 277 | + android:layout_height="wrap_content" | ||
| 278 | + android:layout_weight="1" | ||
| 279 | + android:background="@drawable/profil_selector" | ||
| 280 | + android:text="병역특례(산업복무중)" | ||
| 281 | + android:textOff="병역특례(산업복무중)" | ||
| 282 | + android:textOn="병역특례(산업복무중)" /> | ||
| 283 | + | ||
| 284 | + <ToggleButton | ||
| 285 | + android:id="@+id/specialbokmoojeonmoonButton" | ||
| 286 | + android:layout_width="wrap_content" | ||
| 287 | + android:layout_height="wrap_content" | ||
| 288 | + android:layout_weight="1" | ||
| 289 | + android:background="@drawable/profil_selector" | ||
| 290 | + android:text="병역특례(전문복무중)" | ||
| 291 | + android:textOff="병역특례(전문복무중)" | ||
| 292 | + android:textOn="병역특례(전문복무중)" /> | ||
| 293 | + </LinearLayout> | ||
| 294 | + | ||
| 295 | + <LinearLayout | ||
| 296 | + android:layout_width="match_parent" | ||
| 297 | + android:layout_height="match_parent" | ||
| 298 | + android:orientation="horizontal"> | ||
| 299 | + | ||
| 300 | + <ToggleButton | ||
| 301 | + android:id="@+id/jedaeguitarButton" | ||
| 302 | + android:layout_width="wrap_content" | ||
| 303 | + android:layout_height="wrap_content" | ||
| 304 | + android:layout_weight="1" | ||
| 305 | + android:background="@drawable/profil_selector" | ||
| 306 | + android:text="제대기타" | ||
| 307 | + android:textOff="제대기타" | ||
| 308 | + android:textOn="제대기타" /> | ||
| 309 | + </LinearLayout> | ||
| 310 | + | ||
| 311 | + | ||
| 312 | + </LinearLayout> | ||
| 313 | + </LinearLayout> | ||
| 314 | + </ScrollView> | ||
| 315 | + | ||
| 316 | + <LinearLayout | ||
| 317 | + android:layout_width="match_parent" | ||
| 318 | + android:layout_height="100dp" | ||
| 319 | + android:layout_weight="1" | ||
| 320 | + android:orientation="vertical"></LinearLayout> | ||
| 321 | + | ||
| 322 | + <LinearLayout | ||
| 323 | + android:layout_width="match_parent" | ||
| 324 | + android:layout_height="wrap_content" | ||
| 325 | + android:orientation="horizontal"> | ||
| 326 | + | ||
| 327 | + <Button | ||
| 328 | + android:id="@+id/previousButton" | ||
| 329 | + android:layout_width="10dp" | ||
| 330 | + android:layout_height="wrap_content" | ||
| 331 | + android:layout_weight="1" | ||
| 332 | + android:text="이전 단계로" /> | ||
| 333 | + | ||
| 334 | + <Button | ||
| 335 | + android:id="@+id/nextButton" | ||
| 336 | + android:layout_width="10dp" | ||
| 337 | + android:layout_height="wrap_content" | ||
| 338 | + android:layout_weight="1" | ||
| 339 | + android:text="다음 단계로" /> | ||
| 340 | + </LinearLayout> | ||
| 341 | + </LinearLayout> | ||
| 342 | + </LinearLayout> | ||
| 343 | +</androidx.constraintlayout.widget.ConstraintLayout> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 1 | +<?xml version="1.0" encoding="utf-8"?> | ||
| 2 | +<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
| 3 | + xmlns:app="http://schemas.android.com/apk/res-auto" | ||
| 4 | + xmlns:tools="http://schemas.android.com/tools" | ||
| 5 | + android:layout_width="match_parent" | ||
| 6 | + android:layout_height="match_parent" | ||
| 7 | + tools:context=".InputProfilThirdTwoActivity"> | ||
| 8 | + | ||
| 9 | + <LinearLayout | ||
| 10 | + android:layout_width="match_parent" | ||
| 11 | + android:layout_height="match_parent" | ||
| 12 | + android:orientation="vertical"> | ||
| 13 | + | ||
| 14 | + <androidx.appcompat.widget.Toolbar | ||
| 15 | + android:id="@+id/toolbar" | ||
| 16 | + android:layout_width="fill_parent" | ||
| 17 | + android:layout_height="wrap_content" | ||
| 18 | + android:layout_marginBottom="11dp" | ||
| 19 | + android:background="#FFF" | ||
| 20 | + android:elevation="5dp" | ||
| 21 | + android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" | ||
| 22 | + app:popupTheme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> | ||
| 23 | + | ||
| 24 | + <LinearLayout | ||
| 25 | + android:layout_width="match_parent" | ||
| 26 | + android:layout_height="match_parent" | ||
| 27 | + android:orientation="horizontal"> | ||
| 28 | + | ||
| 29 | + <Button | ||
| 30 | + android:id="@+id/skipButton" | ||
| 31 | + android:layout_width="10dp" | ||
| 32 | + android:layout_height="match_parent" | ||
| 33 | + android:layout_weight="1.5" | ||
| 34 | + android:text="건너뛰기"/> | ||
| 35 | + <LinearLayout | ||
| 36 | + android:layout_width="10dp" | ||
| 37 | + android:layout_height="match_parent" | ||
| 38 | + android:orientation="horizontal" | ||
| 39 | + android:layout_weight="1"/> | ||
| 40 | + <ImageView | ||
| 41 | + android:layout_width="77dp" | ||
| 42 | + android:layout_height="44dp" | ||
| 43 | + android:layout_gravity="center" | ||
| 44 | + android:layout_weight="1" | ||
| 45 | + android:src="@drawable/toolbar_logo" /> | ||
| 46 | + <LinearLayout | ||
| 47 | + android:layout_width="10dp" | ||
| 48 | + android:layout_height="match_parent" | ||
| 49 | + android:orientation="horizontal" | ||
| 50 | + android:layout_weight="1"/> | ||
| 51 | + <LinearLayout | ||
| 52 | + android:layout_width="10dp" | ||
| 53 | + android:layout_height="match_parent" | ||
| 54 | + android:orientation="horizontal" | ||
| 55 | + android:layout_weight="1.5"/> | ||
| 56 | + | ||
| 57 | + </LinearLayout> | ||
| 58 | + | ||
| 59 | + | ||
| 60 | + </androidx.appcompat.widget.Toolbar> | ||
| 61 | + | ||
| 62 | + <LinearLayout | ||
| 63 | + android:layout_width="match_parent" | ||
| 64 | + android:layout_height="50dp" | ||
| 65 | + android:layout_weight="0" | ||
| 66 | + android:orientation="horizontal"> | ||
| 67 | + | ||
| 68 | + <TextView | ||
| 69 | + android:id="@+id/stageTextView1" | ||
| 70 | + android:layout_width="wrap_content" | ||
| 71 | + android:layout_height="match_parent" | ||
| 72 | + android:layout_gravity="center" | ||
| 73 | + android:layout_weight="1" | ||
| 74 | + android:background="#1E90FF" | ||
| 75 | + android:gravity="center" | ||
| 76 | + android:text="1" /> | ||
| 77 | + | ||
| 78 | + <TextView | ||
| 79 | + android:id="@+id/stageTextView2" | ||
| 80 | + android:layout_width="wrap_content" | ||
| 81 | + android:layout_height="match_parent" | ||
| 82 | + android:layout_gravity="center" | ||
| 83 | + android:layout_weight="1" | ||
| 84 | + android:background="#1E90FF" | ||
| 85 | + android:gravity="center" | ||
| 86 | + android:text="2" /> | ||
| 87 | + | ||
| 88 | + <TextView | ||
| 89 | + android:id="@+id/stageTextView3" | ||
| 90 | + android:layout_width="wrap_content" | ||
| 91 | + android:layout_height="match_parent" | ||
| 92 | + android:layout_gravity="center" | ||
| 93 | + android:layout_weight="1" | ||
| 94 | + | ||
| 95 | + android:background="#1E90FF" | ||
| 96 | + android:gravity="center" | ||
| 97 | + android:text="3" /> | ||
| 98 | + | ||
| 99 | + <TextView | ||
| 100 | + android:id="@+id/stageTextView4" | ||
| 101 | + android:layout_width="wrap_content" | ||
| 102 | + android:layout_height="match_parent" | ||
| 103 | + android:layout_gravity="center" | ||
| 104 | + android:layout_weight="1" | ||
| 105 | + android:gravity="center" | ||
| 106 | + android:text="4" /> | ||
| 107 | + | ||
| 108 | + <TextView | ||
| 109 | + android:id="@+id/stageTextView5" | ||
| 110 | + android:layout_width="wrap_content" | ||
| 111 | + android:layout_height="match_parent" | ||
| 112 | + android:layout_gravity="center" | ||
| 113 | + android:layout_weight="1" | ||
| 114 | + android:gravity="center" | ||
| 115 | + android:text="5" /> | ||
| 116 | + | ||
| 117 | + </LinearLayout> | ||
| 118 | + | ||
| 119 | + <LinearLayout | ||
| 120 | + android:layout_width="match_parent" | ||
| 121 | + android:layout_height="wrap_content" | ||
| 122 | + android:layout_weight="1" | ||
| 123 | + android:orientation="vertical"> | ||
| 124 | + | ||
| 125 | + <LinearLayout | ||
| 126 | + android:layout_width="match_parent" | ||
| 127 | + android:layout_height="wrap_content" | ||
| 128 | + android:layout_weight="1" | ||
| 129 | + android:orientation="horizontal"></LinearLayout> | ||
| 130 | + | ||
| 131 | + <LinearLayout | ||
| 132 | + android:layout_width="match_parent" | ||
| 133 | + android:layout_height="wrap_content" | ||
| 134 | + android:orientation="vertical"> | ||
| 135 | + | ||
| 136 | + <RelativeLayout | ||
| 137 | + android:layout_width="match_parent" | ||
| 138 | + android:layout_height="match_parent"> | ||
| 139 | + | ||
| 140 | + <TextView | ||
| 141 | + android:id="@+id/explainTextView" | ||
| 142 | + android:layout_width="wrap_content" | ||
| 143 | + android:layout_height="wrap_content" | ||
| 144 | + android:layout_centerInParent="true" | ||
| 145 | + android:layout_gravity="center" | ||
| 146 | + android:gravity="center" | ||
| 147 | + android:text="6. 직업유무를 선택해 주세요." /> | ||
| 148 | + | ||
| 149 | + <Button | ||
| 150 | + android:id="@+id/questionButton" | ||
| 151 | + android:layout_width="30dp" | ||
| 152 | + android:layout_height="30dp" | ||
| 153 | + android:layout_gravity="center" | ||
| 154 | + android:layout_toRightOf="@id/explainTextView" | ||
| 155 | + android:backgroundTint="#1E90FF" | ||
| 156 | + android:gravity="center" | ||
| 157 | + android:text=" ? " | ||
| 158 | + android:textSize="8sp" /> | ||
| 159 | + </RelativeLayout> | ||
| 160 | + </LinearLayout> | ||
| 161 | + | ||
| 162 | + <LinearLayout | ||
| 163 | + android:layout_width="match_parent" | ||
| 164 | + android:layout_height="wrap_content" | ||
| 165 | + android:orientation="vertical"> | ||
| 166 | + | ||
| 167 | + <LinearLayout | ||
| 168 | + android:layout_width="wrap_content" | ||
| 169 | + android:layout_height="wrap_content" | ||
| 170 | + android:layout_gravity="center" | ||
| 171 | + android:gravity="center" | ||
| 172 | + android:orientation="vertical"> | ||
| 173 | + | ||
| 174 | + <LinearLayout | ||
| 175 | + android:layout_width="match_parent" | ||
| 176 | + android:layout_height="match_parent" | ||
| 177 | + android:orientation="horizontal"> | ||
| 178 | + | ||
| 179 | + <ToggleButton | ||
| 180 | + android:id="@+id/jobButton" | ||
| 181 | + android:layout_width="300dp" | ||
| 182 | + android:layout_height="wrap_content" | ||
| 183 | + android:layout_weight="1" | ||
| 184 | + android:background="@drawable/profil_selector" | ||
| 185 | + android:text="있음" | ||
| 186 | + android:textOff="있음" | ||
| 187 | + android:textOn="있음" /> | ||
| 188 | + | ||
| 189 | + </LinearLayout> | ||
| 190 | + | ||
| 191 | + | ||
| 192 | + <LinearLayout | ||
| 193 | + android:layout_width="match_parent" | ||
| 194 | + android:layout_height="match_parent" | ||
| 195 | + android:orientation="horizontal"> | ||
| 196 | + | ||
| 197 | + <ToggleButton | ||
| 198 | + android:id="@+id/nojobButton" | ||
| 199 | + android:layout_width="300dp" | ||
| 200 | + android:layout_height="wrap_content" | ||
| 201 | + android:layout_weight="1" | ||
| 202 | + android:background="@drawable/profil_selector" | ||
| 203 | + android:text="없음" | ||
| 204 | + android:textOff="없음" | ||
| 205 | + android:textOn="없음" /> | ||
| 206 | + </LinearLayout> | ||
| 207 | + | ||
| 208 | + </LinearLayout> | ||
| 209 | + </LinearLayout> | ||
| 210 | + | ||
| 211 | + <LinearLayout | ||
| 212 | + android:layout_width="match_parent" | ||
| 213 | + android:layout_height="50dp" | ||
| 214 | + android:layout_weight="1" | ||
| 215 | + android:orientation="vertical"> | ||
| 216 | + | ||
| 217 | + <LinearLayout | ||
| 218 | + android:layout_width="match_parent" | ||
| 219 | + android:layout_height="wrap_content" | ||
| 220 | + android:orientation="vertical"> | ||
| 221 | + | ||
| 222 | + <RelativeLayout | ||
| 223 | + android:layout_width="match_parent" | ||
| 224 | + android:layout_height="match_parent"> | ||
| 225 | + | ||
| 226 | + <TextView | ||
| 227 | + android:id="@+id/explainSub1TextView" | ||
| 228 | + android:layout_width="wrap_content" | ||
| 229 | + android:layout_height="wrap_content" | ||
| 230 | + android:layout_centerInParent="true" | ||
| 231 | + android:layout_gravity="center" | ||
| 232 | + android:gravity="center" | ||
| 233 | + android:text="6-1. 근로 형태를 선택해 주세요." /> | ||
| 234 | + | ||
| 235 | + <Button | ||
| 236 | + android:id="@+id/questionSub1Button" | ||
| 237 | + android:layout_width="30dp" | ||
| 238 | + android:layout_height="30dp" | ||
| 239 | + android:layout_gravity="center" | ||
| 240 | + android:layout_toRightOf="@id/explainSub1TextView" | ||
| 241 | + android:backgroundTint="#1E90FF" | ||
| 242 | + android:gravity="center" | ||
| 243 | + android:text=" ? " | ||
| 244 | + android:textSize="8sp" /> | ||
| 245 | + </RelativeLayout> | ||
| 246 | + </LinearLayout> | ||
| 247 | + | ||
| 248 | + <LinearLayout | ||
| 249 | + android:layout_width="match_parent" | ||
| 250 | + android:layout_height="wrap_content" | ||
| 251 | + android:orientation="vertical"> | ||
| 252 | + | ||
| 253 | + <LinearLayout | ||
| 254 | + android:layout_width="wrap_content" | ||
| 255 | + android:layout_height="wrap_content" | ||
| 256 | + android:layout_gravity="center" | ||
| 257 | + android:gravity="center" | ||
| 258 | + android:orientation="vertical"> | ||
| 259 | + | ||
| 260 | + <LinearLayout | ||
| 261 | + android:layout_width="match_parent" | ||
| 262 | + android:layout_height="match_parent" | ||
| 263 | + android:orientation="horizontal"> | ||
| 264 | + | ||
| 265 | + <ToggleButton | ||
| 266 | + android:id="@+id/companyButton" | ||
| 267 | + android:layout_width="300dp" | ||
| 268 | + android:layout_height="wrap_content" | ||
| 269 | + android:layout_weight="1" | ||
| 270 | + android:background="@drawable/profil_selector" | ||
| 271 | + android:text="사업자" | ||
| 272 | + android:textOff="사업자" | ||
| 273 | + android:textOn="사업자" /> | ||
| 274 | + | ||
| 275 | + </LinearLayout> | ||
| 276 | + | ||
| 277 | + | ||
| 278 | + <LinearLayout | ||
| 279 | + android:layout_width="match_parent" | ||
| 280 | + android:layout_height="match_parent" | ||
| 281 | + android:orientation="horizontal"> | ||
| 282 | + | ||
| 283 | + <ToggleButton | ||
| 284 | + android:id="@+id/workerButton" | ||
| 285 | + android:layout_width="300dp" | ||
| 286 | + android:layout_height="wrap_content" | ||
| 287 | + android:layout_weight="1" | ||
| 288 | + android:background="@drawable/profil_selector" | ||
| 289 | + android:text="근로자" | ||
| 290 | + android:textOff="근로자" | ||
| 291 | + android:textOn="근로자" /> | ||
| 292 | + </LinearLayout> | ||
| 293 | + | ||
| 294 | + </LinearLayout> | ||
| 295 | + </LinearLayout> | ||
| 296 | + | ||
| 297 | + </LinearLayout> | ||
| 298 | + | ||
| 299 | + <LinearLayout | ||
| 300 | + android:layout_width="match_parent" | ||
| 301 | + android:layout_height="100dp" | ||
| 302 | + android:layout_weight="1" | ||
| 303 | + android:orientation="vertical"> | ||
| 304 | + | ||
| 305 | + <LinearLayout | ||
| 306 | + android:layout_width="match_parent" | ||
| 307 | + android:layout_height="wrap_content" | ||
| 308 | + android:orientation="vertical"> | ||
| 309 | + | ||
| 310 | + <RelativeLayout | ||
| 311 | + android:layout_width="match_parent" | ||
| 312 | + android:layout_height="match_parent"> | ||
| 313 | + | ||
| 314 | + <TextView | ||
| 315 | + android:id="@+id/explainSub2TextView" | ||
| 316 | + android:layout_width="wrap_content" | ||
| 317 | + android:layout_height="wrap_content" | ||
| 318 | + android:layout_centerInParent="true" | ||
| 319 | + android:layout_gravity="center" | ||
| 320 | + android:gravity="center" | ||
| 321 | + android:text="6-2. 현재 상태를 선택해 주세요." /> | ||
| 322 | + | ||
| 323 | + <Button | ||
| 324 | + android:id="@+id/questionSub2Button" | ||
| 325 | + android:layout_width="30dp" | ||
| 326 | + android:layout_height="30dp" | ||
| 327 | + android:layout_gravity="center" | ||
| 328 | + android:layout_toRightOf="@id/explainSub2TextView" | ||
| 329 | + android:backgroundTint="#1E90FF" | ||
| 330 | + android:gravity="center" | ||
| 331 | + android:text=" ? " | ||
| 332 | + android:textSize="8sp" /> | ||
| 333 | + </RelativeLayout> | ||
| 334 | + </LinearLayout> | ||
| 335 | + | ||
| 336 | + <LinearLayout | ||
| 337 | + android:layout_width="match_parent" | ||
| 338 | + android:layout_height="wrap_content" | ||
| 339 | + android:orientation="vertical"> | ||
| 340 | + | ||
| 341 | + <LinearLayout | ||
| 342 | + android:layout_width="wrap_content" | ||
| 343 | + android:layout_height="wrap_content" | ||
| 344 | + android:layout_gravity="center" | ||
| 345 | + android:gravity="center" | ||
| 346 | + android:orientation="vertical"> | ||
| 347 | + | ||
| 348 | + <LinearLayout | ||
| 349 | + android:layout_width="match_parent" | ||
| 350 | + android:layout_height="match_parent" | ||
| 351 | + android:orientation="horizontal"> | ||
| 352 | + | ||
| 353 | + <ToggleButton | ||
| 354 | + android:id="@+id/entireButton" | ||
| 355 | + android:layout_width="300dp" | ||
| 356 | + android:layout_height="wrap_content" | ||
| 357 | + android:layout_weight="1" | ||
| 358 | + android:background="@drawable/profil_selector" | ||
| 359 | + android:text="퇴직자" | ||
| 360 | + android:textOff="퇴직자" | ||
| 361 | + android:textOn="퇴직자" /> | ||
| 362 | + | ||
| 363 | + </LinearLayout> | ||
| 364 | + | ||
| 365 | + <LinearLayout | ||
| 366 | + android:layout_width="match_parent" | ||
| 367 | + android:layout_height="match_parent" | ||
| 368 | + android:orientation="horizontal"> | ||
| 369 | + | ||
| 370 | + <ToggleButton | ||
| 371 | + android:id="@+id/startupButton" | ||
| 372 | + android:layout_width="300dp" | ||
| 373 | + android:layout_height="wrap_content" | ||
| 374 | + android:layout_weight="1" | ||
| 375 | + android:background="@drawable/profil_selector" | ||
| 376 | + android:text="창업예정자" | ||
| 377 | + android:textOff="창업예정자" | ||
| 378 | + android:textOn="창업예정자" /> | ||
| 379 | + </LinearLayout> | ||
| 380 | + | ||
| 381 | + <LinearLayout | ||
| 382 | + android:layout_width="match_parent" | ||
| 383 | + android:layout_height="match_parent" | ||
| 384 | + android:orientation="horizontal"> | ||
| 385 | + | ||
| 386 | + <ToggleButton | ||
| 387 | + android:id="@+id/seekButton" | ||
| 388 | + android:layout_width="300dp" | ||
| 389 | + android:layout_height="wrap_content" | ||
| 390 | + android:layout_weight="1" | ||
| 391 | + android:background="@drawable/profil_selector" | ||
| 392 | + android:text="취준생/구직자" | ||
| 393 | + android:textOff="취준생/구직자" | ||
| 394 | + android:textOn="취준생/구직자" /> | ||
| 395 | + </LinearLayout> | ||
| 396 | + | ||
| 397 | + | ||
| 398 | + </LinearLayout> | ||
| 399 | + </LinearLayout> | ||
| 400 | + | ||
| 401 | + </LinearLayout> | ||
| 402 | + | ||
| 403 | + <LinearLayout | ||
| 404 | + android:layout_width="match_parent" | ||
| 405 | + android:layout_height="wrap_content" | ||
| 406 | + android:orientation="horizontal"> | ||
| 407 | + | ||
| 408 | + <Button | ||
| 409 | + android:id="@+id/previousButton" | ||
| 410 | + android:layout_width="10dp" | ||
| 411 | + android:layout_height="wrap_content" | ||
| 412 | + android:layout_weight="1" | ||
| 413 | + android:text="이전 단계로" /> | ||
| 414 | + | ||
| 415 | + <Button | ||
| 416 | + android:id="@+id/nextButton" | ||
| 417 | + android:layout_width="10dp" | ||
| 418 | + android:layout_height="wrap_content" | ||
| 419 | + android:layout_weight="1" | ||
| 420 | + android:text="다음 단계로" /> | ||
| 421 | + </LinearLayout> | ||
| 422 | + </LinearLayout> | ||
| 423 | + </LinearLayout> | ||
| 424 | +</androidx.constraintlayout.widget.ConstraintLayout> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| 1 | +<?xml version="1.0" encoding="utf-8"?> | ||
| 2 | +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
| 3 | + android:layout_width="wrap_content" | ||
| 4 | + android:layout_height="wrap_content" | ||
| 5 | + android:layout_gravity="center" | ||
| 6 | + android:gravity="center" | ||
| 7 | + android:orientation="vertical"> | ||
| 8 | + | ||
| 9 | + <TextView | ||
| 10 | + android:id="@+id/dialogTitle" | ||
| 11 | + android:layout_width="match_parent" | ||
| 12 | + android:layout_height="wrap_content" | ||
| 13 | + android:layout_gravity="center" | ||
| 14 | + android:layout_marginLeft="16dp" | ||
| 15 | + android:layout_marginTop="24dp" | ||
| 16 | + android:layout_marginRight="16dp" | ||
| 17 | + android:layout_marginBottom="16dp" | ||
| 18 | + android:gravity="center" | ||
| 19 | + android:text="다이얼로그 예제" | ||
| 20 | + android:textAlignment="center" | ||
| 21 | + android:textSize="18sp" | ||
| 22 | + android:textStyle="bold" /> | ||
| 23 | + | ||
| 24 | + <TextView | ||
| 25 | + android:id="@+id/dialogContent" | ||
| 26 | + android:layout_width="match_parent" | ||
| 27 | + android:layout_height="wrap_content" | ||
| 28 | + android:layout_gravity="center" | ||
| 29 | + android:gravity="center" | ||
| 30 | + android:text="다이얼로그 내용" /> | ||
| 31 | + | ||
| 32 | +</LinearLayout> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
| ... | @@ -42,6 +42,7 @@ | ... | @@ -42,6 +42,7 @@ |
| 42 | android:layout_height="30dp" | 42 | android:layout_height="30dp" |
| 43 | android:layout_weight="0" | 43 | android:layout_weight="0" |
| 44 | android:background="@drawable/toggle_selector" | 44 | android:background="@drawable/toggle_selector" |
| 45 | + android:checked="false" | ||
| 45 | android:textOff="" | 46 | android:textOff="" |
| 46 | android:textOn="" /> | 47 | android:textOn="" /> |
| 47 | </LinearLayout> | 48 | </LinearLayout> | ... | ... |
| ... | @@ -3,4 +3,8 @@ | ... | @@ -3,4 +3,8 @@ |
| 3 | <color name="colorPrimary">#008577</color> | 3 | <color name="colorPrimary">#008577</color> |
| 4 | <color name="colorPrimaryDark">#00574B</color> | 4 | <color name="colorPrimaryDark">#00574B</color> |
| 5 | <color name="colorAccent">#D81B60</color> | 5 | <color name="colorAccent">#D81B60</color> |
| 6 | + | ||
| 7 | + <drawable name="profil_selected">#1E90FF</drawable> | ||
| 8 | + <drawable name="profil_unselected">#FFFFFF</drawable> | ||
| 9 | + | ||
| 6 | </resources> | 10 | </resources> | ... | ... |
-
Please register or login to post a comment