私は Android アプリケーションのプログラミングのコツを学び始めようとしているので、Android 開発者のチュートリアルに従っています。現在、「別のアクティビティを開始する」セクションに取り組んでおり、アプリ名を除いて、サンプルに正確に従っています。ボタンがクリックされたときに呼び出される 2 番目のアクティビティのクラス コードを追加すると、次のエラーが表示されます: Missing package statement: 'com.VRCoreSoftware.testapp4'
関連するすべてのコード (私が知る限り) を以下に示します。
Main Activity.java: ここに表示される唯一のエラーは、それが DisplayMessageActivity.class を認識しないことです。
package com.VRCoreSoftware.testapp4;
import android.support.v7.app.ActionBarActivity;
import android.support.v7.app.ActionBar;
import android.support.v4.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.os.Build;
// import android.view.View;
import android.content.Intent;
import android.widget.EditText;
public class MainActivity extends ActionBarActivity {
public final static String EXTRA_MESSAGE = "com.VRCoreSoftware.testapp4.MESSAGE";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
if (savedInstanceState == null) {
getSupportFragmentManager().beginTransaction()
.add(R.id.container, new PlaceholderFragment())
.commit();
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
switch (item.getItemId()) {
case R.id.action_settings:
return true;
}
return super.onOptionsItemSelected(item);
}
/**
* A placeholder fragment containing a simple view.
*/
public static class PlaceholderFragment extends Fragment {
public PlaceholderFragment() {
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_main, container, false);
return rootView;
}
}
public void sendMessage(View view) {
// Do something in response to button
Intent intent = new Intent(this, DisplayMessageActivity.class);
EditText editText = (EditText) findViewById(R.id.edit_message);
String message = editText.getText().toString();
intent.putExtra(EXTRA_MESSAGE, message);
startActivity(intent);
}
}
DisplayMessageActivity.java 多くのエラーがあり、ソース (私が想定している) は明らかに失敗したインポートです。
import com.VRCoreSoftware.testapp4.MainActivity;
public class DisplayMessageActivity extends MainActivity {
@SuppressLint("NewApi")
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_display_message);
// Make sure we're running on Honeycomb or higher to use ActionBar APIs
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
// Show the Up button in the action bar.
getActionBar().setDisplayHomeAsUpEnabled(true);
}
Intent intent = getIntent();
String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);
// Create the text view
TextView textView = new TextView(this);
textView.setTextSize(40);
textView.setText(message);
// Set the text view as the activity layout
setContentView(textView);
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case android.R.id.home:
NavUtils.navigateUpFromSameTask(this);
return true;
}
return super.onOptionsItemSelected(item);
}
}
AndroidManifest.xml ファイルから: ここでの唯一のエラーは、行の 'DisplayMessageActivity' が認識されないことです: android:name="com.VRCoreSoftware.testapp4.DisplayMessageActivity"
<activity
android:name="com.VRCoreSoftware.testapp4.DisplayMessageActivity"
android:label="@string/title_activity_display_message"
android:parentActivityName="com.VRCoreSoftware.testapp4.MainActivity" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.VRCoreSoftware.testapp4.MainActivity" />
</activity>
現在、Android Studio を使用してこのコードを作成およびコンパイルしています。この件に関するあらゆるご支援をいただければ幸いです。どうもありがとうございました。