对计算器UI界面设计使用线性布局出现以下情况
错误情况
Unresolved reference: nav_host_fragment_content_main
代码
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="340dp"
android:orientation="horizontal">
<Button
style="@style/rowstyle"
android:layout_marginRight="5dp"
android:text="C"
android:textSize="20sp"
/>
<Button
style="@style/rowstyle"
android:layout_marginRight="5dp"
android:text="-"
android:textSize="20sp" />
<Button
style="@style/rowstyle"
android:layout_marginRight="5dp"
android:text="+"
android:textSize="20sp" />
<Button
style="@style/rowstyle"
android:text="⬅"
android:textSize="20sp" />
LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:orientation="horizontal"
>
<Button
style="@style/rowstyle"
android:layout_marginRight="5dp"
android:text="7"
android:textSize="20sp" />
<Button
style="@style/rowstyle"
android:layout_marginRight="5dp"
android:text="8"
android:textSize="20sp" />
<Button
style="@style/rowstyle"
android:layout_marginRight="5dp"
android:text="9"
android:textSize="20sp"
/>
<Button
style="@style/rowstyle"
android:text="X"
android:textSize="20sp"
/>
LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:orientation="horizontal"
>
<Button
style="@style/rowstyle"
android:layout_marginRight="5dp"
android:text="6"
android:textSize="20sp" />
<Button
style="@style/rowstyle"
android:layout_marginRight="5dp"
android:text="5"
android:textSize="20sp" />
<Button
style="@style/rowstyle"
android:layout_marginRight="5dp"
android:text="4"
android:textSize="20sp"
/>
<Button
style="@style/rowstyle"
android:text="/"
android:textSize="20sp"
/>
LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:orientation="horizontal"
>
<Button
style="@style/rowstyle"
android:layout_marginRight="5dp"
android:text="1"
android:textSize="20sp" />
<Button
style="@style/rowstyle"
android:layout_marginRight="5dp"
android:text="2"
android:textSize="20sp" />
<Button
style="@style/rowstyle"
android:layout_marginRight="5dp"
android:text="3"
android:textSize="20sp"
/>
<Button
style="@style/rowstyle"
android:text="."
android:textSize="20sp"
/>
LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:orientation="horizontal"
>
<Button
style="@style/rowstyle"
android:layout_marginRight="5dp"
android:text="0"
android:textSize="20sp" />
<Button
style="@style/rowstyle"
android:layout_marginRight="5dp"
android:text="="
android:textSize="20sp" />
LinearLayout>
运行结果及报错内容
Unresolved reference: nav_host_fragment_content_main 27
Unresolved reference: nav_host_fragment_content_main 54