auto import from //depot/cupcake/@135843

This commit is contained in:
The Android Open Source Project
2009-03-03 18:28:16 -08:00
parent d2f2b1d7b7
commit d4aee0c0ca
2356 changed files with 0 additions and 295812 deletions

View File

@@ -1,10 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="PACKAGE"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="APPLICATION_NAME">
ACTIVITIES
</application>
USES-SDK
</manifest>

View File

@@ -1,7 +0,0 @@
<activity android:name=".ACTIVITY_NAME"
android:label="APPLICATION_NAME">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
INTENT_FILTERS
</intent-filter>
</activity>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

View File

@@ -1,13 +0,0 @@
package PACKAGE;
import android.app.Activity;
import android.os.Bundle;
public class ACTIVITY_NAME extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}

View File

@@ -1 +0,0 @@
<category android:name="android.intent.category.LAUNCHER" />

View File

@@ -1,13 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
</LinearLayout>

View File

@@ -1 +0,0 @@
<category android:name="android.intent.category.PREFERENCE" />

View File

@@ -1 +0,0 @@
<string name="STRING_NAME">STRING_CONTENT</string>

View File

@@ -1,5 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
STRINGS
</resources>

View File

@@ -1 +0,0 @@
<uses-sdk android:minSdkVersion="MIN_SDK_VERSION" />