mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 05:37:11 +00:00
15 lines
393 B
Java
15 lines
393 B
Java
package org.mozilla.goannaviewexample;
|
|
|
|
import android.app.Activity;
|
|
import android.os.Bundle;
|
|
import android.util.AttributeSet;
|
|
|
|
public class GoannaViewExample extends Activity {
|
|
/** Called when the activity is first created. */
|
|
@Override
|
|
public void onCreate(Bundle savedInstanceState) {
|
|
super.onCreate(savedInstanceState);
|
|
setContentView(R.layout.main);
|
|
}
|
|
}
|