0

希望这是一个简单的。

我在这里有一个非常简单的问题,我似乎无法解决。我只是试图通过使用 findViewById 等将我的 XML 布局中的 EditText 引用到代码中。出于某种原因,我尝试清理项目并重新生成我的 R 资源文件,以及 ctrl+o 来检查导入我无法让 Eclipse 在 XML 布局中“看到”指向 EditText 的链接。

希望有人可以帮助我解决这个令人沮丧和简单的错误。

目前的错误是:

totalListPrice cannot be resolved or is not a field

这是用于引用 'totalListPrice; 的简单代码;在我的 XML 到我的代码中的 EditText:

totalPrice = (EditText)findViewById(android.R.id.totalListPrice);

这是我的 XML 布局(有问题的 EditText 已被标记):

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="84dp"
    android:orientation="horizontal" 
    android:focusableInTouchMode="false">

    <ImageView
        android:id="@+id/imgLink"
        android:layout_width="78dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:src="@drawable/viewcon" />

    <TextView
        android:id="@+id/textView1"
        android:layout_width="match_parent"
        android:layout_height="75dp"
        android:gravity="center"
        android:text="Shopping List"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:textSize="35sp"
        android:focusableInTouchMode="false"
        android:clickable="false"
        android:focusable="false" />
</LinearLayout>

<TextView
    android:id="@+id/txtItemDes"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:clickable="false"
    android:focusable="false"
    android:focusableInTouchMode="false"
    android:text="Search From An Item In The List:"
    android:textAppearance="?android:attr/textAppearanceMedium" />

<EditText
    android:id="@+id/inputAppointName"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:ems="10"
    android:hint="Enter An Item Name" >

    <requestFocus />
</EditText>

<Button
    android:id="@+id/btnAddItem"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Add"/>

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="56px"
    android:orientation="horizontal" >

    <TextView
        android:id="@+id/txtPrice"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Total Price:"
        android:textAppearance="?android:attr/textAppearanceMedium" />
     *************ERROR*************
    <EditText
        android:id="@+id/totalListPrice"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:ems="10"
        android:inputType="number"></EditText>

</LinearLayout>

<ListView
    android:id="@android:id/list"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >
</ListView>

</LinearLayout>
4

2 回答 2

1

您不需要 R 前面的“android”。相反,从您自己的包中导入生成的 R 文件(您应该能够删除该import android.R行并将其替换为您的 R 导入很容易)。

它应该只是R.id.totalListPrice

于 2013-02-13T00:03:42.193 回答
1

它应该是

R.id.totalListPrice

不是

android.R.id.totalListPrice

R在你的java文件中导入本地类而不是Randroid框架的类

import <your package name>.R;
于 2013-02-13T00:04:14.350 回答