9 개의 활동이 의도와 연결된 안드로이드 애플리케이션 (젤리)을 개발 중입니다. 맨 위에있는 막대를 클릭하면 응용 프로그램이 중단됩니다 (이전 활동으로 이동하게됩니다). 그 막대가 무엇인지 불리지는 않지만 현재 활동의 이름을 보여줍니다. 하드웨어 "뒤로"버튼을 클릭해도 충돌이 발생하지 않지만 그 막대를 클릭하면 "앱이 중지되었습니다"라고 표시됩니다. 내가 이야기하고있는 바 보여주기 위해 에뮬레이터의 스크린 샷을 추가 해요 : 여기액션 바/제목 표시 줄을 클릭하면 Android 앱이 충돌합니다.
내 주요 활동 코드와 프로필 활동 코드 :
주요 활동 :
package com.ecotravel.eco_travel;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.content.Intent;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
EditText usernamefield= (EditText) findViewById(R.id.usernamefield);
EditText passwordfield = (EditText) findViewById(R.id.passwordfield);
}
@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;
}
/** Called when the user clicks the Log In button */
public void loginFunc(View view) {
Intent intent = new Intent(this, ProfileActivity.class);
startActivity(intent);
EditText usernamefield= (EditText) findViewById(R.id.usernamefield);
EditText passwordfield = (EditText) findViewById(R.id.passwordfield);
}
/** Called when the user clicks the Register button */
public void registerFunc(View view) {
Intent intent = new Intent(this, RegisterActivity.class);
startActivity(intent);
}
}
은 프로필 활동 (스크린 샷에있는 활동) :
package com.ecotravel.eco_travel;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.support.v4.app.NavUtils;
import android.annotation.TargetApi;
import android.content.Intent;
import android.os.Build;
public class ProfileActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_profile);
// Show the Up button in the action bar.
setupActionBar();
}
/**
* Set up the {@link android.app.ActionBar}, if the API is available.
*/
@TargetApi(Build.VERSION_CODES.HONEYCOMB)
private void setupActionBar() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
getActionBar().setDisplayHomeAsUpEnabled(true);
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.profile, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case android.R.id.home:
// This ID represents the Home or Up button. In the case of this
// activity, the Up button is shown. Use NavUtils to allow users
// to navigate up one level in the application structure. For
// more details, see the Navigation pattern on Android Design:
//
// http://developer.android.com/design/patterns/navigation.html#up-vs-back
//
NavUtils.navigateUpFromSameTask(this);
return true;
}
return super.onOptionsItemSelected(item);
}
/** Called when the user clicks the Search button */
public void searchFunc(View view) {
Intent intent = new Intent(this, SearchActivity.class);
startActivity(intent);
}
/** Called when the user clicks the Wishlist button */
public void wishFunc(View view) {
Intent intent = new Intent(this, WishlistActivity.class);
startActivity(intent);
}
}
누군가가 그 이유를 설명해 주실 수 있습니까? 내 활동에서이 막대를 제거하지 않으면 어떻게됩니까?
편집 : 로그 캣은 다음과 같습니다 :
06-08 17:50:12.140: E/AndroidRuntime(3235): FATAL EXCEPTION: main
06-08 17:50:12.140: E/AndroidRuntime(3235): java.lang.NoClassDefFoundError: android.support.v4.app.NavUtils
06-08 17:50:12.140: E/AndroidRuntime(3235): at com.ecotravel.eco_travel.ProfileActivity.onOptionsItemSelected(ProfileActivity.java:51)
06-08 17:50:12.140: E/AndroidRuntime(3235): at android.app.Activity.onMenuItemSelected(Activity.java:2548)
06-08 17:50:12.140: E/AndroidRuntime(3235): at com.android.internal.widget.ActionBarView$3.onClick(ActionBarView.java:167)
06-08 17:50:12.140: E/AndroidRuntime(3235): at android.view.View.performClick(View.java:4204)
06-08 17:50:12.140: E/AndroidRuntime(3235): at android.view.View$PerformClick.run(View.java:17355)
06-08 17:50:12.140: E/AndroidRuntime(3235): at android.os.Handler.handleCallback(Handler.java:725)
06-08 17:50:12.140: E/AndroidRuntime(3235): at android.os.Handler.dispatchMessage(Handler.java:92)
06-08 17:50:12.140: E/AndroidRuntime(3235): at android.os.Looper.loop(Looper.java:137)
06-08 17:50:12.140: E/AndroidRuntime(3235): at android.app.ActivityThread.main(ActivityThread.java:5041)
06-08 17:50:12.140: E/AndroidRuntime(3235): at java.lang.reflect.Method.invokeNative(Native Method)
06-08 17:50:12.140: E/AndroidRuntime(3235): at java.lang.reflect.Method.invoke(Method.java:511)
06-08 17:50:12.140: E/AndroidRuntime(3235): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)
06-08 17:50:12.140: E/AndroidRuntime(3235): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560)
06-08 17:50:12.140: E/AndroidRuntime(3235): at dalvik.system.NativeStart.main(Native Method)
logcat – Blackbelt
@blackbelt 게시 logcat을 하단에 추가했습니다. – ManahManah
java 빌드 경로에서 Android 개인 라이브러리를 확인 했습니까 – Blackbelt