为什么我的应用程序'不幸的是,abc已停止'

时间:2014-07-26 21:21:48

标签: java android android-xml android-sharedpreferences

编辑开始

很抱歉弄乱了我的代码。你们所有人都指出了各种各样的错误,你们都是正确的。但真正发生的是我的原始代码在某种程度上是正确的。在此处发布代码之前,我更改了原始代码以检查某些内容,并且我在此处使用了已编辑的代码,忘记了我的更改,这就是您看到错误的文本视图,大写等等的原因。为此道歉。

我检查了我的代码,用另一个活动上的textview替换了按钮所在的同一活动的文本视图,并且工作正常。所以我想我的Intent开始另一个活动导致错误。这是我第一次尝试使用Intent。我使用的只是

 Intent intent=new Intent(this, ViewAccount.class);
            startActivity(intent);

但它似乎不起作用。 简而言之,我有三个活动activity1包含editText1 editText2和一个保存按钮。当保存按钮单击edtiText1中的数据和使用sharedPreferences存储的editText2时。 activity2包含一个名为show的按钮。单击按钮显示时,应打开activity3并保存其中的值。

我希望我没有让它变得更复杂。

编辑结束。


旧帖子

有人可以帮助我找出我做错了什么。我只是Java和Android编程世界的新手。我只是想创建一个示例应用程序,我将使用SharedPreferences保存和检索数据。保存部分工作正常,我还保存了一个Toast。但是,当我单击按钮检索数据时,应用程序崩溃了。请帮帮我。 保存时我使用了Name和Age作为键。

以下是我用于检索数据的java代码:

package com.xyz.abc;

import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.TextView;
import android.widget.Toast;


public class Card extends Activity{

    public static final String DEFAULT="N/A";
    TextView showsname,showage;


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_card);
        showname=(TextView)findViewById(R.id.showname);
        showage=(TextView) findViewById(R.id.showage);
    }


    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.card, 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();
        if (id == R.id.action_settings) {
            return true;
        }
        return super.onOptionsItemSelected(item);
    }

    public void ViewAC(View view) {
        SharedPreferences sharedPreferences=getSharedPreferences("data", Context.MODE_PRIVATE);
        String SName=sharedPreferences.getString("Name",DEFAULT);
        String sAge=sharedPreferences.getString("Age",DEFAULT);

        if(SName.equals(DEFAULT)|| sAge.equals(DEFAULT))
        {
            Toast.makeText(this,"There is no account exist",Toast.LENGTH_LONG).show();
        }
        else
        {
            Toast.makeText(this,"Account loaded successfully",Toast.LENGTH_LONG).show();
            showsitename.setText(sName);
            showurl.setText(sAge);
        }

        Intent intent=new Intent(this, ViewAccount.class);
        startActivity(intent);
    }
}

以下是xml代码

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin"
    tools:context="com.xyz.abc.ViewAccount"
    android:orientation="vertical">

    <TextView
        android:text="Website Name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/showname"/>

    <TextView
        android:text="URL"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/showage"/>

    </LinearLayout>

1 个答案:

答案 0 :(得分:1)

首先,您应该包含LogCat,因为它通常会为您提供错误的确切原因。

其次,我没有在您的XML中看到按钮,也没有看到&#34; onClick&#34;。你点击什么来执行代码?

现在代码。

这可能是导致崩溃的原因:

showsitename.setText(sName);
showurl.setText(sAge);

您永远不会定义名为&#34; showsitename&#34;和&#34; showurl&#34;。你有Textviews称为&#34; showsname&#34;和&#34; showage&#34;。你打算用那些吗?