Cannot lower case button text in android studio

I have a trivial question that has been bothering me for a while. I tried to google this but no one seems to have the same problem as me or doesn’t see it as an issue. When I make a button in activity_my.xml under layout <Button android:layout_width=”wrap_content” android:layout_height=”wrap_content” android:text=”@string/button_1_name” android:id=”@+id/button2″ android:layout_marginTop=”140dp” android:layout_below=”@+id/textView” android:layout_centerHorizontal=”true” /> I … Read more

Error: Unable to run mksdcard SDK tool

Keep getting an error in the set-up wizard while trying to install android studio on Ubuntu. “Unable to run mksdcard SDK tool.” Also, in the terminal I get this: [ 115528] ERROR – tRunWizard$SetupProgressStep$1 – Android Studio 1.1.0 Build #AI-135.1740770 [ 115531] ERROR – tRunWizard$SetupProgressStep$1 – JDK: 1.8.0_40 [ 115531] ERROR – tRunWizard$SetupProgressStep$1 – VM: … Read more

No tests found for given includes Error, when running Parameterized Unit test in Android Studio

I have tried to run Parameterized Unit Tests in Android Studio, as shown below: import android.test.suitebuilder.annotation.SmallTest; import junit.framework.TestCase; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.JUnit4; import org.junit.runners.Parameterized; import org.junit.runners.Parameterized.Parameter; import org.junit.runners.Parameterized.Parameters; import java.util.Arrays; import java.util.Collection; @RunWith(Parameterized.class) @SmallTest public class FibonacciTest extends TestCase { @Parameters public static Collection<Object[]> data() { return Arrays.asList(new Object[][] { {0, 0}, {1, … Read more

Android Studio suddenly cannot resolve symbols

Android Studio 0.4.2 was working fine and today I opened it and almost everything was red and the auto-completion had stopped working. I look at the imports and AS seems to be telling me it can’t find android.support.v4 all of a sudden (offering me the option to remove the unused imports). (android.support.v7 seems to be … Read more

Flutter plugin not installed error; When running ‘flutter doctor’

I am configuring the Flutter SDK on my Linux Ubuntu 16.04 (Xenial Xerus) system. Why am I getting the following error when I run the flutter doctor? I have specified both PATHS for flutter and dart in the .bashrc file, but I get this error when I run flutter doctor: Doctor summary (to see all details, … Read more