Questions tagged [android-studio-2.0]

Android Studio is the official IDE for Android application development. In version 2.0 it is based on IntelliJ 14.

Android Studio is the official IDE for Android application development, based on IntelliJ IDEA. On top of the capabilities you expect from IntelliJ, Android Studio offers:

  • Flexible Gradle-based build system
  • Build variants and multiple apk file generation
  • Code templates to help you build common app features
  • Rich layout editor with support for drag and drop theme editing
  • lint tools to catch performance, usability, version compatibility, and other problems
  • ProGuard and app-signing capabilities
  • Built-in support for Google Cloud Platform, making it easy to integrate Google Cloud Messaging and App Engine
  • And much more

Reference: https://developer.android.com/tools/studio/index.html

In version 2.0 it is based on IntelliJ 14.

347 questions
-3
votes
1 answer

How do I save a textView

How do I save a textView so when I close and relaunch the activity the text is still there? protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_current_homework); …
party58965
  • 41
  • 1
  • 5
-4
votes
2 answers

How to link radio button to a new Activity in Android Studio

HI everyone i am new to android programming just want to open new activity by selecting one of the radio button and then clicking on the submit button, just want to know how to link new activity to radiobutton and how it will intent by clicking on…
1 2 3
23
24