From 3f50c8554004e69d97cc89dbbc8261edef2f162e Mon Sep 17 00:00:00 2001 From: Kimsangwon Date: Sat, 15 Jun 2024 16:49:34 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20android=20ai=20=EC=B6=94=EC=B2=9C=20?= =?UTF-8?q?=EC=9D=B4=EB=AF=B8=EC=A7=80=2010=EA=B0=9C=EB=A1=9C=20=EB=8A=98?= =?UTF-8?q?=EB=A6=AC=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/example/sharenote/ImageSelect.kt | 8 ++- .../main/res/layout/activity_image_select.xml | 51 ++++++++++++++++++- 2 files changed, 56 insertions(+), 3 deletions(-) diff --git a/android/app/src/main/java/com/example/sharenote/ImageSelect.kt b/android/app/src/main/java/com/example/sharenote/ImageSelect.kt index 67ac9bab..2a50e6b1 100644 --- a/android/app/src/main/java/com/example/sharenote/ImageSelect.kt +++ b/android/app/src/main/java/com/example/sharenote/ImageSelect.kt @@ -1,5 +1,6 @@ package com.example.sharenote +import android.annotation.SuppressLint import android.app.Activity import android.content.Intent import android.net.Uri @@ -17,6 +18,7 @@ class ImageSelect : AppCompatActivity() { // 클래스 멤버 변수로 선언 private lateinit var imageViews: List private lateinit var completeButton: Button + @SuppressLint("MissingInflatedId") override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_image_select) @@ -32,7 +34,11 @@ class ImageSelect : AppCompatActivity() { findViewById(R.id.imageView3), findViewById(R.id.imageView4), findViewById(R.id.imageView5), - findViewById(R.id.imageView6) + findViewById(R.id.imageView6), + findViewById(R.id.imageView7), + findViewById(R.id.imageView8), + findViewById(R.id.imageView9), + findViewById(R.id.imageView10) ) diff --git a/android/app/src/main/res/layout/activity_image_select.xml b/android/app/src/main/res/layout/activity_image_select.xml index 5e18961f..a15f8cdc 100644 --- a/android/app/src/main/res/layout/activity_image_select.xml +++ b/android/app/src/main/res/layout/activity_image_select.xml @@ -12,7 +12,7 @@ android:layout_height="0dp" android:layout_weight="1" android:columnCount="2" - android:rowCount="3" + android:rowCount="5" android:padding="4dp"> + + + + @@ -96,5 +144,4 @@ android:layout_height="wrap_content" android:text="선택 완료" android:layout_margin="8dp"/> -