Convert MessageListWidgetService
to Kotlin
This commit is contained in:
parent
755885bb2b
commit
f464b3be6d
1 changed files with 6 additions and 9 deletions
|
@ -1,13 +1,10 @@
|
|||
package com.fsck.k9.widget.list;
|
||||
package com.fsck.k9.widget.list
|
||||
|
||||
import android.content.Intent
|
||||
import android.widget.RemoteViewsService
|
||||
|
||||
import android.content.Intent;
|
||||
import android.widget.RemoteViewsService;
|
||||
|
||||
|
||||
public class MessageListWidgetService extends RemoteViewsService {
|
||||
@Override
|
||||
public RemoteViewsFactory onGetViewFactory(Intent intent) {
|
||||
return new MessageListRemoteViewFactory(getApplicationContext());
|
||||
class MessageListWidgetService : RemoteViewsService() {
|
||||
override fun onGetViewFactory(intent: Intent): RemoteViewsFactory {
|
||||
return MessageListRemoteViewFactory(applicationContext)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue