CalcService1 Android - CalcService : android, CalcService ```java package exam.service; import java.util.*; import android.app.*; import android.content.*; import android.os.*; import android.widget.*; public class CalcService extends Service { public void onCreate() { super.onCreate(); } public void onDestroy() { super.onDestroy(); } public IBinder onBind(Intent intent) { return mBinder; } ICalc.Stub mBinder = new ICalc.Stub() { public int getLCM(int .. 2019. 7. 25. 이전 1 다음