blob: 52b7ca0e86dbafcdaef999725eee27753eaf68c6 [file] [log] [blame]
package test.pkg;
import android.app.Activity;
import android.os.Bundle;
public class SecondActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.second);
}
}