adding open/save project and changing layout
This commit is contained in:
@@ -1,21 +0,0 @@
|
||||
package com.omigamedev;
|
||||
|
||||
import android.test.ActivityInstrumentationTestCase2;
|
||||
|
||||
/**
|
||||
* This is a simple framework for a test of an Application. See
|
||||
* {@link android.test.ApplicationTestCase ApplicationTestCase} for more information on
|
||||
* how to write and extend Application tests.
|
||||
* <p/>
|
||||
* To run this test, you can type:
|
||||
* adb shell am instrument -w \
|
||||
* -e class com.omigamedev.DummyActivityTest \
|
||||
* com.omigamedev.tests/android.test.InstrumentationTestRunner
|
||||
*/
|
||||
public class DummyActivityTest extends ActivityInstrumentationTestCase2<DummyActivity> {
|
||||
|
||||
public DummyActivityTest() {
|
||||
super("com.omigamedev", DummyActivity.class);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -320,6 +320,7 @@ static int engine_init_display(struct engine* engine) {
|
||||
|
||||
LOG("All ready");
|
||||
engine->animating = 1;
|
||||
ANativeActivity_showSoftInput(engine->app->activity, ANATIVEACTIVITY_SHOW_SOFT_INPUT_FORCED);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -1,15 +0,0 @@
|
||||
package com.omigamedev;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.os.Bundle;
|
||||
|
||||
public class DummyActivity extends Activity
|
||||
{
|
||||
/** Called when the activity is first created. */
|
||||
@Override
|
||||
public void onCreate(Bundle savedInstanceState)
|
||||
{
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.main);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user