在Android工作室中没有错误,应用程序仍然在打开时崩溃

问题描述 投票:0回答:3

所以我对Android工作室非常陌生。我通常只是观看教程,然后继续学习一切,看看一切是如何运作的。我正在尝试使用collapsilbe工具栏跟踪卡片视图/回收站视图的教程,并在完成代码后(几乎与视频中显示的人一样),应用程序仍然无法运行。我唯一改变的是图标,几个drawable和一些值(我在代码中编辑了它)。

这是我遵循的源代码的帖子:https://github.com/delaroy/AndroidCardView?files=1

正如我所说,没有任何错误或任何错误。但是当我运行应用程序时,它会立即崩溃。

这也是我的第一篇文章,所以如果需要任何其他信息,请告诉我。

正如我所说,我只更改了图片和变量的几个名称等。此外,所有改变的东西都是固定在价值等等。

我在手机上运行了其他应用程序,没有任何问题。

不确定这是电话问题还是什么问题。

我正在使用运行Android 5.0的Note 3。

android crash
3个回答
0
投票

您必须检查日志以查看导致崩溃的异常是什么。在日志(IDE的下半部分)中,将有Exception的名称,启动它的元素以及将找到问题的代码行的链接。

如果仍然无法以这种方式找到错误,则可以在调试期间应用程序停止的代码行左侧设置断点,然后在调试模式下运行应用程序以确切了解发生的情况。

另一个提示:通常,当我确定我的代码的正确性并且它运行但崩溃时,它是关于在清单(或所有服务)中声明所有活动并设置所有必需的权限。因为在这种情况下,在运行应用程序之前没有明显的错误。让我们知道!


0
投票

好吧,它可能是关于工具栏,让我们看看它是如何工作的。

在android中使用widget工具栏而不是actionbar更好,因为......

要做到这一点,你必须在Gradle(module:app)中添加(如果没有)appcompat v7库,就像这样:

dependecies {  compile 'com.android.support:appcompat-v7:+'  }

要删除操作栏并插入工具栏,您必须:

 1. remove actionbar from manifest setting a no actionbar style:
     <application
          android:theme="@style/Theme.AppCompact.Light.NoActionBar"
      />

 2. insert Toolbar widget into the layout of the activity:
     <LinearLayout ...>
          ...
          <android.support.v7.widget.Toolbar
               android:id="@+id/mytoolbar"
               android:layout_width="match_parent"
               android:layout_height="?attr/actionBarSize"
               android:background="?attr/colorPrimary"
               android:elevation="8dp"
               android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
               android:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>

          </LinearLayout>

 3. insert the widget into the activity and set it as support toolbar:
      @Override
     protected void onCreate(Bundle savedInstanceState){
           super.onCreate(savedInstanceState);
           setContentView(R.layout.activity_main);
           Toolbar myToolbar = (Toolbar) findViewById(R.id.mytoolbar);
           myToolbar.setLogo(R.mipmap.ic_launcher);
           myToolbar.setTitle("Titolo");
           myToolbar.setSubtitle(R.string.sottotitolo);
           setSupportActionBar(myToolbar);
     }

 4. create a menù for the Toolbar, into res>menu
 <?xml version="1.0" encoding="utf-8"?>
 <menu xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:id="@+id/new_game"
      android:icon="@drawable/ic_new_game"
      android:title="@string/new_game"
      android:showAsAction="ifRoom"/>
    <item android:id="@+id/help"
      android:icon="@drawable/ic_help"
      android:title="@string/help"
      android:showAsAction="never"/>
    <item android:id="@+id/tutorials"
      android:icon="@drawable/ic_tuts"
      android:title="@string/tutorials"
               android:showAsAction="always"/>
     </menu>

 5. bind menù to toolbar through the two methods into the activity:


@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 item selection
    switch (item.getItemId()) {
        case R.id.new_game:
            newGame();
            return true;
        case R.id.help:
            showHelp();
            return true;
        default:
            return super.onOptionsItemSelected(item);
    }
}

0
投票

有时它是由于重复来自xml文件的ID而发生的,例如,如果你有两个xml文件,例如Main活动和Home,你都有带有my myTextview的Textview,所以一旦在你的类中使用这个(id),android studio将不计算作为错误,但是一旦你点击,应用就会在两个活动中崩溃。恩约编码。

© www.soinside.com 2019 - 2024. All rights reserved.