반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Kotlin
- GIT
- c#
- Mac
- string
- matplotlib
- Tkinter
- list
- Redshift
- array
- Google Excel
- Excel
- 파이썬
- Apache
- django
- Google Spreadsheet
- Github
- hive
- PANDAS
- Java
- Python
- gas
- PySpark
- numpy
- google apps script
- SQL
- math
- PostgreSQL
- dataframe
Archives
- Today
- Total
달나라 노트
Android Studio - 주사위 굴리기 본문
728x90
반응형
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TextView
android:id="@+id/result_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="36sp"
tools:text="Dice result"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"/>
<Button
android:id="@+id/button_roll"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:backgroundTint="#676767"
android:text="Roll"
android:textColor="#8CB3FF"
app:layout_constraintTop_toBottomOf="@id/result_text"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"/>
</androidx.constraintlayout.widget.ConstraintLayout>
MainActivity.kt
package com.example.diceroller
import android.os.Bundle
import androidx.appcompat.app.AppCompatActivity
import com.example.diceroller.databinding.ActivityMainBinding
class MainActivity : AppCompatActivity() {
lateinit var binding: ActivityMainBinding
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
binding = ActivityMainBinding.inflate(layoutInflater)
setContentView(binding.root)
binding.buttonRoll.setOnClickListener() {
dice_roll(6)
}
}
fun dice_roll(dice_sides: Int) {
var dice_sides = dice_sides
var dice_result = (1..dice_sides).random()
binding.resultText.text = dice_result.toString()
}
}
위 코드는 주사위 굴리기 어플을 만드는 코드입니다.
결과는 아래 이미지와 같습니다.
728x90
반응형
'Android' 카테고리의 다른 글
Android Studio - getString() (strings.xml로부터 문자 받아오기) (0) | 2021.04.06 |
---|---|
Android Studio - setImageResource (Image View에 image 셋팅해주기) (0) | 2021.03.23 |
Android Studio - setOnClickListener (버튼 클릭 시 수행할 동작 지정하기) (0) | 2021.03.23 |
Android Studio - ViewBinding (0) | 2021.03.23 |
Android Studio - Button android:backgroundTint (버튼 색상 변경하기) & android:textColor (글자 색상 변경하기) (0) | 2021.03.22 |
Comments