2014-07-11 4 views
1

내 응용 프로그램에 다국어 지원을 구현하려고합니다. 지금까지 내가 한 모든 것은 'values'폴더를 복사하여 'values-ru'로 붙여 넣어 러시아어를 지원하는 것입니다. 나는 문자열 값을 변경하지 않았고 그대로 그대로 두었다. 그런 다음 에뮬레이터를 러시아어로 전환하고 앱을 설치했습니다. 하지만 일단 실행하면 오류가 발생하고 LogCat에서 다음과 같은 오류 메시지가 나타납니다.다국어 지원을 구현하려고 할 때 응용 프로그램이 중단됩니다.

07-11 17:39:45.054: E/AndroidRuntime(19336): FATAL EXCEPTION: main 
07-11 17:39:45.054: E/AndroidRuntime(19336): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.mycompany.myapp/com.mycompany.myapp.fragments.Fragment_Main}: java.lang.NullPointerException 
07-11 17:39:45.054: E/AndroidRuntime(19336): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1956) 
07-11 17:39:45.054: E/AndroidRuntime(19336): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1981) 
07-11 17:39:45.054: E/AndroidRuntime(19336): at android.app.ActivityThread.access$600(ActivityThread.java:123) 
07-11 17:39:45.054: E/AndroidRuntime(19336): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1147) 
07-11 17:39:45.054: E/AndroidRuntime(19336): at android.os.Handler.dispatchMessage(Handler.java:99) 
07-11 17:39:45.054: E/AndroidRuntime(19336): at android.os.Looper.loop(Looper.java:137) 
07-11 17:39:45.054: E/AndroidRuntime(19336): at android.app.ActivityThread.main(ActivityThread.java:4424) 
07-11 17:39:45.054: E/AndroidRuntime(19336): at java.lang.reflect.Method.invokeNative(Native Method) 
07-11 17:39:45.054: E/AndroidRuntime(19336): at java.lang.reflect.Method.invoke(Method.java:511) 
07-11 17:39:45.054: E/AndroidRuntime(19336): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784) 
07-11 17:39:45.054: E/AndroidRuntime(19336): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551) 
07-11 17:39:45.054: E/AndroidRuntime(19336): at dalvik.system.NativeStart.main(Native Method) 
07-11 17:39:45.054: E/AndroidRuntime(19336): Caused by: java.lang.NullPointerException 
07-11 17:39:45.054: E/AndroidRuntime(19336): at com.mycompany.myapp.fragments.Fragment_Main.onCreate(Fragment_Main.java:101) 
07-11 17:39:45.054: E/AndroidRuntime(19336): at android.app.Activity.performCreate(Activity.java:4465) 
07-11 17:39:45.054: E/AndroidRuntime(19336): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1049) 
07-11 17:39:45.054: E/AndroidRuntime(19336): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1920) 
07-11 17:39:45.054: E/AndroidRuntime(19336): ... 11 more 

왜 그런가요? 어떻게 수정해야합니까?

편집

이 내 Fragment_Main에 대한 코드입니다

package com.mycompany.myapp.fragments; 

import java.util.Locale; 

import android.app.ActionBar; 
import android.app.FragmentTransaction; 
import android.content.Intent; 
import android.content.SharedPreferences; 
import android.content.res.Resources; 
import android.graphics.Color; 
import android.graphics.Typeface; 
import android.os.Bundle; 
import android.support.v4.app.Fragment; 
import android.support.v4.app.FragmentActivity; 
import android.support.v4.app.FragmentManager; 
import android.support.v4.app.FragmentPagerAdapter; 
import android.support.v4.view.ViewPager; 
import android.view.Menu; 
import android.view.MenuInflater; 
import android.view.MenuItem; 
import android.widget.TextView; 

import com.mycompany.myapp.activities.Activity_Preferences; 
import com.mycompany.myapp.R; 

