Я получаю неразрешенную ссылку при компиляции в kotlin - PullRequest
0 голосов
/ 03 октября 2018

Я новичок в kotlin и получаю Неразрешенная ссылка при компиляции
не может получить ссылку на мой класс, вот оба класса.

Это мой Activity класс

RoomActivity.kt

class RoomActivity : AppCompatActivity() {

val NEW_WORD_ACTIVITY_REQUEST_CODE = 1

//    private var mWordViewModel: WordViewModel? = null
private var mWordViewModel: WordViewModel?=null

override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    setContentView(R.layout.activity_room)

    val toolbar = findViewById<Toolbar>(R.id.toolbar)
    setSupportActionBar(toolbar)

    val recyclerView = findViewById<RecyclerView>(R.id.recyclerview)
    val adapter = WordListAdapter(this)
    recyclerView.adapter = adapter
    recyclerView.layoutManager = LinearLayoutManager(this)

    // Get a new or existing ViewModel from the ViewModelProvider.
    mWordViewModel = ViewModelProviders.of(this).get(WordViewModel::class.java)

    // Add an observer on the LiveData returned by getAlphabetizedWords.
    // The onChanged() method fires when the observed data changes and the activity is
    // in the foreground.
    mWordViewModel!!.allWords.observe(this, Observer<List<Word>> {
        adapter.setWords(Word)
        TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
    })

    val fab = findViewById<FloatingActionButton>(R.id.fab)
    fab.setOnClickListener(object : View.OnClickListener {
        override fun onClick(view: View) {
            val intent = Intent(this@RoomActivity, NewWordActivity::class.java)
            startActivityForResult(intent, NEW_WORD_ACTIVITY_REQUEST_CODE)
        }
    })
}

public override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
    super.onActivityResult(requestCode, resultCode, data)

    if (requestCode == NEW_WORD_ACTIVITY_REQUEST_CODE && resultCode == Activity.RESULT_OK) {
        val word = Word(data!!.getStringExtra(NewWordActivity.EXTRA_REPLY))
        mWordViewModel!!.insert(word)
    } else {
        Toast.makeText(
                applicationContext,
                R.string.empty_not_saved,
                Toast.LENGTH_LONG).show()
    }
}

}

Это мой ViewModel класс

WordViewModel.kt

class WordViewModel(application: Application) : AndroidViewModel(application) {

private var parentJob = Job()
private val coroutineContext: CoroutineContext
    get() = parentJob + Dispatchers.Main
private val scope = CoroutineScope(coroutineContext)

private val repository: WordRepository
val allWords: LiveData<List<Word>>

init {
    val wordsDao = WordRoomDatabase.getDatabase(application)?.wordDao()
    repository = WordRepository(wordsDao!!)
    allWords = repository.allWords
}

fun insert(word: Word) = scope.launch(Dispatchers.IO) {
    repository.insert(word)
}

override fun onCleared() {
    super.onCleared()
    parentJob.cancel()
}
}

что не так в этом, пожалуйста, помогите мне.

Ответы [ 2 ]

0 голосов
/ 03 октября 2018

Если вы скопировали файл WordViewModel.kt из другого проекта, убедитесь, что вы изменили имя пакета в первой строке на имя, которое вы используете в своем проекте.

package application.hdlakhani.com.myapplication
0 голосов
/ 03 октября 2018

AndroidViewModel - он используется, когда вам нужен контекст, когда этот класс использовался другим классом, используемым классом ViewModel ().код ниже работает оба условия, если вы использовали androidviewmodel или viewmodel.

class UserViewModel : ViewModel() {

lateinit var userList: LiveData<PagedList<User>>

private val compositeDisposable = CompositeDisposable()

private val pageSize = 10

lateinit var sourceFactory: UsersDataSourceFactory

lateinit var productList:LiveData<PagedList<ProductsItem>>
var tDataSource: LiveData<ProductListSource>? = null

lateinit var productListSource:ProductDataSourceFactory

var networkState: LiveData<NetworkState>? = null
var productData: LiveData<Product>? = null
fun init(apiListener: ApiListener) {
    sourceFactory = UsersDataSourceFactory(compositeDisposable, apiListener)
    val config = PagedList.Config.Builder()
            .setPageSize(pageSize)
            .setEnablePlaceholders(false)
            .build()
    userList = LivePagedListBuilder<Long, User>(sourceFactory, config).build()
}
fun getProductData(apiListener: ApiListener){
    productListSource= ProductDataSourceFactory(apiListener)
    tDataSource = productListSource.mutableLiveData
    networkState = Transformations.switchMap(productListSource.mutableLiveData) { dataSource -> dataSource.networkState }
    productData = Transformations.switchMap(productListSource.mutableLiveData) { dataSource -> dataSource.productList }

    val config=PagedList.Config.Builder()
            .setInitialLoadSizeHint(5)
            .setPageSize(pageSize)
            .setEnablePlaceholders(false)
            .build()
    productList=LivePagedListBuilder<Long,ProductsItem>(productListSource,config).build()
}
override fun onCleared() {
    super.onCleared()
    compositeDisposable.dispose()
}
fun retryGetProduct() {
    productListSource.mutableLiveData.value!!.retry()
}

fun retry() {
    sourceFactory.usersDataSourceLiveData.value!!.retry()
}

fun refresh() {
    sourceFactory.usersDataSourceLiveData.value!!.invalidate()
}

/ * fun getNetworkStateData (): LiveData = Transformations.switchMap (productListSource.mutableLiveData, {it.networkState})

fun getNetworkState(): LiveData<NetworkState> = Transformations.switchMap<UsersDataSource, NetworkState>(
        sourceFactory.usersDataSourceLiveData, { it.networkState })

fun getRefreshState(): LiveData<NetworkState> = Transformations.switchMap<UsersDataSource, NetworkState>(
        sourceFactory.usersDataSourceLiveData, { it.initialLoad })*/

}

доступ подобным образом ..

 viewModel = ViewModelProviders.of(this).get(UserViewModel::class.java)
...