
Put your answer into Piazza.
What is “detached mode” in Eclipse?
What does the author least like about Eclipse?
GridBagLayout)RelativeLayoutandroid:layout_below, android:layout_toRightOfTextView strings declaratively.android:text="Fred" or with android:text="@string/main_character_name"android:id="@+id/questionText"R.id.questionText in Java code
TextView t = (TextView) findViewById(R.id.questionText);
t.setText("How old is Fred?");
build.xml with
android update project --target android-8 --path .(Need
~/adt-bundle-linux-x86-20130522/sdk/tools/ on the PATH)
android avd &
ant debug install adb shell am start -n packageName/.MainActivity(Need
~/apache-ant-1.9.2/bin on the PATH)

Goal: Android application that displays a quiz question, like this:

lab02 in the package edu.sjsu.cs175.lab02. Remember to put the project into ~/cs175/lab02, not inside the workspace.javac -version on the command line. What do you get?~/apache-ant-1.9.2/bin and ~/adt-bundle-linux-x86-20130522/sdk/tools/ to your PATH. At the end of your .bashrc, add
PATH=~/apache-ant-1.9.2/bin:~/adt-bundle-linux-x86-20130522/sdk/tools:$PATHClose the terminal window.
ant. What happens?android avd &. What happens?cd cs175/lab02 android update project --target android-8 --path . ant debug installWhat happens?
adb shell am start -n edu.sjsu.cs175.lec02/.MainActivity. What happens?