我确定我昨晚没有做任何奇怪或错误的事情。昨晚,我仍然可以Toast.makeText(getApplicationContext(), "Some String", Toast.LENGTH_SHORT);
但是今天早上,当我尝试再次调试它以确保应用程序仍然可以像上次测试一样工作时,它显示错误。 “无法解决...”。
当我检查我的MainActivity.java
代码时,getApplicationContext()
是红色文本。 (我使用的是实质性的ui主题,红色文本表示错误)。然后我尝试重新输入。但是,它没有显示getApplicationContext()
的自动完成功能。我不确定我的代码有什么问题。我在新项目中尝试过,效果很好。
这是我的文件代码:
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.belajar.belajar1">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.belajar.belajar1.MainActivity" android:weightSum="1">
<EditText android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textDirection="firstStrong"
android:hint="Title"
android:id="@+id/inputTitle"
/>
<EditText
android:layout_width="match_parent"
android:layout_height="0sp"
android:layout_weight="1"
android:gravity="top"
android:hint="Your Note"
android:id="@+id/inputContent"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="SAVE"
android:onClick="cmdProcess"/>
</LinearLayout>
MainActivity.java
package com.belajar.belajar1;
import android.widget.Toast;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.EditText;
import com.google.firebase.database.*;
import java.util.HashMap;
import java.util.Map;
public class MainActivity extends AppCompatActivity
{
DatabaseReference root = FirebaseDatabase.getInstance().getReference();
DatabaseReference TestLab1;
EditText mInputTitle, mInputContent;
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mInputTitle = (EditText)findViewById(R.id.inputTitle);
mInputContent = (EditText)findViewById(R.id.inputContent);
Toast.makeText(getApplicationContext(), "Some String", Toast.LENGTH_SHORT).show();
}
public void cmdProcess(View v)
{
Map<String, Object> conditionalMap = new HashMap<>();
Map<String, Object> map = new HashMap<String, Object>();
map.put(root.push().getKey(),
new Note(mInputTitle.getText().toString(),mInputContent.getText().toString()));
if (TestLab1 == null)
{
conditionalMap.put("TestLab1", map);
root.updateChildren(conditionalMap);
}
else
{
TestLab1.updateChildren(map);
}
}
@Override
protected void onStart()
{
super.onStart();
root.addValueEventListener(new ValueEventListener()
{
@Override
public void onDataChange(DataSnapshot dataSnapshot)
{
if (!dataSnapshot.hasChild("TestLab1"))
{
TestLab1 = null;
}
else if (dataSnapshot.hasChild("TestLab1"))
{
TestLab1 = dataSnapshot.child("TestLab1").getRef();
}
}
@Override
public void onCancelled(DatabaseError databaseError)
{
}
});
}
}
屏幕截图证据:
最佳答案
我看到您正在使用android studio。
有时会发生这个奇怪的问题,一个干净的项目会为我解决问题。
如果您确定自己的代码正确无误,这似乎是一个IDE问题,请尝试清理项目和无效的IDE缓存。
关于java - 突然缺少getApplicationContext(),getApplication(),this.getApplicationContext(),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43404214/