android中的“不幸的是,MyApp已停止”错误
Posted
技术标签:
【中文标题】android中的“不幸的是,MyApp已停止”错误【英文标题】:"Unfortunately, MyApp has stopped" error in android 【发布时间】:2016-02-18 13:12:36 【问题描述】:我正在尝试查看目录内项目的代码,但每次我单击代码来自的按钮时,应用程序都会关闭并给我一个错误消息“不幸的是,YourApp 已停止。”,我不知道为什么会这样。
这是我正在尝试的代码:
import java.io.File;
import java.util.ArrayList;
import java.util.List;
import android.os.Bundle;
import android.os.Environment;
import android.app.AlertDialog;
import android.app.ListActivity;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.TextView;
public class ViewTextFiles extends ListActivity
private List<String> item = null;
private List<String> path = null;
private String root;
private TextView myPath;
@Override
public void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.viewtextfiles);
myPath = (TextView)findViewById(R.id.path);
root = Environment.getExternalStorageDirectory().getPath();
getDir(root);
private void getDir(String dirPath)
myPath.setText("Location: " + dirPath);
item = new ArrayList<String>();
path = new ArrayList<String>();
File f = new File(dirPath);
File[] files = f.listFiles();
if(!dirPath.equals(root))
item.add(root);
path.add(root);
item.add("../");
path.add(f.getParent());
for(int i=0; i < files.length; i++)
File file = files[i];
if(!file.isHidden() && file.canRead())
path.add(file.getPath());
if(file.isDirectory())
item.add(file.getName() + "/");
else
item.add(file.getName());
ArrayAdapter<String> fileList =
new ArrayAdapter<String>(this, R.layout.row, item);
setListAdapter(fileList);
@Override
protected void onListItemClick(ListView l, View v, int position, long id)
// TODO Auto-generated method stub
File file = new File(path.get(position));
if (file.isDirectory())
if(file.canRead())
getDir(path.get(position));
else
new AlertDialog.Builder(this)
.setIcon(R.drawable.ic_launcher)
.setTitle("[" + file.getName() + "] folder can't be read!")
.setPositiveButton("OK", null).show();
else
new AlertDialog.Builder(this)
.setIcon(R.drawable.ic_launcher)
.setTitle("[" + file.getName() + "]")
.setPositiveButton("OK", null).show();
P.S 我正在真实设备中尝试代码,但没有使用 USB 电缆(我从我的设备导出我的 .apk),因为我的设备出现问题,当它无法识别我的设备时通过usb线连接,和模拟器一样,我的处理器有问题,我不知道如何解决。
【问题讨论】:
当应用程序在启动或单击 ListView 行时崩溃? 我强烈建议您暂时搁置编程并获得一个工作的开发环境。您需要能够从 LogCat 访问堆栈跟踪,这将需要您可以直接使用开发工具的设备或模拟器。 应用程序在单击上面来自的按钮时崩溃。 @prosper K 我已经尽了最大的努力来解决我的设备的此类问题,但修复它似乎对我来说很不幸。我已经尝试为我的设备搜索通用驱动程序,以便被我的设备检测到,但我没有找到任何驱动程序,因为我有一个本地品牌的设备,它的支持质量很差。我也尝试用我的模拟器解决问题,但我也未能解决它,因为我的设备没有基于我发现的英特尔处理器,这是模拟器无法工作的问题. @CommonsWare “我有一个本地品牌的设备,它的支持质量很差”——然后买一个不同的设备。我意识到这需要花钱,但很多与软件开发和分发相关的事情也是如此。 “我也试过用我的模拟器解决问题”——然后尝试不同的模拟器,比如 Genymotion。 【参考方案1】:您必须在 android 清单文件中提供此权限:
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
您的 Activity 类应如下所示:
public class MainActivity extends AppCompatActivity implements AdapterView.OnItemClickListener
TextView myPath;
private List<String> item = null;
private List<String> path = null;
private String root;
ListView list;
@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
myPath = (TextView)findViewById(R.id.txt);
list = (ListView) findViewById(R.id.listView);
list.setOnItemClickListener(this);
root = Environment.getExternalStorageDirectory().getPath();
getDir(root);
private void getDir(String dirPath)
myPath.setText("Location: " + dirPath);
item = new ArrayList<String>();
path = new ArrayList<String>();
File f = new File(dirPath);
File[] files = f.listFiles();
if(!dirPath.equals(root))
item.add(root);
path.add(root);
item.add("../");
path.add(f.getParent());
for(int i=0; i < files.length; i++)
File file = files[i];
if(!file.isHidden() && file.canRead())
path.add(file.getPath());
if(file.isDirectory())
item.add(file.getName() + "/");
else
item.add(file.getName());
ArrayAdapter<String> fileList = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, item);
setListAdapter(fileList);
private void setListAdapter(ArrayAdapter<String> adapter)
list.setAdapter(adapter);
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id)
File file = new File(path.get(position));
if (file.isDirectory())
if(file.canRead())
getDir(path.get(position));
else
new AlertDialog.Builder(this)
.setTitle("[" + file.getName() + "] folder can't be read!")
.setPositiveButton("OK", null).show();
else
new AlertDialog.Builder(this)
.setTitle("[" + file.getName() + "]")
.setPositiveButton("OK", null).show();
您的 activity_main.xml 文件应如下所示:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_
android:layout_
android:orientation="vertical">
<TextView
android:id="@+id/txt"
android:layout_
android:layout_
/>
<ListView
android:layout_
android:layout_
android:id="@+id/listView" />
</LinearLayout>
【讨论】:
我已经在我的 android 清单文件中有这个,但是当我单击代码来自的按钮时它仍然会崩溃。 我在我的设备中执行了您的代码,并且成功执行。您的列表视图或列表行可能有问题。 你的意思是布局吗? 是的。尝试使用 android.R.layout.simple_list_item_1 而不是 R.layout.row 。还要确保您的 listView 和 textview 已正确初始化。 扩展 Activity 或 AppCompatActivity 而不是 ListActivity。您正在收到 RuntimeException。实现接口 AdapterView.OnItemClickListener。以上是关于android中的“不幸的是,MyApp已停止”错误的主要内容,如果未能解决你的问题,请参考以下文章
不幸的是,MyApp 已停止 - logcat 中没有错误日志
Android NDK 开发NDK C/C++ 代码崩溃调试 - Tombstone 报错信息日志文件分析 ( 使用 addr2line 命令行工具查找动态库中的报错代码位置 )
Android NDK 开发NDK C/C++ 代码崩溃调试 - Tombstone 报错信息日志文件分析 ( 使用 addr2line 命令行工具查找动态库中的报错代码位置 )