我是使用Android Studio學習Android的新手。雖然我遵循Google提供的官方教程Getting Started,但我遇到了一個問題:當我嘗試創建新的空白活動時,DisplayMessageActivity()
中的默認代碼與示例不同。具體來說,只有功能onCreate()
,但沒有OptionsItemSelected()
和class PlaceholderFragment
那裏。使用Android Studio創建新的空白活動
我試着下面的代碼清單從Getting Started複製,
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Get the message from the intent
Intent intent = getIntent();
String message = intent.getStringExtra(MyActivity.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);
}
但我仍然不能得到第二個活動的相同活動(佈局):DisplayMessageActivity
。 只有文本但沒有頂欄(包括應用程序名稱,返回按鈕等)。
M.-J.邱
的教程通常過時的是相對於Android的工作室目前的出貨版本。 – CommonsWare
嘗試此鏈接:[教程點](http://www.tutorialspoint.com/android/android_hello_world_example.htm) –
@BurhanuddinRashid:謝謝,我會試試看。 –