我的findViewById不起作用。它无法链接...
////我的片段.联系人. xml
*<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">
<EditText
android:id="@+id/txtShowOnMap"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:contentDescription="@string/locationonmap"
android:importantForAutofill="no"
android:inputType="text"
android:labelFor="@id/btnShowOnMap"
android:minHeight="48dp"
android:text="@string/store_location" />
<Button
android:id="@+id/btnShowOnMap"
android:layout_width="395dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
android:text="@string/map" />
</LinearLayout>*
////结束片段联系人. xml
我的联系人fragment.kt
1条答案
按热度按时间qlvxas9a1#
请将其设置为view.findViewById对于片段,您需要添加根视图。