0

私の最初のアプリ Android で Swipe + Tiles Navigation を使用しようとしています。フラグメント/タイルごとに異なる文字列を表示したい。switch case を使用して、 int position に基づいて別の文字列を使用しました。アプリはエラーなしでチェックアウトされましたが、実行するとクラッシュし続けます。if else を使用してみましたが、今は立ち往生しています。助けていただければ幸いです。

MainActivity.java

パッケージcom.example.swipetile;

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.app.NavUtils;
import android.support.v4.view.ViewPager;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;

public class MainActivity extends FragmentActivity {

int position; // Setting global variables .. trying to solve the issue at the end 
String ARG_SECTION_NUMBER;

SectionsPagerAdapter mSectionsPagerAdapter;

ViewPager mViewPager;

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

    // 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);

}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.activity_main, menu);
    return true;
}

/**
 * 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 = new DummySectionFragment();
        Bundle args = new Bundle();
        args.putInt(DummySectionFragment.ARG_SECTION_NUMBER, position + 5);
        fragment.setArguments(args);
        return fragment;
    }

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

    @Override
    public CharSequence getPageTitle(int position) {
        switch (position) {
        case 0:
            return getString(R.string.title_section1).toUpperCase();
        case 1:
            return getString(R.string.title_section2).toUpperCase();
        case 2:
            return getString(R.string.title_section3).toUpperCase();
        }
        return null;
    }
}

/**
 * A dummy fragment representing a section of the app, but that simply
 * displays dummy text.
 */
public static class DummySectionFragment extends Fragment {
    /**
     * The fragment argument representing the section number for this
     * fragment.
     */
    public static final String ARG_SECTION_NUMBER = "section_number";

    public DummySectionFragment() {
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        // Create a new TextView and set its text to the fragment's section
        // number argument value.
        TextView textView = new TextView(getActivity());
        textView.setGravity(Gravity.CENTER);

        /*
        textView.setText(Integer.toString(getArguments().getInt(ARG_SECTION_NUMBER)));
        return textView;
        */


        // Original Procedure

        /*
         textView.setText(Integer.toString(getArguments().getInt(
         ARG_SECTION_NUMBER))); return textView;
         */


        //  public CharSequence getPageTitle(int position)

        CharSequence  getItem(int position) {

              if (position == 0) {
                textView.setText(getString(R.string.hello_world));
                return textView;

            } else if (position == 1) {
                textView.setText(getString(R.string.hello_world)); 
                return textView;

            } else if (position == 2) {
                textView.setText(getString(R.string.hello_world)); 
                return textView;

            } else if (position == 3) {
                textView.setText(getString(R.string.hello_world)); 
                return textView;

            } else {
                textView.setText(getString(R.string.hello_world)); 
                return textView;
            } 



      // the one that had no errors but closed  
        /*
        int position = Integer.parseInt(ARG_SECTION_NUMBER);
        switch (position)
          { 
           case 1: 
                  textView.setText(getString(R.string.hello_world));
                  return textView;


          case 2: 
                 textView.setText(getString(R.string.hello_world)); 
                 return textView;


          case 3:
                textView.setText(getString(R.string.hello_world));
                return textView;


          default:
                textView.setText(getString(R.string.hello_world));
                return textView; 

          }
         */

        /*textView.setText(getString(R.string.hello_world));
        return textView;
        */
    }
}

}

上部の位置 int と文字列 ARG_SECTION_NUMBER; をコメントアウトしようとしました。そして、switchステートメントを使用してみました..同じ結果..エラーなし..アプリを実行すると、アプリが死ぬだけです。

LOGCAT エラーショット

http://tinypic.com/r/1zmgo55/5

前もって感謝します

4

1 に答える 1

0

ARG_SECTION_NUMBER を文字列である整数に解析しようとしています。

Eclipse を使用している場合は、Logcat で例外ログを確認できます。ウィンドウ > ビューの表示 > その他 > Logcat

編集: - ARG_SECTION_NUMBER が原因で NumberFormatException が発生しています。

これらの行を DummySectionFragment の onCreateView() に追加します

Bundle bundle=getArguments();
int position = bundle.getInt(ARG_SECTION_NUMBER);
于 2013-05-05T06:04:12.197 に答える