EditText XML参考问题

时间:2013-02-13 00:02:24

标签: java android xml

希望这是一个简单的。

我有一个非常简单的问题,我似乎无法解决。我只是试图通过使用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>

2 个答案:

答案 0 :(得分:1)

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

应该是R.id.totalListPrice

答案 1 :(得分:1)

应该是

R.id.totalListPrice

android.R.id.totalListPrice

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

import <your package name>.R;