gpt4 book ai didi

java - 突然缺少 getApplicationContext()、getApplication()、this.getApplicationContext()

转载 作者:行者123 更新时间:2023-11-30 00:36:04 24 4
gpt4 key购买 nike

我确定我昨晚没有做任何奇怪或错误的事情。昨晚,我仍然能够 Toast.makeText(getApplicationContext(), "Some String", Toast.LENGTH_SHORT);

但是今天早上,当我尝试再次调试它以确保应用程序仍然像上次测试一样工作时,它显示了一个错误。 “无法解决...”。

当我检查我的 MainActivity.java 代码时,getApplicationContext() 是红色文本。 (我使用的是 Material 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)
{

}
});
}
}

截图证据: Cannot resolve method ScreenShot Evidence

最佳答案

我看到你用的是android studio。有时会发生这种奇怪的问题,一个项目清理为我解决了这个问题。

如果您确定您的代码是正确的,这似乎是一个 IDE 问题,请尝试清理项目和无效的 IDE 缓存。

关于java - 突然缺少 getApplicationContext()、getApplication()、this.getApplicationContext(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43404214/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com