public class Fragment_Main extends FragmentActivity implements 
ActionBar.TabListener/*, Fragment_Picker_Time.OnTimeDialogListener*/ { 

/** 
* The {@link android.support.v4.view.PagerAdapter} that will provide 
* fragments for each of the sections. We use a 
* {@link android.support.v4.app.FragmentPagerAdapter} derivative, which 
* will keep every loaded fragment in memory. If this becomes too memory 
* intensive, it may be best to switch to a 
* {@link android.support.v4.app.FragmentStatePagerAdapter}. 
*/ 
SectionsPagerAdapter mSectionsPagerAdapter; 

/** 
* The {@link ViewPager} that will host the section contents. 
*/ 
ViewPager mViewPager; 
/*public int picked_hour; 
public int picked_minute;*/ 

public int tab_position; 
MenuItem action_button; 
Menu menu; 
SharedPreferences preferences; 

@Override 
protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.fragment_main); 

    getBaseContext(); 

    int actionBarTitleId = Resources.getSystem().getIdentifier("action_bar_title", "id", "android"); 
    if (actionBarTitleId > 0) { 
     TextView title = (TextView) findViewById(actionBarTitleId); 
     if (title != null) { 
      title.setTextColor(Color.parseColor("#4d4a47")); 
      title.setTypeface(Typeface.defaultFromStyle(Typeface.BOLD_ITALIC), Typeface.BOLD_ITALIC); 
     } 
    } 

    // Set up the action bar. 
    final ActionBar actionBar = getActionBar(); 

    //actionBar.setTitle("another title"); 
    //actionBar.setSubtitle("my scheduler"); 
    actionBar.setBackgroundDrawable(getResources().getDrawable(R.drawable.app_bg)); 
    actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS); 

    // Create the adapter that will return a fragment for each of the three 
    // primary sections of the app. 
    mSectionsPagerAdapter = new SectionsPagerAdapter(
      getSupportFragmentManager()); 

    // Set up the ViewPager with the sections adapter. 
    mViewPager = (ViewPager) findViewById(R.id.pager); 
    mViewPager.setAdapter(mSectionsPagerAdapter); 

    // When swiping between different sections, select the corresponding 
    // tab. We can also use ActionBar.Tab#select() to do this if we have 
    // a reference to the Tab. 
    mViewPager 
    .setOnPageChangeListener(new ViewPager.SimpleOnPageChangeListener() { 
     @Override 
     public void onPageSelected(int position) { 
      actionBar.setSelectedNavigationItem(position); 
     } 
    }); 

    // For each of the sections in the app, add a tab to the action bar. 
    for (int i = 0; i < mSectionsPagerAdapter.getCount(); i++) { 
     // Create a tab with text corresponding to the page title defined by 
     // the adapter. Also specify this Activity object, which implements 
     // the TabListener interface, as the callback (listener) for when 
     // this tab is selected. 
     actionBar.addTab(actionBar.newTab() 
       .setText(mSectionsPagerAdapter.getPageTitle(i)) 
       .setTabListener(this)); 
    } 


} 


@Override 
public void onTabSelected(ActionBar.Tab tab, 
     FragmentTransaction fragmentTransaction) { 
    // When the given tab is selected, switch to the corresponding page in 
    // the ViewPager. 
    mViewPager.setCurrentItem(tab.getPosition()); 
    setTab_position(tab.getPosition()); 
    //change_action_button_icon(tab.getPosition()); 
    //Toast.makeText(this, "Selected tab: "+tab.getPosition(), Toast.LENGTH_SHORT).show(); 
} 

@Override 
public void onTabUnselected(ActionBar.Tab tab, 
     FragmentTransaction fragmentTransaction) { 
    //TODO 
} 

@Override 
public void onTabReselected(ActionBar.Tab tab, 
     FragmentTransaction fragmentTransaction) { 
    //TODO 
} 

/** 
* A {@link FragmentPagerAdapter} that returns a fragment corresponding to 
* one of the sections/tabs/pages. 
*/ 
public class SectionsPagerAdapter extends FragmentPagerAdapter { 

    public SectionsPagerAdapter(FragmentManager fm) { 
     super(fm); 
    } 

    @Override 
    public Fragment getItem(int position) { 
     // getItem is called to instantiate the fragment for the given page. 
     // Return a DummySectionFragment (defined as a static inner class 
     // below) with the page number as its lone argument. 
     Fragment fragment = null; 
     switch (position) 
     { 
     case 0: 
      fragment = new Fragment_Trips(); 
      break; 
     case 1: 
      fragment = new Fragment_Master_List(); 
      break; 
     } 
     return fragment; 
    } 

