Sha256: 0037e8c65da365ee46a5680d5f5fac48bb7e9fe6b6cab04bd2640bd7532064d2

Contents?: true

Size: 385 Bytes

Versions: 1

Compression:

Stored size: 385 Bytes

Contents

package com.android.hello;

import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;

public class HelloAndroid extends Activity {
   
   @Override
   public void onCreate(Bundle savedInstanceState) {
       super.onCreate(savedInstanceState);
       TextView tv = new TextView(this);
       tv.setText("Hello, Android");
       setContentView(tv);
   }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
remi-andrake-0.1.0 examples/android/HelloAndroid/src/com/android/hello/HelloAndroid.java