-4
我只是從eclipse遷移到android studio。我嘗試一個示例項目不工作。我想不明白。我希望有一個人可以幫助我。 我嘗試從我的主要活動中調用示例類。似乎我不能從樣本中調用方法。android studio無法解析的方法
package com.example.lzp93_000.sample;
import android.os.Bundle;
import android.app.*;
public class MainActivity extends Activity {
private sample s=new sample();
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
String y=sample.sampleMehod(); // <--- It's not working.
//It shows Cannot resolve Method.
}
}
package com.example.lzp93_000.sample;
public class sample {
public String sampleMethod()
{
String x="100";
return x;
}
}