本文介紹了在數據綁定中將另一個視圖作為參數傳遞的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
我正在嘗試將我的XML的另一個視圖作為Google數據綁定中方法的參數傳遞…如下所示:
<LinearLayout
android:id="@+id/faq_subject_about_ego"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/border_faq_btn"
android:orientation="horizontal"
android:layout_marginBottom="20dp"
android:padding="4dp"
android:gravity="center"
android:onClick='@{(faq_title_about) -> viewModel.subjectRequest(faq_title_about.getText())}'>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/icon_faq"
android:layout_marginRight="8dp"
android:clickable="false" />
<ebanx.com.ego.utils.custom_extension.CustomButtonBold
android:id="@+id/faq_title_about"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@style/Button_FAQ"
android:text="@string/btn_about_ego"
android:clickable="false" />
</LinearLayout>
我需要CustomButtonBold中的文本…但這行不通。
如何將按鈕文本作為參數傳遞?
如有任何幫助,我們將不勝感激!
推薦答案
為id-able生成的成員具有CamelCase名稱格式。此外,提供給OnClickListener
的視圖是被單擊的視圖。因此,只需任意命名參數并使用正確的”全局”成員即可。
android:onClick='@{(v) -> viewModel.subjectRequest(faqTitleAbout.getText())}'
這篇關于在數據綁定中將另一個視圖作為參數傳遞的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,