未找到Android Eclipse调试源

时间:2014-04-10 04:13:41

标签: android eclipse debugging

我已经找了很多解决我的问题的方法并找到了类似的项目 - 但不幸的是我无法解决这个问题。这是弄糟我的: 我的小项目是一个按钮和一个onClickListener。

package com.example.wbbtn;

import android.app.Activity;
import android.app.ActionBar;
import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;

public class MainActivity extends Activity {
    Button wb1;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        if (savedInstanceState == null) {
            getFragmentManager().beginTransaction()
                    .add(R.id.container, new PlaceholderFragment()).commit();
        }

        wb1 = (Button) findViewById(R.id.b1);
        wb1.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub

            }
        });
    }

    @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);
    }

    /**
     * A placeholder fragment containing a simple view.
     */
    public static class PlaceholderFragment extends Fragment {

        public PlaceholderFragment() {
        }

        @Override
        public View onCreateView(LayoutInflater inflater, ViewGroup container,
                Bundle savedInstanceState) {
            View rootView = inflater.inflate(R.layout.fragment_main, container,
                    false);
            return rootView;
        }
    }
}

我在wb1 = (Button) findViewById(R.id.b1);

处设置了一个断点

当我开始调试我的平板电脑已经设置为调试模式并连接到PC并点击 F6 键时,我收到一条消息,指出找不到来源。

我做了一个屏幕截图,让事情变得更加清晰,但我被告知至少要有10个声望才能发布图片。好的 - 抱歉!

您好 - 抱歉这个迟到的回复。好的,这里是屏幕截图的链接 - 希望它有效:

a) source not found

b) Break point

0 个答案:

没有答案