我在我的项目中使用数据绑定。我了解将数据绑定到某个模型,但现在我想调用一个隐式意图以在此布局中打开谷歌地图。我称之为隐式意图的代码位于 LinearLayout 中。我不知道如何实现这一点,有人可以给我任何想法......我想在这个上使用 ViewBinding,但我不确定这是否可能。请帮忙?我没有提到我正在使用 Java。
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools">
<data>
<variable
name="secondarySpinnerAdapter"
type="android.widget.ArrayAdapter" />
<variable
name="secondaryClickHandler"
type="mypackagename.MainActivity.MainActivityClickHandlers" />
</data>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".MainActivity"
tools:showIn="@layout/activity_main">
<LinearLayout
android:id="@+id/store_search"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/margin_default"
android:orientation="horizontal"
android:weightSum="8">
<EditText
android:id="@+id/et_store_search"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/margin_default"
android:layout_weight="7"
android:hint="@string/et_store_search_hint"
android:inputType="text"
android:padding="@dimen/padding_default" />
<ImageButton
android:id="@+id/btn_store_search"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/margin_default"
android:layout_weight="1"
android:background="@color/primary"
android:padding="@dimen/padding_default"
android:onClick="@{secondaryClickHandler::onSearchStoreClicked}"
android:src="@drawable/ic_search" />
</LinearLayout>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rvShopItems"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/store_search"
android:layout_alignParentBottom="true" />
</RelativeLayout>
</layout>