我一直在搜索论坛,但似乎我是唯一一个遇到此问题的人。我使用java文件创建了一个带有按钮的简单布局。但是,当我运行它时,出现错误“应用程序已停止。”当我在xml文件中创建按钮时,它工作正常。所有内容均已导入,因为我没有遇到任何错误。这是代码:

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);



        RelativeLayout r=new RelativeLayout(this);

        Button b=new Button(this);
        r.setBackgroundColor(Color.BLACK);
        b.setText("KEK");
        r.addView(b);



        setContentView(r);




        Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);

        FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
        fab.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
                        .setAction("Action", null).show();
            }
        });
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.menu_main, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();

        //noinspection SimplifiableIfStatement
        if (id == R.id.action_settings) {
            return true;
        }

        return super.onOptionsItemSelected(item);
    }
}

最佳答案

问题是这样的

    RelativeLayout r=new RelativeLayout(this);

    Button b=new Button(this);
    r.setBackgroundColor(Color.BLACK);
    b.setText("KEK");
    r.addView(b);


您应该为xml file声明一个setContentView(),否则您将无法调用findViewById()

编辑

假设我发现了一些问题。

如果您这样做setContentView(r);

您应为Id's上的每个view声明r

如果要使用r作为View,则必须添加Toolbar,因为您要尝试findViewById(),并且在r中没有Toolbar,并且与。

注意:如果要使用FloatingActionButton,请添加要使用的所有视图,否则它将始终崩溃。

09-16 00:44