powered by simpleCommunicator - 2.0.40     © 2025 Programmizd 02
Форумы / Android [игнор отключен] [закрыт для гостей] / Не получается подключиться к сервису (Android)
2 сообщений из 2, страница 1 из 1
Не получается подключиться к сервису (Android)
    #37533963
Lisichkin
Скрыть профиль Поместить в игнор-лист Сообщения автора в теме
Участник
Имеется сервис:

Код: plaintext
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
51.
52.
53.
54.
55.
56.
57.
58.
 public   class  CallListService  extends  Service {
	 private   static   final  String TAG = CallListService. class .getSimpleName();
	 public   static   final  String CALLLIST_ACTIVITY = "ru.FoxGSM.services.CallListService";
	
	 private  List<CallListListener> listeners =  new  ArrayList<CallListListener>();
	 private  ArrayList<CallItem> callList =  new  ArrayList<CallItem>();

	 private  CallListApi.Stub apiEndpoint =  new  CallListApi.Stub()	{
		@Override
		 public  CallParcelable GetCall( int  index)  throws  RemoteException	{
			 synchronized  (callList)	{
				 return 	 new  CallParcelable(callList.get(index));
			}
		}

		@Override
		 public   void  addListener(CallListListener listener)  throws  RemoteException	{			
			 synchronized  (listeners)	{
				listeners.add(listener);
				listener.handleCallUpdated();
			}
		}
		
		@Override
		 public   void  removeListener(CallListListener listener)  throws  RemoteException	{			
			 synchronized  (listeners) {
				listeners.remove(listener);
			}
		}		
	};

	// Инициализация сервиса
	@Override
	 public   void  onCreate() {
		 super .onCreate();
		Log.i(TAG, "service creating");
		
    }

    // Уничтожение сервиса
	@Override
	 public   void  onDestroy() {
		 super .onDestroy();
		Log.i(TAG, "service destroying");		
	}


	@Override
	 public  IBinder onBind(Intent intent) {
		Log.d(TAG, "try bind by intent " + intent.getAction());
		 if  (intent.getAction().equals(CALLLIST_ACTIVITY)) {
			Log.d(TAG, "bound by intent " + intent);
			 return  apiEndpoint;
		}  else  {
			 return   null ;
		}
	}

}

Имеется Activity

Код: plaintext
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
51.
52.
53.
54.
55.
56.
57.
 public   class  CallsActivity  extends  ListActivity {
	 private   static   final  String TAG = CallsActivity. class .getSimpleName();
	
	 private  CallListApi api;

	 private  CallListListener.Stub collectorListener =  new  CallListListener.Stub() {
		@Override
		 public   void  handleCallUpdated()  throws  RemoteException	{
			RefreshData();
		}
	};
	
	 private  ServiceConnection serviceConnection =  new  ServiceConnection() {
		@Override
		 public   void  onServiceConnected(ComponentName name, IBinder service) {
			Log.i(TAG, "Service connection established");
	
			// that's how we get the client side of the IPC connection
			api = CallListApi.Stub.asInterface(service);
			 try  {
				api.addListener(collectorListener);
			}  catch  (RemoteException e) {
				Log.e(TAG, "Failed to add listener", e);
			}
		}

		@Override
		 public   void  onServiceDisconnected(ComponentName name) {
			Log.i(TAG, "Service connection closed");			
		}
	};

    @Override
     public   void  onCreate(Bundle savedInstanceState) {        	
    	 super .onCreate(savedInstanceState);

    	// Start CallListService
    	Intent intent =  new  Intent(CallListService.CALLLIST_ACTIVITY);
    	startService(intent);
        bindService(intent, serviceConnection,  0 );
    	   	        
        InitView();
    }

	@Override
	 protected   void  onDestroy() {
		 super .onDestroy();
		
		 try  {
			api.removeListener(collectorListener);
			unbindService(serviceConnection);
		}  catch  (Throwable t) {
			// catch any issues, typical for destroy routines
			// even if we failed to destroy something, we need to continue destroying
			Log.w(TAG, "Failed to unbind from the service", t);
		}
	}
}

В методе onCreate, после исполнения сточки startService в LogCat видно:
11-18 16:48:18.110: INFO/CallListService(373): service creating
11-18 16:48:18.119: INFO/CallListService(373): register OutgoingCallReceiver
11-18 16:48:18.130: INFO/CallListService(373): register StateChangedReceiver
11-18 16:48:18.130: INFO/CallListService(373): init sample data


после исполнения сточки bindService ничего не видно :((, да и данным отладчика переменная api==null
Помогите - я в ступоре, в чем я ошибаюсь?????

P.S. Сервис в AndroidManifest зарегистрирован.
С Уважением,
Александр.
...
Рейтинг: 0 / 0
Не получается подключиться к сервису (Android)
    #37534133
Lisichkin
Скрыть профиль Поместить в игнор-лист Сообщения автора в теме
Участник
Сам задаю вопрос, сам отвечаю :(

http://code.google.com/p/android/issues/detail?id=2665
The problem is when an activity is in a TabSpec as a child of tabhost.
An activity cannot bind with a service within a TabSpec but the same activity can
bind ok as a standalone activity.
The workaround is to bind to the service in the tabhost and then pass the binding to
the children.
...
Рейтинг: 0 / 0
2 сообщений из 2, страница 1 из 1
Форумы / Android [игнор отключен] [закрыт для гостей] / Не получается подключиться к сервису (Android)
Целевая тема:
Создать новую тему:
Автор:
Закрыть
Цитировать
Найденые пользователи ...
Разблокировать пользователей ...
Читали форум (0):
Пользователи онлайн (0):
x
x
Закрыть


Просмотр
0 / 0
Close
Debug Console [Select Text]