剛剛開始Android開發,找不到幫助通過谷歌,請原諒我,如果有人能找到我的答案。Android活動自動啓動 - 不需要
I'm working on this tutorial我接觸到了它的末端,通過小小的糾結工作,因爲它看起來教程沒有及時更新他們的IDE。應該有一個簡單的文本框,您可以在其中鍵入內容並點擊發送按鈕,然後啓動一個由新文本視圖組成的新活動並只顯示該消息。
當我在模擬器中編譯和運行應用程序時,它似乎自動啓動第二個活動並顯示默認的「Hello World!」。字符串,而不是提出我的文本框,併發送按鈕開始。在我嘗試包含第二個活動並使用intent功能之前,文本框和按鈕就在那裏,所以我認爲它在某種程度上只是在我有機會進行任何輸入之前自動啓動新活動。有人能告訴我爲什麼嗎?
我已經到了我複製/粘貼他們的代碼的地步,以確保我沒有任何錯別字或任何東西。我的activity_main.xml文件確實在嘗試啓動調用新活動的方法之前指定了「onClick」,所以我不確定是否在其他地方做錯了某些事情,或者這僅僅是由於教程中的差異。
在一個相關的說明,如果他們的教程是一個不太理想的方式,我開始學習Android的發展,我會喜歡的建議或點在正確的方向。提前致謝。
這裏是我的清單代碼:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.myfirstapp"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="21" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".DisplayMessageActivity"
android:label="@string/title_activity_display_message"
android:parentActivityName=".MainActivity" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.example.myfirstapp.MainActivity" />
</activity>
</application>
</manifest>
這裏的MainActivity.java文件: 包com.example.myfirstapp;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.EditText;
import android.widget.TextView;
public class MainActivity extends ActionBarActivity {
public final static String EXTRA_MESSAGE = "com.example.myfirstapp.MESSAGE";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_display_message);
}
@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.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
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文件: 包com.example.myfirstapp;
import android.support.v7.app.ActionBarActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.TextView;
public class DisplayMessageActivity extends ActionBarActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Get the message from the intent
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 onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.display_message, 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.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
從哪裏調用sendMessage()方法? – 2014-09-05 06:17:59
老實說,根據您的描述和代碼,我找不到任何問題。你能創建一個新項目並重做教程嗎?另外,在運行新項目之前關閉所有不相關的項目(除了'support-v7'之外的所有項目)。 – 2014-09-05 06:27:02
明天我就得做,今晚我已經沒時間了。工作和家庭只有這麼多時間才能做到這一點。但這是令人鼓舞的,我明天會重做並回復你。謝謝! – M4v 2014-09-05 06:33:09