Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. COthanx dude. for ur answer to second question. about 1st question: as I've mentioned:- I have done all the settings as mentioned on the developers blog. The program on execution has generated the xml file also. But on the simulator screen i am getting nothing but android written which after some times turn to a mobile screen. [Thats what simulators feature is]. Do i have to do anything else to see the simple text output. Like seting the layout.. My code is:--
      singulars
    2. COMy code is:-- import android.app.Activity; import android.os.Bundle; import android.widget.TextView; public class Hello extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); TextView tv = new TextView(this); tv.setText("I am Mew"); setContentView(tv); } } is there anything else to be written here???
      singulars
    3. COYour code is perfectly OK, emulator should display the content of your TextView. But you can check two things: 1. Check your AndroidManifest.xml - it should contain your activity (sth like: <activity android:name=".Hello" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity>) 2. In eclipse, check your "Console" for error messages while installing your application on emulator.
      singulars
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload