-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
signup, group registerにおいてアイコンをギャラリーから選択できるようにし、アイコンが円形になるように表示させた #136
base: develop
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
コード確認しました!
動作は問題ありませんでしたが,現在推奨されていないコードの処理が見られたので
そこの修正をお願いします!
android:id="@+id/imageAccount" | ||
android:layout_width="0dp" | ||
<androidx.cardview.widget.CardView | ||
android:id="@+id/icon" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
iconだと他のViewとの差別化をわかりやすくするためにユニークな命名にしましょう!
android:src="@drawable/img_account" | ||
|
||
<androidx.cardview.widget.CardView | ||
android:id="@+id/icon" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
「fragment_signup.xml」と同じようにiconだと他のViewとの差別化をわかりやすくするためにユニークな命名にしましょう!
private fun openGallary() { | ||
val intent = Intent(Intent.ACTION_PICK) | ||
intent.type = "image/*" | ||
startActivityForResult(intent, REQUEST_GALLARY_TAKE) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
startActivityForResult()は現在推奨されていない処理なので,
以下の記事を参考にして修正してみてください.
1. startActivityForResultがDeprecatedになった対応方法
2. アクティビティの結果を取得する
対応するissue
概要
意図する動作内容(または変更点)
-↑の画面で表示される画像はスケールが調整され、円形に表示される
スクリーンショット(UI作成,変更時)
その他