1

当我导入时,android.R我得到 Error_1 并且 Error_2 已解决。那么,我该如何解决 Error_1。我试过改变import android.R--> import com.example.testing.R。但是它仍然无法正常工作。

甚至我的 login.xml 似乎也被找到了。没有错误。我也尝试过清理项目。仍然没有任何反应。

登录活动.java

package com.example.testing;

import android.R;  //Error_1 : Don't include android.R here; use a fully qualified name for each usage instead
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;

public class LoginActivity extends Activity 
{
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        //setting default screen to login.xml
        setContentView(R.layout.login); //Error_2 : login cannot be resolved or is not a field
        TextView registerScreen = (TextView) findViewById (R.id.link_to_register);

        //Listening to register new account link
        registerScreen.setOnClickListener(new View.OnClickListener()
        {
            public void onClick(View v)
            {
                //Switching to Register Screen
                Intent i = new Intent(getApplicationContext(), RegisterActivity.class); 
                startActivity(i);
            }
        });
    }
}

这是我的 login.xml

登录.xml

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fillViewport="true" >

<RelativeLayout
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:background="#ffffff">

<LinearLayout android:id="@+id/header"
    android:orientation="horizontal"
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content"
    android:background="@layout/header_gradient" 
    android:paddingTop="5dip"
    android:paddingBottom="5dip"> 
</LinearLayout>

<!-- Footer -->
<LinearLayout android:id="@+id/footer"
    android:orientation="horizontal"
    android:contentDescription="@string/description"
    android:layout_width="fill_parent" 
    android:layout_height="90dip"
    android:background="@layout/footer_repeat"
    android:layout_alignParentBottom="true">
</LinearLayout>

<LinearLayout
    android:orientation="vertical"
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:padding="10dip" 
    android:layout_below="@id/header">

 <TextView android:layout_width="fill_parent" 
     android:layout_height="wrap_content"
     android:textColor="#372c24"
     android:text="@string/name" />

 <EditText android:id="@+id/editText1"
     android:hint="@string/edit_message"
     android:layout_width="fill_parent"
     android:layout_height="wrap_content"
     android:layout_marginTop="5dip"
     android:layout_marginBottom="20dip"
     android:singleLine="true"/>

      <!--  Password Label -->
      <TextView android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:textColor="#372c24"
            android:text="@string/password"/>

      <EditText android:id="@+id/editText2"
            android:hint="@string/edit_message1"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="5dip"
            android:singleLine="true"
            android:inputType="textVisiblePassword"/>

      <Button android:id="@+id/btnLogin"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dip"
            android:text="@string/login"/>

      <TextView android:id="@+id/link_to_register"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="40dip"
            android:layout_marginBottom="40dip"
            android:text="@string/loginDesc"
            android:gravity="center"
            android:textSize="20sp"
            android:textColor="#0b84aa"/>

    </LinearLayout>
    <!-- Login Form Ends -->
 </RelativeLayout>
 </ScrollView>
4

3 回答 3

2
  1. 确保您的 XML 中没有错误
  2. 如果有正确的那些和项目-> 全部构建
  3. 如果一切顺利,您的 XML 附近不会有一个红十字[嗯,我指的是 Eclipse IDE]
  4. 您不必导入 android.R 它在每个源文件中都是可见和可访问的,除非您更改了属性

注意:您的 res 文件夹中可能存在 .out 文件的问题,这是当您在打开 XML 文件时尝试编译项目时发生的 eclipse 错误。如果是这样删除它并尝试

于 2013-11-09T05:32:05.770 回答
1

首先删除 import android.R 然后

  1. 尝试从项目选项卡中清理项目。
  2. 关闭eclipse并重新开始。

步骤 1. 为我工作。

于 2016-01-11T16:39:21.720 回答
0

您应该导入 com.example.testing.R 删除导入 android.R 并检查 login.xml。

于 2013-11-09T05:33:06.470 回答