intent-tutorial#10
Open
fhfhfhfhgpdl wants to merge 8 commits intonutyworks:startfrom
implude:revert-1-start
Open
intent-tutorial#10fhfhfhfhgpdl wants to merge 8 commits intonutyworks:startfrom implude:revert-1-start
fhfhfhfhgpdl wants to merge 8 commits intonutyworks:startfrom
implude:revert-1-start
Conversation
nutyworks
reviewed
Jun 15, 2021
| super.onCreate(savedInstanceState) | ||
| setContentView(R.layout.activity_main) | ||
|
|
||
| val btn_open=findViewById<Button>(R.id.btn_open) |
Owner
There was a problem hiding this comment.
Kotlin에서 필드 이름은 camel case로 작성하는 것을 추천합니다. 따라서 btn_open보다는 btnOpen이 더 좋은 이름입니다. 더 자세한 내용은 여기를 참조하세요. 👍
Comment on lines
+9
to
+18
| <TextView | ||
| android:layout_width="wrap_content" | ||
| android:layout_height="wrap_content" | ||
| android:text="AnotherActivity" | ||
| app:layout_constraintBottom_toBottomOf="parent" | ||
| app:layout_constraintLeft_toLeftOf="parent" | ||
| app:layout_constraintRight_toRightOf="parent" | ||
| app:layout_constraintTop_toTopOf="parent" | ||
| android:textSize="50dp" | ||
| ></TextView> |
Owner
There was a problem hiding this comment.
XML 태그에 child가 없으면 바로 닫는 것을 추천합니다.
e. g.
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="AnotherActivity" />
nutyworks
approved these changes
Jun 15, 2021
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.