0

我在 A.Class 中声明了一个按钮并设置为禁用。

public static Button s1=(Button)findViewById(R.id.sn1);
s1.setEnabled(false);

现在我想在另一个类(B.class)中启用这个按钮 我尝试通过给 Button s2=A.s1; 来启用这个按钮;但它抛出一个错误,说“无法从类型 Activity 对非静态方法 findViewById(int) 进行静态引用”

请帮助我纠正错误

    `First Class:

    public class Mapper extends Activity implements OnClickListener 
    {
public static int sng=0,c=0;
public static double lat;
public static double lon;
public String placenametemp;
public Bundle savedInstanceState;
public static int chk= MapMe.check;
 LocationManager locman1= MapMe.locman;
 MyOwnLocationOverlay mylocover=MapMe.myLocationOverlay;
public MediaPlayer msong=MapMe.mp;
***public Button s1=(Button)findViewById(R.id.sn1);***



@Override
public void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

 // Add Click listeners for all buttons
    View firstButton = findViewById(R.id.geocode_button);
    firstButton.setOnClickListener(this);
    View secondButton = findViewById(R.id.latlong_button);
    secondButton.setOnClickListener(this);
    View thirdButton = findViewById(R.id.presentLocation_button);
    thirdButton.setOnClickListener(this);
    View selectsong=findViewById(R.id.song_select);
    selectsong.setOnClickListener(this);
    s1.setOnClickListener(this);
    s1.setEnabled(false);


    }
 }


Second Class :
    public class MapMe extends MapActivity implements LocationListener 
  {

Button s1=(Button)findViewById(R.id.sn1);
public void onCreate(Bundle savedInstanceState)
    {
    super.onCreate(savedInstanceState);
    requestWindowFeature(Window.FEATURE_NO_TITLE);  // Suppress title bar to give more space
    setContentView(R.layout.mapme); 

    updateGPSprefs();

    // Set up location manager for determining present location of phone
    locman = (LocationManager)getSystemService(Context.LOCATION_SERVICE); 

    // Listener for GPS Status...   
    final GpsStatus.Listener onGpsStatusChange = new GpsStatus.Listener(){
        public void onGpsStatusChanged(int event){
            switch(event){
                case GpsStatus.GPS_EVENT_STARTED:
                    // Started...
                break;
                case GpsStatus.GPS_EVENT_FIRST_FIX:
                    // First Fix...
                    Toast.makeText(MapMe.this, "GPS has First fix",       
                     Toast.LENGTH_LONG).show();
                break;
                case GpsStatus.GPS_EVENT_STOPPED:
                    // Stopped...
                break;
                case GpsStatus.GPS_EVENT_SATELLITE_STATUS:
                    // Satellite update
                break;
            }
            GpsStatus status = locman.getGpsStatus(null);


            Iterable<GpsSatellite> satlist = status.getSatellites();
        }
    };
   public  void fu(double a,double b,double c,double d)
{

    if((val==0)&&(val1==0))
            {
        mp.reset();
        try {

            check=1;
            System.out.println("matched");
            mp.setDataSource(link1);
            mp.prepare();
            mp.start();
            Toast.makeText(MapMe.this, "playing", Toast.LENGTH_LONG).show();
            System.out.println("Song button1");
            ***s1.setEnabled(true);***
           System.out.println("Song button");
        }

        catch(Exception e)
        {

        }
        }

`

4

2 回答 2

0

您在错误的位置调用 findViewById() 。您应该从一些非静态方法(如 onCreate())中调用它。这个方法,即 findViewById() 是非静态的,所以你不能像你提到的那样调用它。因此,您应该将变量声明为静态,然后在活动的 onCreate() 中设置其值。

为什么不直接在 B 类中调用 findViewById() 然后禁用视图。只要视图在当前加载的布局中可用,B 类中的以下代码就可以完成您的工作。

Button s1=(Button)findViewById(R.id.sn1);
s1.setEnabled(false);
于 2012-08-23T11:51:26.033 回答
0

A类内部:

public static Button s1=(Button)findViewById(R.id.sn1);
s1.setEnabled(false);

B类内部:

你应该写:A.s1.setEnabled(true);

已编辑

在 Mapper.java 里面:

Class Mapper extends Activity{

public static Button s1;
@Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

                s1=(Button)findViewById(R.id.sn1);
                s1.setEnabled(false);

    }
}

在 Mapme.java 里面:

Class Mapme extends Activity{


@Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main_new);


                Mapper.s1.setEnabled(true);

    }
}

试试这个。可能会帮助你。

于 2012-08-23T11:38:48.147 回答