diff options
author | Xavier Ducrohet <xav@android.com> | 2012-03-02 13:57:08 -0800 |
---|---|---|
committer | Xavier Ducrohet <xav@android.com> | 2012-03-02 14:19:12 -0800 |
commit | 35803ee3b4362248489db1dd1fc6d483f3c3ee65 (patch) | |
tree | bd26c3f561390247b9af0eac7b26ff3c947d5502 /testapps/javaProjectTest/app/src/com/android/tests/basicProjectWithJava/Main.java | |
parent | 81c5fb5448a6342cb3bb29ea501fccf95573288c (diff) | |
download | sdk-35803ee3b4362248489db1dd1fc6d483f3c3ee65.zip sdk-35803ee3b4362248489db1dd1fc6d483f3c3ee65.tar.gz sdk-35803ee3b4362248489db1dd1fc6d483f3c3ee65.tar.bz2 |
More fixes to the test projects.
- add eclipse files for a bunch of them
- package name refactoring to match the folder structure somehow (more
need this)
- updated the javaproject to have an extra java project and to have
code that access java resources to test packaging too.
Change-Id: Ie13842c1b891e495e04d8a157a12cac9db13f30e
Diffstat (limited to 'testapps/javaProjectTest/app/src/com/android/tests/basicProjectWithJava/Main.java')
-rw-r--r-- | testapps/javaProjectTest/app/src/com/android/tests/basicProjectWithJava/Main.java | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/testapps/javaProjectTest/app/src/com/android/tests/basicProjectWithJava/Main.java b/testapps/javaProjectTest/app/src/com/android/tests/basicProjectWithJava/Main.java deleted file mode 100644 index eb6be25..0000000 --- a/testapps/javaProjectTest/app/src/com/android/tests/basicProjectWithJava/Main.java +++ /dev/null @@ -1,22 +0,0 @@ -package com.android.tests.basicProjectWithJava; - -import com.android.tests.basicJavaProject.Foo; - -import android.app.Activity; -import android.os.Bundle; -import android.widget.TextView; - -public class Main extends Activity { - /** Called when the activity is first created. */ - @Override - public void onCreate(Bundle savedInstanceState) { - super.onCreate(savedInstanceState); - setContentView(R.layout.main); - - Foo foo = new Foo(); - - TextView tv = (TextView) findViewById(R.id.text); - tv.setText("basicProjectWithJava\nvalue from java project:" + foo.getRandomFoo()); - } - -}
\ No newline at end of file |