前提・実現したいこと
BUTTON クリック時に EditText に入力された文字を ViewModel のonButtonClick の引数として使用したいです。
発生している問題・エラーメッセージ
FragmentBlankBindingImpl 関連でビルドエラーになります。
文字化けも修正できず、、
EditTextId.text.toString() を引数にすることはできないのでしょうか?
よろしくお願いいたします。
C:\Users\hoge\AndroidStudioProjects\app\build\generated\ap_generated_sources\debug\out\com\e\tmp\DataBinderMapperImpl.java:9: �G���[: �V���{�����������܂��� import com.e.tmp.databinding.FragmentBlankBindingImpl; ^ �V���{��: �N���X FragmentBlankBindingImpl �ꏊ: �p�b�P�[�W com.e.tmp.databinding
該当のソースコード
TmpViewModel
Kotlin
1package com.e.tmp 2 3import androidx.lifecycle.ViewModel 4 5class TmpViewModel: ViewModel() { 6 fun onButtonClick(editText: String) { 7 println(editText) 8 } 9}
fragment_blank.xml
xml
1<?xml version="1.0" encoding="utf-8"?> 2<layout xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:tools="http://schemas.android.com/tools"> 4 5 <data> 6 <variable 7 name="viewmodel" 8 type="com.e.tmp.TmpViewModel" /> 9 </data> 10 11 <RelativeLayout 12 android:layout_width="match_parent" 13 android:layout_height="match_parent" 14 tools:context=".BlankFragment"> 15 16 17 <EditText 18 android:id="@+id/edit_text" 19 android:layout_width="wrap_content" 20 android:layout_height="wrap_content" 21 android:ems="10" 22 android:inputType="textPersonName" 23 android:text="Name" /> 24 25 <Button 26 android:id="@+id/button" 27 android:layout_width="wrap_content" 28 android:layout_height="wrap_content" 29 android:layout_below="@+id/edit_text" 30 android:text="Button" 31 android:onClick="@{() -> viewmodel.onButtonClick(editText.text.toString())}"/> // 問題の箇所 32 </RelativeLayout> 33</layout>
補足情報(FW/ツールのバージョンなど)
Android Stuido 4.0.1
buildToolsVersion "29.0.2"
回答1件
あなたの回答
tips
プレビュー