আমি আমার প্রথম অ্যান্ড্রয়েড অ্যাপে কাজ করছি। আমি আমার অ্যাপে তিনটি ক্রিয়াকলাপ পেয়েছি এবং ব্যবহারকারী বেশ ঘন ঘন পিছন পিছন স্যুইচ করে। আমি একটি দূরবর্তী পরিষেবা পেয়েছি, যা একটি টেলনেট সংযোগ পরিচালনা করে। অ্যাপ্লিকেশনগুলিকে টেলনেট বার্তাগুলি প্রেরণ / গ্রহণ করতে এই পরিষেবার সাথে আবদ্ধ হওয়া দরকার।
সম্পাদনা করুন
আপনার তথ্যমূলক উত্তরের জন্য আপনাকে বিডিএলএস ধন্যবাদ। bindService()
স্ট্যান্ড-একা ফাংশন হিসাবে বা তার পরেব্যবহারের মধ্যে পার্থক্য সম্পর্কে আপনার স্পষ্টতার আলোকে আমি আমার কোডটি আবার লিখেছিstartService()
এবং ক্রিয়াকলাপগুলির মধ্যে চক্রের পিছনে বোতামটি ব্যবহার করার সময় আমিমাঝে মাঝেকেবলফাঁস ত্রুটি বার্তাটি পাই।
আমার সংযোগ কার্যকলাপ অনুসরণ করেনি onCreate()
এবং onDestroy()
:
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
/*
* Initialize the ServiceConnection. Note that this is the only place startService() is run.
* It is also the only time bindService is run without dependency on connectStatus.
*/
conn = new TelnetServiceConnection();
//start the service which handles telnet
Intent i = new Intent();
i.setClassName( "com.wingedvictorydesign.LightfactoryRemote", "com.wingedvictorydesign.LightfactoryRemote.TelnetService" );
startService(i);
//bind to the service
bindService(i, conn, 0);
setContentView(R.layout.connect);
setupConnectUI();
}//end OnCreate()
@Override
protected void onDestroy() {
super.onDestroy();
//unbind the service and null it out
if (conn != null) {
unbindService(conn);
conn = null;
}
if(connectStatus == 0) {
//stop the service
Intent i = new Intent();
i.setClassName( "com.wingedvictorydesign.LightfactoryRemote", "com.wingedvictorydesign.LightfactoryRemote.TelnetService" );
stopService(i);
Log.d("LightfactoryRemote", "Connect onDestroy() attempted to stop service");
}
Log.d("LightfactoryRemote", "Connect onDestroy()");
}//end onDestroy()
সুতরাং ক্রিয়াকলাপ শুরু হওয়ার সাথে সাথে পরিষেবাটি শুরু করা হয়, এবং যদি সফল কোনও টেলনেট সংযোগ না করা হয় তবে কার্যকলাপটি ধ্বংস হয়ে যায় ( connectStatus == 0
)। অন্যান্য ক্রিয়াকলাপগুলি কেবলমাত্র সফল সংযোগ তৈরি করা হলে ( connectStatus == 1
ভাগ করা পছন্দগুলিতে সংরক্ষণ করা হয়) সেবার সাথে আবদ্ধ । এখানে তাদের onResume()
এবং onDestroy()
:
@Override
protected void onResume() {
super.onResume();
//retrieve the shared preferences file, and grab the connectionStatus out of it.
SharedPreferences settings = getSharedPreferences(PREFS_NAME, MODE_WORLD_WRITEABLE);
connectStatus = settings.getInt("connectStatus", 0);
Log.d("LightfactoryRemote", "Focus onResume with " + connectStatus);
//if a telnet connection is active, start the service and bind to it
if (connectStatus == 1) {
conn = new TelnetServiceConnection();
Intent i = new Intent();
i.setClassName("com.wingedvictorydesign.LightfactoryRemote", "com.wingedvictorydesign.LightfactoryRemote.TelnetService");
bindService(i, conn, 0);
//TODO write restore texview code
}//end if
}//end onResume
@Override
protected void onDestroy() {
super.onDestroy();
//unbind the service and null it out.
if (conn != null) {
Log.d("LightfactoryRemote", "Focus onDestroy() attempted to unbind service");
unbindService(conn);
conn = null;
}
Log.d("LightfactoryRemote", "Focus onDestroy()");
}//end onDestroy()
তাই বাধ্যতামূলকটি ঘটে onResume()
যাতে এটি সংযোগ ক্রিয়াকলাপ থেকে পরিবর্তিত রাষ্ট্রটি গ্রহণ করে এবং onDestroy()
প্রয়োজনে ফাংশনে এটি আনবাউন্ড হয়।
সম্পাদনা শেষ করুন
তবে আমি এখনও মেমরি ফাঁস ত্রুটি বার্তাটি পেয়েছি "ক্রিয়াকলাপ সার্ভিস কানেকশনটি @ 438030a8 ফাঁস করেছে যা ক্রিয়াকলাপগুলি স্যুইচ করার সময় মাঝে মাঝে" বন্ধ হয়ে যায় "" আমি কি ভুল করছি?
কোন পরামর্শ বা পয়েন্টার জন্য আগাম ধন্যবাদ !!!
সম্পূর্ণ ত্রুটি বার্তা অনুসরণ করে (সংশোধিত কোড থেকে):
01-02 22:04:26.642: DEBUG/LightfactoryRemote(2024): Focus onStop()
01-02 22:04:26.642: DEBUG/LightfactoryRemote(2024): Focus onDestroy() attempted to unbind service
01-02 22:04:26.642: DEBUG/LightfactoryRemote(2024): Focus onDestroy()
01-02 22:04:26.672: ERROR/ActivityThread(2024): Activity com.wingedvictorydesign.LightfactoryRemote.LightfactoryRemote has leaked ServiceConnection com.wingedvictorydesign.LightfactoryRemote.LightfactoryRemote$TelnetServiceConnection@439e51e8 that was originally bound here
01-02 22:04:26.672: ERROR/ActivityThread(2024): android.app.ServiceConnectionLeaked: Activity com.wingedvictorydesign.LightfactoryRemote.LightfactoryRemote has leaked ServiceConnection com.wingedvictorydesign.LightfactoryRemote.LightfactoryRemote$TelnetServiceConnection@439e51e8 that was originally bound here
01-02 22:04:26.672: ERROR/ActivityThread(2024): at android.app.ActivityThread$PackageInfo$ServiceDispatcher.<init>(ActivityThread.java:927)
01-02 22:04:26.672: ERROR/ActivityThread(2024): at android.app.ActivityThread$PackageInfo.getServiceDispatcher(ActivityThread.java:822)
01-02 22:04:26.672: ERROR/ActivityThread(2024): at android.app.ApplicationContext.bindService(ApplicationContext.java:842)
01-02 22:04:26.672: ERROR/ActivityThread(2024): at android.content.ContextWrapper.bindService(ContextWrapper.java:319)
01-02 22:04:26.672: ERROR/ActivityThread(2024): at com.wingedvictorydesign.LightfactoryRemote.LightfactoryRemote.onResume(LightfactoryRemote.java:102)
01-02 22:04:26.672: ERROR/ActivityThread(2024): at android.app.Instrumentation.callActivityOnResume(Instrumentation.java:1225)
01-02 22:04:26.672: ERROR/ActivityThread(2024): at android.app.Activity.performResume(Activity.java:3559)
01-02 22:04:26.672: ERROR/ActivityThread(2024): at android.app.ActivityThread.performResumeActivity(ActivityThread.java:2838)
01-02 22:04:26.672: ERROR/ActivityThread(2024): at android.app.ActivityThread.handleResumeActivity(ActivityThread.java:2866)
01-02 22:04:26.672: ERROR/ActivityThread(2024): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2420)
01-02 22:04:26.672: ERROR/ActivityThread(2024): at android.app.ActivityThread.access$2100(ActivityThread.java:116)
01-02 22:04:26.672: ERROR/ActivityThread(2024): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1794)
01-02 22:04:26.672: ERROR/ActivityThread(2024): at android.os.Handler.dispatchMessage(Handler.java:99)
01-02 22:04:26.672: ERROR/ActivityThread(2024): at android.os.Looper.loop(Looper.java:123)
01-02 22:04:26.672: ERROR/ActivityThread(2024): at android.app.ActivityThread.main(ActivityThread.java:4203)
01-02 22:04:26.672: ERROR/ActivityThread(2024): at java.lang.reflect.Method.invokeNative(Native Method)
01-02 22:04:26.672: ERROR/ActivityThread(2024): at java.lang.reflect.Method.invoke(Method.java:521)
01-02 22:04:26.672: ERROR/ActivityThread(2024): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:791)
01-02 22:04:26.672: ERROR/ActivityThread(2024): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:549)
01-02 22:04:26.672: ERROR/ActivityThread(2024): at dalvik.system.NativeStart.main(Native Method)
01-02 22:04:26.692: WARN/ActivityManager(558): Unbind failed: could not find connection for android.os.BinderProxy@43c509a8
2 য় ধন্যবাদ সম্পাদনা করুন আবার আপনার পরামর্শের জন্য বিডিএল। আপনার পরামর্শ অনুসারে আমি করেছি এবংonUnBind()
পরিষেবাতে ওভাররাইডযুক্ত করেছি। onUnBind()
সমস্ত ক্লায়েন্ট পরিষেবা থেকে সংযোগ বিচ্ছিন্ন করার পরে কেবল তখনই ট্রিগার করা হয়, তবে আমি যখন হোম বোতামটি আঘাত করি তখন এটি কার্যকর হয়, ত্রুটি বার্তাটি পপ আপ হয়! এটি আমার কাছে কোনও ধারণা রাখে না, যেহেতু সমস্ত ক্লায়েন্টগুলি পরিষেবা থেকে আনবাউন্ড হয়েছে, সুতরাং কীভাবে ধ্বংস হওয়া ব্যক্তিটি একটি পরিষেবা সংযোগ ফাঁস করতে পারে? এটা দেখ:
01-03 19:38:30.837: DEBUG/LightfactoryRemote(1118): Focus onPause()1
01-03 19:38:31.577: WARN/IInputConnectionWrapper(1118): showStatusIcon on inactive InputConnection
01-03 19:38:31.587: DEBUG/LightfactoryRemote(1118): Focus onStop()
01-03 19:38:31.600: DEBUG/LightfactoryRemote(1118): Focus onDestroy() attempted to unbind service
01-03 19:38:31.607: DEBUG/LightfactoryRemote(1118): Focus onDestroy()
01-03 19:38:31.677: DEBUG/LightfactoryRemote(1125): TelnetService onUnBind()
01-03 19:38:31.727: ERROR/ActivityThread(1118): Activity com.wingedvictorydesign.LightfactoryRemote.LightfactoryRemote has leaked ServiceConnection com.wingedvictorydesign.LightfactoryRemote.LightfactoryRemote$TelnetServiceConnection@435baeb0 that was originally bound here
01-03 19:38:31.727: ERROR/ActivityThread(1118): android.app.ServiceConnectionLeaked: Activity com.wingedvictorydesign.LightfactoryRemote.LightfactoryRemote has leaked ServiceConnection com.wingedvictorydesign.LightfactoryRemote.LightfactoryRemote$TelnetServiceConnection@435baeb0 that was originally bound here
01-03 19:38:31.727: ERROR/ActivityThread(1118): at android.app.ActivityThread$PackageInfo$ServiceDispatcher.<init>(ActivityThread.java:886)
01-03 19:38:31.727: ERROR/ActivityThread(1118): at android.app.ActivityThread$PackageInfo.getServiceDispatcher(ActivityThread.java:781)
01-03 19:38:31.727: ERROR/ActivityThread(1118): at android.app.ApplicationContext.bindService(ApplicationContext.java:820)
01-03 19:38:31.727: ERROR/ActivityThread(1118): at android.content.ContextWrapper.bindService(ContextWrapper.java:307)
01-03 19:38:31.727: ERROR/ActivityThread(1118): at com.wingedvictorydesign.LightfactoryRemote.LightfactoryRemote.onResume(LightfactoryRemote.java:102)
01-03 19:38:31.727: ERROR/ActivityThread(1118): at android.app.Instrumentation.callActivityOnResume(Instrumentation.java:1225)
01-03 19:38:31.727: ERROR/ActivityThread(1118): at android.app.Activity.performResume(Activity.java:3530)
01-03 19:38:31.727: ERROR/ActivityThread(1118): at android.app.ActivityThread.performResumeActivity(ActivityThread.java:2619)
01-03 19:38:31.727: ERROR/ActivityThread(1118): at android.app.ActivityThread.handleResumeActivity(ActivityThread.java:2647)
01-03 19:38:31.727: ERROR/ActivityThread(1118): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2287)
01-03 19:38:31.727: ERROR/ActivityThread(1118): at android.app.ActivityThread.access$1800(ActivityThread.java:112)
01-03 19:38:31.727: ERROR/ActivityThread(1118): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1692)
01-03 19:38:31.727: ERROR/ActivityThread(1118): at android.os.Handler.dispatchMessage(Handler.java:99)
01-03 19:38:31.727: ERROR/ActivityThread(1118): at android.os.Looper.loop(Looper.java:123)
01-03 19:38:31.727: ERROR/ActivityThread(1118): at android.app.ActivityThread.main(ActivityThread.java:3948)
01-03 19:38:31.727: ERROR/ActivityThread(1118): at java.lang.reflect.Method.invokeNative(Native Method)
01-03 19:38:31.727: ERROR/ActivityThread(1118): at java.lang.reflect.Method.invoke(Method.java:521)
01-03 19:38:31.727: ERROR/ActivityThread(1118): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:782)
01-03 19:38:31.727: ERROR/ActivityThread(1118): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:540)
01-03 19:38:31.727: ERROR/ActivityThread(1118): at dalvik.system.NativeStart.main(Native Method)
01-03 19:38:31.777: WARN/ActivityManager(564): Unbind failed: could not find connection for android.os.BinderProxy@4370f8a8
আমি ভেবেছিলাম এটি আপনার মতো বলে কিছু হতে পারে, যেখানে পরিষেবাটির কাছে বাধ্যতামূলক ডাক দেওয়ার সময় সম্পূর্ণ হয় না unbindService()
, তবে আমি বাধ্যতামূলকভাবে সম্পূর্ণ হয়েছে কিনা তা যাচাই করার জন্য প্রতিটি ক্রিয়াকলাপের সাহায্যে আমি সেবার একটি পদ্ধতি কল করার চেষ্টা করেছি, এবং তারা সবাই গেল জরিমানা মাধ্যমে।
সাধারণভাবে, এই আচরণটি প্রতিটি ক্রিয়াকলাপে আমি কতদিন থাকি তার সাথে সম্পর্কিত বলে মনে হয় না। প্রথম ক্রিয়াকলাপটি একবার তার সার্ভিস কানেকশন ফাঁস হয়ে গেলে, তারপরে, তাদের পরে আমি তাদের মাধ্যমে ফিরে আসার মতো তারা সকলে করে।
অন্য একটি জিনিস, যদি আমি দেব সরঞ্জামগুলিতে "তত্ক্ষণাত্ ক্রিয়াকলাপগুলি ধ্বংস করে" চালু করি তবে এটি এই ত্রুটিটি রোধ করে।
কোন ধারনা?