当前位置: 首页 > 知识库问答 >
问题:

Android Studio在活动范围内声明值时抛出错误

方光华
2023-03-14

我试图构建这个应用程序,但是Android Studio在文件上扔给我一个编译时错误,告诉我语句结构不正确。当我试图用公共修饰符声明一个方法时,第一个错误是“非法开始表达式”错误。然后,我使用的每个对象都找不到,不管对象是什么(菜单、视图、工具栏等)。

我可以在声明我的AppBarConfiguration之后很好地声明对象,但是我不能调用方法。

我曾尝试在调用onCreate之前添加私有对象并使用它们,但在将参数添加到方法的修改器之前,弯曲的红线只是移动了。

这一切都发生在我活动的onCreate方法中。我机器上的其他应用程序发现onCreate中声明的值和方法很好,可以正常构建。这是代码;


import android.content.Intent;
import android.os.Bundle;

import android.view.MenuInflater;
import android.view.View;
import android.view.Menu;
import android.widget.Button;
import com.google.android.material.navigation.NavigationView;

import androidx.appcompat.widget.PopupMenu;
import androidx.navigation.NavController;
import androidx.navigation.Navigation;
import androidx.navigation.ui.AppBarConfiguration;
import androidx.navigation.ui.NavigationUI;
import androidx.drawerlayout.widget.DrawerLayout;
import androidx.appcompat.app.AppCompatActivity;
import androidx.appcompat.widget.Toolbar;

public class MainActivity extends AppCompatActivity {
    private AppBarConfiguration mAppBarConfiguration;
   @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Toolbar toolbar = findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);
        Button sdstorage = (Button) findViewById(R.id.goSDCardBtn);
        DrawerLayout drawer = findViewById(R.id.drawer_layout);
        NavigationView navigationView = findViewById(R.id.nav_view);
        // Passing each menu ID as a set of Ids because each
        // menu should be considered as top level destinations.
        mAppBarConfiguration = new AppBarConfiguration.Builder(
                R.id.nav_home)
                .setDrawerLayout(drawer)
                .build();
        NavController navController = Navigation.findNavController(this, R.id.nav_host_fragment);
        NavigationUI.setupActionBarWithNavController(this, navController, mAppBarConfiguration);
        NavigationUI.setupWithNavController(navigationView, navController);
//this is where the errors begin.
        public void onPop3 (View view){ //illegal start of expression on the blank space right before the View is passed to the method and the view object cannot be found
            PopupMenu popThree = new PopupMenu(this, view);
            MenuInflater inflater = popThree.getMenuInflater();
            inflater.inflate(R.menu.topmenu, popThree.getMenu());
            popThree.show();
        }

        public void goSdCard (View view){illegal start of expression on the blank space right before the View is passed to the method and the view object cannot be found
            startActivity(new Intent(MainActivity.this, DirectoryView.class));

        }

        public void goSettings (View view){ //here too
            Navigation.findNavController(view).navigate(R.id.settingsview);
        Intent intent = new Intent(this, settings.class);
            startActivity(new Intent(MainActivity.this, settings.class));

        }

        @Override // the Override annotation is throwing an error
        public boolean onCreateOptionsMenu (Menu menu){ // a semi-colon is expected before the Menu object is declared
            getMenuInflater().inflate(R.menu.main, menu); //
            return true;
        }

        @Override
        public boolean onSupportNavigateUp () { // a semi-colon is expected here before and after the parenthesis
            NavController navController = Navigation.findNavController(this, R.id.nav_host_fragment);
            return NavigationUI.navigateUp(navController, mAppBarConfiguration)
                    || super.onSupportNavigateUp();// everything after the return statement is throwing an error
        }

    } // this curly brace should signal the end of the onCreate method
}

共有1个答案

牛景同
2023-03-14

试试这个,让我们知道它是否有效:

java prettyprint-override">
import android.content.Intent;
import android.os.Bundle;

import android.view.MenuInflater;
import android.view.View;
import android.view.Menu;
import android.widget.Button;
import com.google.android.material.navigation.NavigationView;

import androidx.appcompat.widget.PopupMenu;
import androidx.navigation.NavController;
import androidx.navigation.Navigation;
import androidx.navigation.ui.AppBarConfiguration;
import androidx.navigation.ui.NavigationUI;
import androidx.drawerlayout.widget.DrawerLayout;
import androidx.appcompat.app.AppCompatActivity;
import androidx.appcompat.widget.Toolbar;

public class MainActivity extends AppCompatActivity {

