What is the translation of " BINDSERVICE " in English?

Examples of using Bindservice in Vietnamese and their translations into English

{-}
  • Colloquial category close
  • Ecclesiastic category close
  • Computer category close
Service mà được tạo ra bằng bindService().
The service is created by bindService().
BindService() trả về ngay lập tức và không trả IBinder về máy khách.
BindService() returns immediately and does not return the IBinder to the client.
Một Client có thểgắn kết với Service bằng cách gọi bindService().
A client can bind to the service by calling bindService().
( Nếu dịch vụ không phải là đang chạy, bindService() có thể start nó.).
(If the service is not already running, bindService() can optionally start it.).
Một máy khách có thể gắnkết với dịch vụ bằng cách gọi bindService().
A client can bind to the service by calling bindService().
BindService() để thiết lập mộtkết nối liên tục giữa các thành phần và dịch vụ đích.
BindService() to establish an ongoing connection between the calling component and a target service.
Dịch vụ được tạo khi một thành phần khác( máy khách)gọi bindService().
The service is created when another component(a client)calls bindService().
BindService(), cho phép một long- standing connection đƣợc tạo ra để service có thể tƣơng tác với nó.
BindService(), which allows a long-standing connection to be made to the service in order to interact with it.
Dịch vụ có thể được bắt đầu với Context. startService() và Context. bindService().
Services can be started with Context. startService() and Context. bindService().
Tham số đầu tiên của bindService() là một Intent trong đó nêu rõ tên của các dịch vụ sẽ gắn kết( mặc dù ý định có thể ngầm hiểu).
The first parameter of bindService() is an Intent that explicitly names the service to bind(thought the intent could be implicit).
Hoặc bạn có thể liên kết với service bằng cách truyền vào một Intent thông qua phương thức bindService().
Or you can bind to the service by passing an Intent to bindService().
Nếu một thành phần gọi bindService() để tạo dịch vụ( và onStartCommand() không được gọi), khi đó dịch vụ sẽ chỉ chạy khi nào mà thành phần đó còn gắn kết với nó.
If a component calls bindService() to create the service and onStartCommand() is not called, the service runs only as long as the component is bound to it.
Bound service là" bound" khi một component ứngdụng liên kết cho nó bằng cách gọi bindService().
Bound Service: A service is boundwhen an application component binds to it by calling bindService().
Mặc dù hình tách riêng các dịch vụ được tạo bởi startService()với các dịch vụ được tạo bởi bindService(), hãy ghi nhớ rằng bất kỳ dịch vụ nào, dù được bắt đầu như thế nào, đều có thể cho phép máy khách gắn kết với nó.
Although the figure separates services that are created by startService()from those created by bindService(), keep in mind that any service, no matter how it's started, can potentially allow clients to bind to it.
Bắt đầu với Android 5.0( API mức 21),hệ thống sẽ đưa ra lỗi ngoại lệ nếu bạn gọi bindService() bằng một ý định không biểu thị.
Starting with Android 5.0(API level 21),the system throws an exemption if you call bindService() with an inherent intent.
Hệ thống sẽ gọi phương pháp này khi một thành phần khác muốn gắn kết với dịch vụ( chẳng hạn như để thực hiện RPC), bằng cách gọi bindService().
The system invokes this method by calling bindService() when another component wants to bind with the service(such as to perform RPC).
Nó có thể được sử dụng với startActivity để bắt đầu một Activity, với broadcastIntent để gửi nó tới bất kì một thành phần BroadcastReceiver nào,và với startService( Intent) hay bindService( Intent, ServiceConnection, int) để giao tiếp với một service chạy nền.
It can be used with startActivity to launch an Activity, broadcastIntent to send it to any interested BroadcastReceiver components,and startService(Intent) or bindService(Intent, ServiceConnection, int) to communicate with a Background Service.
Bound Service- Một dịch vụ bị ràng buộc khi một thành phần ứngdụng liên kết với nó bằng cách gọi bindService().
Bound- A service is boundwhen an application component binds to it by calling bind Service().
Nó có thể được sử dụng với startActivity để chạy một Activity, broadcastIntent để gửi nó tới bất kỳ thành phần BroadcastReceiver nào quan tâm đến,và với startService( Intent) hoặc bindService( Intent, ServiceConnection, int) để giao tiếp với một Service ở Background.
It can be used with startActivity to launch an Activity, broadcastIntent to send it to any interested BroadcastReceiver components,and startService(Intent) or bindService(Intent, ServiceConnection, int) to communicate with a Background Service.
Nếu dịch vụ được thiết kế với một giao diện máy khách-máy chủ, bạn có thể gắn kết với dịch vụ từ một thành phần khác bằng cách chuyển Intent sang bindService().
If the service is designed with a client-server interface,you can unite to the service from another section by passing an Intent to bindService().
Phương pháp bindService() trả về ngay lập tức mà không có giá trị, nhưng khi hệ thống Android tạo kết nối giữa máy khách và dịch vụ, nó gọi onServiceConnected() trên ServiceConnection, để giao IBinder mà máy khách có thể sử dụng để giao tiếp với dịch vụ.
The bindService() method returns immediately without a value, but when the Android system creates the connection between the client and service, it calls onServiceConnected() on the ServiceConnection, to deliver the IBinder that the client can use to communicate with the service.
Các phương pháp onCreate() và onDestroy() được gọi cho tất cả dịch vụ,dù chúng được tạo bởi startService() hay bindService().
The onCreate() and onDestroy() methods are called for all services,whether they're created by startService() or bindService().
Dịch vụ có thể được bắt đầu bằng cách gọi startService(), nó cho phép dịch vụ chạy mãi,và cũng cho phép một máy khách gắn kết với dịch vụ bằng cách gọi bindService().
The service can be started by calling startService(), which allows the service to run indefinitely,and also allow a client to bind to the service by calling bindService().
Các phương thức onCreate() và onDestroy() được gọi cho tất cả các Service dù chúng có được bắt đầu bằng Context. startService()hoặc Context. bindService() hay không.
The onCreate() and onDestroy() methods are called for all services, whether they're started by Context. startService()or Context. bindService().
Sau đó, có thể là khi người dùng muốn thực thi một quyền điều khiển đối với trình phát đó hoặc lấy thông tin về bài hát đang phát, hoạt động có thể gắnkết với dịch vụ bằng cách gọi bindService().
Later, possibly when the user wants to exercise some control over the player or get information about the current song,an activity can bind to the service by calling bindService().
Sơ đồ bên trái cho thấy vòng đời khi dịch vụ được tạo bằng startService() và sơ đồ bên phải cho thấy vòng đờikhi dịch vụ được tạo bằng bindService().
The following diagram on the left shows the life cycle when the service is created with startService() and the diagram on the right shows the lifecycle when the service is created with bindService().
Trong sơ đồ sau phía bên trái mô tả vòng đời của service khi được tạo với startService(), và phía bên phải mô tả vòngđời của service khi được tạo với bindService().
The following diagram on the left shows the life cycle when the service is created with startService() and the diagram on the right shows the lifecycle when the service is created with bindService().
Sau đó, có thể khi người dùng muốn thực hiện một số kiểm soát đối với các cầu thủ hoặc nhận được thông tin về các bài hát hiện hành, một activity có thểliên kết với các service bằng cách gọi bindService().
Later, possibly when the user wants to exercise some control over the player or get information about the current song,an activity can bind to the service by calling bindService().
Results: 28, Time: 0.0165

Top dictionary queries

Vietnamese - English