skip to Main Content

Android Studio – How to save number from EditView in another integer in kotlin

I'm pretty new to android so I will try to explain this the best way I can, so I have a EditView in an activity I created like this: <EditText android:id="@+id/num" android:layout_width="230dp" android:layout_height="61dp" android:inputType="number" android:background="@drawable/border" android:layout_marginTop="25dp" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintHorizontal_bias="0.502" app:layout_constraintStart_toStartOf="parent"…

VIEW QUESTION

Android Studio – Error creating a new project on Android Studio (Bumblebee 2021.1.1 Patch 2)

when I try to create a new project on Android Studio (Bumblebee 2021.1.1 Patch 2), I get this error: Here is my gradle-wrapper.properties: distributionBase=GRADLE_USER_HOME distributionUrl=https://services.gradle.org/distributions/gradle-7.2-bin.zip distributionPath=wrapper/dists zipStorePath=wrapper/dists zipStoreBase=GRADLE_USER_HOME and my settings.gradle : pluginManagement { repositories { gradlePluginPortal() google() mavenCentral() }…

VIEW QUESTION
Back To Top
Search