    @Override 
    public int getCount() { 
     // Show 2 total pages. 
     return 2; 
    } 

    @Override 
    public CharSequence getPageTitle(int position) { 
     Locale l = Locale.getDefault(); 
     switch (position) { 
     case 0: 
      return getString(R.string.title_tab_trips).toUpperCase(l); 
     case 1: 
      return getString(R.string.title_tab_master_list).toUpperCase(l); 
     } 
     return null; 
    } 
} 


public void change_action_button_icon(int tab_position) 
{ 
    switch(tab_position) 
    { 
    case 0: 
     action_button.setIcon(R.drawable.ico_add_group); 
     break; 
    case 1: 
     action_button.setIcon(getResources().getDrawable(R.drawable.ico_add_message)); 
     break; 
    } 
    invalidateOptionsMenu(); 
} 


public int getTab_position() { 
    return tab_position; 
} 

public void setTab_position(int tab_position) { 
    this.tab_position = tab_position; 
} 

public MenuItem getAction_button() { 
    return action_button; 
} 

public void setAction_button(MenuItem action_button) { 
    this.action_button = action_button; 
} 

// -----BEGIN OPTIONS MENU-----// 

public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) { 
    inflater.inflate(R.menu.options_menu, menu); 
    super.onCreateOptionsMenu(menu); 
} 



// ACTIONS OF OPTION MENU 
@Override 
public boolean onOptionsItemSelected(MenuItem item) { 
    //Play a sound when an option is selected 
    //SoundUtility.getInstance(ActivityListCatalog.this).playPositive(); 
    // Check which button in the menu was clicked and open a corresponding activity 
    // or perform a requested method 
    switch(item.getItemId()) 
    { 
    case R.id.opt_menu_preferences: 
     Intent preferences = new Intent(getBaseContext(), Activity_Preferences.class); 
     startActivity(preferences); 
     break; 
    case R.id.opt_menu_options: // About activity 
     //Intent openAbout = new Intent(ActivityListCatalog.this, About.class); 
     //startActivity(openAbout); 
     break; 
    case R.id.opt_menu_help: // user cancels 
     break; 
    } 
    return super.onOptionsItemSelected(item); 
} 

//-----END OPTIONS MENU-----// 

}

+0

'원인 : java.lang.NullPointerException' 아직 생성되지 않은 객체를 참조하고 있습니다. 보기가 올바른 레이아웃 (활동 대 조각)에 있는지 확인하십시오. 아니면 너무 일찍 개체를 사용하십시오. –

+1

Fragment_Main.java에 대한 코드를 공유 할 수 있습니까? 분명히 라인 (101)은 문제가 FrankN.Stein 당신이 null 객체를 언급 @ 같다 – erik

+0

라인 (101) 상태'actionBar.addTab (actionBar.newTab() \t \t \t \t \t .setText (mSectionsPagerAdapter.getPageTitle (I)) \t \t \t \t \t .setTabListener (this));'에뮬레이터를 다시 영어로 전환하면 모든 것이 잘 작동하므로 매우 이상합니다. 그러나 한 번 러시아어로 ... – Igal

답변

1

나는 문제가 있음을 확신 해요 language has a greater precedence than other qualifiers은 대체 자원의 어떤에 결정할 때 제공 자원 테이블에 따라 사용하십시오 (가장 일치하는 알고리즘은 here 참조). 당신이 values-v14에서 그 예를 들면 다음 values-ru 자원을 넣으면

그래서, 는 사용되지 않습니다. 이 경우 작업 막대가 잘못 구성되었을 가능성이 있습니다 (values의 리소스가 장치의 API 수준이 낮음을 가정하고 values-vxx에서 재정의 된 경우).

전체 폴더가 아닌 strings.xmlvalues-ru (실제로 사용자 지정하려는 다른 리소스와 함께)에만 복사해야합니다.

+0

당신은 지금 나를 너무 많이 두통을 구 했어요! 나는 왜 여기에 내 머리카락을 당기고 있었는지 모르고 ... 왜'string-xml' 파일 만'values-ru'에 남겼을 때 모든 것이 잘되었습니다! 너무 감사합니다!!! – Igal

관련 문제