Kotlin привязка данных не работает, и я не знаю, почему - PullRequest
0 голосов
/ 19 октября 2019

Я новичок в разработке для Android и прохожу онлайн-курс по разработке для Android. Последний урок научил меня, как использовать фрагменты. Я смог следовать за уроком, используя предоставленный файл проекта фреймворка. Однако, когда я попытался реализовать принципы в своем собственном проекте, чтобы применить привязку данных, не сработало. Есть две ошибки. Последний импорт выдает ошибку: «неразрешенная ссылка: привязка данных», а затем еще одна ошибка - «неразрешенная ссылка: FragmentLoginBinding». Я провел последние 5 часов, просматривая сообщения на форуме и документацию, но не могу найти свою ошибку. Любая помощь будет принята с благодарностью.

* Редактирование: В моем сгенерированном файле проекта Java нет файла привязки данных

Мой код выглядит следующим образом: фрагмент_логина.kt:

package com.example.project2019
import android.os.Bundle
import androidx.fragment.app.Fragment
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import androidx.databinding.DataBindingUtil
import com.example.project2019.databinding.FragmentLoginBinding

class fragment_login : Fragment() {
    override fun onCreateView(
    inflater: LayoutInflater, container: ViewGroup?,
    savedInstanceState: Bundle?
    ): View? {
    val binding = DataBindingUtil.inflate<FragmentLoginBinding>(inflater,R.layout.fragment_login,container,false)
    return binding.root
    }
}

frag_login.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:layout_gravity="center_vertical"
        tools:context="com.example.project2019.fragment_login">

    <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/hello_blank_fragment"
            android:layout_gravity="center_horizontal"
    />
    <Button
            android:id="@+id/loginbtn"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:text="Log In"
    />
</LinearLayout>

Build.Gradle:

apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-kapt'
apply plugin: 'kotlin-android-extensions'

android {
    compileSdkVersion 29
    dataBinding {
        enabled = true
    }
    buildToolsVersion "29.0.1"
    defaultConfig {
        applicationId "com.example.project2019"
        minSdkVersion 19
        targetSdkVersion 29
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'androidx.core:core-ktx:1.1.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    implementation 'androidx.legacy:legacy-support-v4:1.0.0'
    implementation "com.google.android.material:material:$version_material"
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.2.0'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}

1 Ответ

1 голос
/ 19 октября 2019

Вы должны приложить fragment_login.xml к layout для работы с привязкой данных

<?xml version="1.0" encoding="utf-8"?>
<layout>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
         xmlns:tools="http://schemas.android.com/tools"  
         android:layout_width="match_parent"  
         android:layout_height="match_parent"  
         android:orientation="vertical"  
         android:layout_gravity="center_vertical"  
         tools:context="com.example.project2019.fragment_login">  
        <TextView  
             android:layout_width="wrap_content"  
             android:layout_height="wrap_content"  
             android:text="@string/hello_blank_fragment"  
             android:layout_gravity="center_horizontal" />   
        <Button  
             android:id="@+id/loginbtn"  
             android:layout_width="wrap_content"  
             android:layout_height="wrap_content"  
             android:layout_gravity="center_horizontal"  
             android:text="Log In" />  
    </LinearLayout>  
</layout>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...