我试图在android中用一个新类来做一个简单的应用程序来学习如何使用它。主要活动有:
package com.josejoaquin.testhttp;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
public class MyActivity extends ActionBarActivity {
@Override
protected void onCreate(final Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_my);
Button Boton = (Button)findViewById(R.id.button);
TextView Texto = (TextView)findViewById(R.id.textView);
Boton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
clientehttp clienteweb = null;
String total;
total = clienteweb.getWeb();
Texto.setText(total);
}
});
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.my, 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);
}
}
另一个文件名为clientehtt.java,并且有以下代码:
package com.josejoaquin.testhttp;
public class clientehttp {
public String getWeb (){
String texto ="Hola Mundo";
return texto;
}
}
最明显的文件有:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.josejoaquin.testhttp" >
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MyActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
但是当我点击applition close时,我得到并且出错了,我做错了什么?任何人都可以帮助我了解更多相关信息吗?
最诚挚的问候。
答案 0 :(得分:0)
我假设你得到NullPointerException
。
问题出在您的onClick()
方法中:
clientehttp clienteweb = null;
String total;
total = clienteweb.getWeb();
您正在将clienteweb
的值设置为null
,但是您正在尝试使用其方法clienteweb.getWeb()
而您无法做到这一点。
将您的代码更改为:
clientehttp clienteweb = new clientehttp();
String total;
total = clienteweb.getWeb();
一切都应该有效。如果您想知道到底出了什么问题,请考虑null
含义为empty
或nothing
。如果您的clienteweb
为空,那么它几乎不存在,因此您无法使用getWeb()
之类的任何方法进行调用。
所以声明:
clientehttp clienteweb = null;
松散地意味着&#34;我宣布一个clientehttp
类型的变量并将其初始化为零&#34;
一旦你实例化它(使用new
表达式),它就变成了#34;填充&#34;你可以使用它的方法。有关详细信息,您应该read up了解null
是什么以及java declares/instantiates/initializes如何反对。
此外,您应该使用Java的标准命名约定来使代码更清晰。 您应该添加的一个特定约定是使用起始大写字母命名所有类(如果您使用的是Eclipse,它可能已经警告您这样做了)
因此将类clientehttp
重命名为Clientehttp
,以便更清楚它是一个类。最简单的方法是右键单击clientehttp.java
并执行折射器/重命名,更改将应用于任何地方。