    private AppBarConfiguration mAppBarConfiguration;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Toolbar toolbar = findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);
        Button sdstorage = (Button) findViewById(R.id.goSDCardBtn);
        DrawerLayout drawer = findViewById(R.id.drawer_layout);
        NavigationView navigationView = findViewById(R.id.nav_view);
        // Passing each menu ID as a set of Ids because each
        // menu should be considered as top level destinations.
        mAppBarConfiguration = new AppBarConfiguration.Builder(
                R.id.nav_home)
                .setDrawerLayout(drawer)
                .build();
        NavController navController = Navigation.findNavController(this, R.id.nav_host_fragment);
        NavigationUI.setupActionBarWithNavController(this, navController, mAppBarConfiguration);
        NavigationUI.setupWithNavController(navigationView, navController);
    }

    //this is where the errors begin.
    public void onPop3(View view) { //illegal start of expression on the blank space right before the View is passed to the method and the view object cannot be found
        PopupMenu popThree = new PopupMenu(this, view);
        MenuInflater inflater = popThree.getMenuInflater();
        inflater.inflate(R.menu.topmenu, popThree.getMenu());
        popThree.show();
    }

    public void goSdCard(View view) {
        illegal start of expression on the blank space right before the View is passed to the method and the view object cannot be found
        startActivity(new Intent(MainActivity.this, DirectoryView.class));

    }

    public void goSettings(View view) { //here too
        Navigation.findNavController(view).navigate(R.id.settingsview);
        Intent intent = new Intent(this, settings.class);
        startActivity(new Intent(MainActivity.this, settings.class));

    }

    @Override // the Override annotation is throwing an error
    public boolean onCreateOptionsMenu(Menu menu) { // a semi-colon is expected before the Menu object is declared
        getMenuInflater().inflate(R.menu.main, menu); //
        return true;
    }

    @Override
    public boolean onSupportNavigateUp() { // a semi-colon is expected here before and after the parenthesis
        NavController navController = Navigation.findNavController(this, R.id.nav_host_fragment);
        return NavigationUI.navigateUp(navController, mAppBarConfiguration)
                || super.onSupportNavigateUp();
    }

} // this curly brace should signal the end of the onCreate method

我已经关闭了这个方法并删除了三个反勾号,它可能不在您实际的源代码中,但出现在上面。

 类似资料:
  • 问题内容: ja块变量还是局部变量?我看到j的作用域只是直到for循环结束 问题答案: 局部变量在方法,构造函数或块中声明。 由此可见, 所有块变量都是局部变量。 按照块的定义 块是平衡括号之间的一组零个或多个语句,可以在允许单个语句的任何地方使用。 所以 无论在块内声明什么变量,范围都限于该块。 因此范围仅限于该块内部。那是循环。

  • 问题内容: 我有一个class + extension swift文件。将我在另一个文件中声明的委托添加到类之后,Xcode在扩展行显示“声明仅在文件范围内有效”。我不知道问题是什么。 谁能帮我修复它? 问题答案: 该错误在您的某个位置上-该错误意味着您的类没有被关闭,因此该扩展被解释为嵌套在其中,如下所示: 找到缺少的右括号,您应该解决问题。

  • 我使用柏林噪声生成2D高度图。起初,我手动尝试了一些参数,并为我的工作找到了振幅、持久性...的良好组合。 现在我正在开发该程序,我为用户添加了更改贴图参数并为自己制作新贴图的功能,但现在我发现某些参数(主要是倍频程和频率)的值不在我以前看到的范围内。我认为,如果设定的振幅=20,我从中得到的值(高度)将在[0,20]或[-10,10]或[-20,20]范围内,但现在我看到振幅不是控制输出范围的唯

  • 主要内容:throws 声明异常,throw 拋出异常Java 中的异常处理除了捕获异常和处理异常之外,还包括声明异常和拋出异常。实现声明和抛出异常的关键字非常相似,它们是 throws 和 throw。 可以通过 throws 关键字在方法上声明该方法要拋出的异常,然后 在方法内部通过 throw 拋出异常对象。本节详细介绍在 Java 中如何声明异常和拋出异常。 throws 声明异常 当一个方法产生一个它不处理的异常时,那么就需要在该方法的头部

  • 本文向大家介绍C#标准活动声明,包括了C#标准活动声明的使用技巧和注意事项,需要的朋友参考一下 示例 事件声明: 事件处理程序声明: 订阅活动: 动态地: 通过设计师: 单击控件的属性窗口上的“事件”按钮(闪电) 双击事件名称: Visual Studio将生成事件代码: 调用方法:            

  • 我正在研究一些相干噪声的各种实现(我知道有库,但这主要是为了我自己的启发和好奇心)以及如何使用它,我对最初的Perlin噪声有一个问题。 根据这个经常链接的数学常见问题,输出范围将介于-1和1之间,但我不明白该值是如何在该范围内的。 据我所知,算法基本上是这样的:每个网格点都有一个相关的长度为1的随机梯度向量。然后,对于每个点,对于所有四个周围的网格点,计算随机梯度和从该网格点出发的向量的点积。然