유파파를 Android 앱으로 구현

이 기사는 @NemesisJava에서 유파를 구현해보십시오.이라는 기사의 패러디입니다.
유파가 Android 앱으로 구현되었습니다.



필요한 기능



· 명령 프롬프트 스타일
· 이름이 비어 있으면 앱이 떨어집니다.

레이아웃



텍스트 표시(TextView)와 텍스트 입력(EditText)으로 구성되어 있습니다.

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"
    android:background="@color/black"
    tools:context=".MainActivity">

    <TextView
        android:id="@+id/text1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="@color/white"
        android:textSize="14sp"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <EditText
        android:id="@+id/name"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:background="#00000000"
        android:importantForAutofill="no"
        android:inputType="text"
        android:textColor="@color/white"
        android:textSize="14sp"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@id/text1"
        tools:ignore="LabelFor" />

    <TextView
        android:id="@+id/text2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="@color/white"
        android:textSize="14sp"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@id/name" />

    <TextView
        android:id="@+id/text3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="@color/white"
        android:textSize="14sp"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@id/text2" />

</androidx.constraintlayout.widget.ConstraintLayout>

내부 처리 부분



언어는 Kotlin을 사용합니다.
대략적으로 해설하면, 최초의 텍스트를 표시해, 이름 입력 부분으로 입력이 끝나면 newName 작성+그 후의 텍스트 표시를 하고 있습니다.

MainActivity.kt

class MainActivity : AppCompatActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)

        text1.text = "契約書だよ。そこに名前を書きな。"
        name.requestFocus()
        name.setOnKeyListener { _, i, keyEvent ->
            if (keyEvent.action == ACTION_DOWN && i == KEYCODE_ENTER) {
                text2.text = "フン。${name.text}というのかい。贅沢な名だねぇ。"
                val newName = name.text[Random.nextInt(name.text.length)].toString()
                text3.text = "今からお前の名前は${newName}だ。いいかい、${newName}だよ。分かったら返事をするんだ、${newName}!!"
                true
            } else {
                false
            }
        }
    }
}

좋은 웹페이지 즐겨찾기