- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
首先我要说我是一个完全的新手,这是我的第一个项目,我已经尝试到处搜索来回答我的问题。
我在 android 上设置了登录屏幕。一旦用户点击登录按钮并且登录名/密码正确(在 PHP/SQL 中验证),它就会发送一个 Intent/包到下一个 Activity 。
这是发送 Intent/bundle 的代码:
Intent intent = new Intent(this, Homepage.class);
EditText uname2 = (EditText)findViewById(R.id.txt_username);
String username2 = uname2.getText().toString();
Intent intent2 = new Intent(this, Homepage.class);
intent2.putExtra("username2", username2);
startActivity(intent);
这是在下一个 Activity 中接收Intent bundle 的代码:
Intent intent2 = getIntent();
String usernamefromlogin = intent2.getExtras().getString("username2");
String url5 = url.concat(usernamefromlogin);
TextView text = (TextView) findViewById(R.id.errorchecking);
text.setText(url5);
我正在使用 concat() 在Intent bundle 之前放置一个 URL,因为该 URL 将用作 PHP 文件的 _GET 命令(但我离题了)。目前,我将其设置为将文本放入 TextView 中,以便我可以看到最终结果是什么,但应用程序在我到达那一点之前就崩溃了。
当我点击登录按钮时,我的应用程序崩溃了。这是我得到的 Logcat:
11-30 20:06:39.449: E/AndroidRuntime(4578): FATAL EXCEPTION: main
11-30 20:06:39.449: E/AndroidRuntime(4578): Process: com.sencide, PID: 4578
11-30 20:06:39.449: E/AndroidRuntime(4578): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.sencide/com.sencide.Homepage}: java.lang.NullPointerException
11-30 20:06:39.449: E/AndroidRuntime(4578): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2176)
11-30 20:06:39.449: E/AndroidRuntime(4578): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2226)
11-30 20:06:39.449: E/AndroidRuntime(4578): at android.app.ActivityThread.access$700(ActivityThread.java:135)
11-30 20:06:39.449: E/AndroidRuntime(4578): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1397)
11-30 20:06:39.449: E/AndroidRuntime(4578): at android.os.Handler.dispatchMessage(Handler.java:102)
11-30 20:06:39.449: E/AndroidRuntime(4578): at android.os.Looper.loop(Looper.java:137)
11-30 20:06:39.449: E/AndroidRuntime(4578): at android.app.ActivityThread.main(ActivityThread.java:4998)
11-30 20:06:39.449: E/AndroidRuntime(4578): at java.lang.reflect.Method.invokeNative(Native Method)
11-30 20:06:39.449: E/AndroidRuntime(4578): at java.lang.reflect.Method.invoke(Method.java:515)
11-30 20:06:39.449: E/AndroidRuntime(4578): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:777)
11-30 20:06:39.449: E/AndroidRuntime(4578): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:593)
11-30 20:06:39.449: E/AndroidRuntime(4578): at dalvik.system.NativeStart.main(Native Method)
11-30 20:06:39.449: E/AndroidRuntime(4578): Caused by: java.lang.NullPointerException
11-30 20:06:39.449: E/AndroidRuntime(4578): at com.sencide.Homepage.onCreate(Homepage.java:46)
11-30 20:06:39.449: E/AndroidRuntime(4578): at android.app.Activity.performCreate(Activity.java:5243)
11-30 20:06:39.449: E/AndroidRuntime(4578): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1087)
11-30 20:06:39.449: E/AndroidRuntime(4578): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2140)
11-30 20:06:39.449: E/AndroidRuntime(4578): ... 11 more
11-30 20:06:42.569: I/Process(4578): Sending signal. PID: 4578 SIG: 9
这是我的全部代码:
Android登录.java
public class AndroidLogin extends Activity implements OnClickListener {
Button ok,back,exit;
TextView result;
String thisisausername;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
// Login button clicked
ok = (Button)findViewById(R.id.btn_login);
ok.setOnClickListener(this);
result = (TextView)findViewById(R.id.tbl_result);
}
public void postLoginData() {
// Create a new HttpClient and Post Header
HttpClient httpclient = new DefaultHttpClient();
// login.php returns true if username and password match in db
HttpPost httppost = new HttpPost("http://10.0.2.2/login.php");
try {
// Add user name and password
EditText uname = (EditText)findViewById(R.id.txt_username);
String username = uname.getText().toString();
EditText pword = (EditText)findViewById(R.id.txt_password);
String password = pword.getText().toString();
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
nameValuePairs.add(new BasicNameValuePair("username", username));
nameValuePairs.add(new BasicNameValuePair("password", password));
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
// Execute HTTP Post Request
Log.w("SENCIDE", "Execute HTTP Post Request");
HttpResponse response = httpclient.execute(httppost);
String str = inputStreamToString(response.getEntity().getContent()).toString();
Log.w("SENCIDE", str);
if(str.toString().equalsIgnoreCase("true"))
{
Log.w("SENCIDE", "TRUE");
result.setText("Login Successful! Please Wait...");
}else
{
Log.w("SENCIDE", "FALSE");
result.setText(str);
}
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
private StringBuilder inputStreamToString(InputStream is) {
String line = "";
StringBuilder total = new StringBuilder();
// Wrap a BufferedReader around the InputStream
BufferedReader rd = new BufferedReader(new InputStreamReader(is));
// Read response until the end
try {
while ((line = rd.readLine()) != null) {
total.append(line);
}
} catch (IOException e) {
e.printStackTrace();
}
// Return full string
return total;
}
public void RegisterButton(View view) {
String url = "http://10.0.2.2/register.php";
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);
}
@Override
public void onClick(View view) {
postLoginData();
// turns the text in the textview "Tbl_result" into a text string called "tblresult"
TextView tblresult = (TextView) findViewById(R.id.tbl_result);
// If "tblresult" text string matches the string "Login Successful! Please Wait..." exactly, it will switch to next activity
if (tblresult.getText().toString().equals("Login Successful! Please Wait...")) {
Intent intent = new Intent(this, Homepage.class);
EditText uname2 = (EditText)findViewById(R.id.txt_username);
String username2 = uname2.getText().toString();
intent.putExtra("username2", username2);
startActivity(intent);
}
}
}
首页.Java
public class Homepage extends Activity {
//URL to get JSON Arrays
public static String url = "http://x.x.x.x/SQL.php?username=123";
//JSON Node Names
private static final String TAG_USER = "users";
private static final String TAG_ID = "uid";
private static final String TAG_NAME = "fullname";
private static final String TAG_DISPLAY = "displayname";
private static final String TAG_EMAIL = "email";
private static final String TAG_PW = "password";
private static final String TAG_CREATED = "created_at";
private static final String TAG_UPDATED = "updated_at";
JSONArray user = null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//Get login name from EditText in login screen and concatenate it to PHP user-name for _GET
Intent intent2 = getIntent();
String usernamefromlogin = intent2.getExtras().getString("username2");
String url5 = url.concat(usernamefromlogin);
TextView text = (TextView) findViewById(R.id.errorchecking);
text.setText(url5);
setContentView(R.layout.reshomepage);
// Creating new JSON Parser
JSONParser jParser = new JSONParser();
// Getting JSON from URL
JSONObject json = jParser.getJSONFromUrl(url);
try {
// Getting JSON Array
user = json.getJSONArray(TAG_USER);
JSONObject c = user.getJSONObject(0);
// Storing JSON item in a Variable
String uid = c.getString(TAG_ID);
String name = c.getString(TAG_NAME);
String display = c.getString(TAG_DISPLAY);
String email = c.getString(TAG_EMAIL);
String pw = c.getString(TAG_PW);
String created = c.getString(TAG_CREATED);
String updated = c.getString(TAG_UPDATED);
//Importing TextView
final TextView uid1 = (TextView)findViewById(R.id.tvuid);
final TextView name1 = (TextView)findViewById(R.id.tvfullname);
final TextView display1 = (TextView)findViewById(R.id.tvdisplayname);
final TextView email1 = (TextView)findViewById(R.id.tvemail);
final TextView pw1 = (TextView)findViewById(R.id.tvpassword);
final TextView created1 = (TextView)findViewById(R.id.tvcreated_at);
final TextView updated1 = (TextView)findViewById(R.id.tvupdated_at);
//Set JSON Data in TextView
uid1.setText(uid);
name1.setText(name);
display1.setText(display);
email1.setText(email);
pw1.setText(pw);
created1.setText(created);
updated1.setText(updated);
} catch (JSONException e) {
e.printStackTrace();
}
}
}
JSONParser.java
public class JSONParser {
static InputStream is = null;
static JSONObject jObj = null;
static String json = "";
// constructor
public JSONParser() {
}
public JSONObject getJSONFromUrl(String url) {
// Making HTTP request
try {
// defaultHttpClient
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(url);
HttpResponse httpResponse = httpClient.execute(httpPost);
HttpEntity httpEntity = httpResponse.getEntity();
is = httpEntity.getContent();
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
try {
BufferedReader reader = new BufferedReader(new InputStreamReader(
is, "iso-8859-1"), 8);
StringBuilder sb = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null) {
sb.append(line + "\n");
}
is.close();
json = sb.toString();
} catch (Exception e) {
Log.e("Buffer Error", "Error converting result " + e.toString());
}
// try parse the string to a JSON object
try {
jObj = new JSONObject(json);
} catch (JSONException e) {
Log.e("JSON Parser", "Error parsing data " + e.toString());
}
// return JSON String
return jObj;
}
}
Main.XML(第一个登录屏幕)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<!-- Text at Top !-->
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/lbl_top"
android:textSize="16sp"
android:typeface="sans"
android:text="Please Login"
/>
<!-- Username Text Above Field !-->
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/lbl_username"
android:text="User Name (e-mail)"
/>
<!-- Username Field !-->
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="18sp"
android:id="@+id/txt_username"
/>
<!-- Password Text Above Field !-->
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/lbl_password"
android:text="Password"
/>
<!-- Password Field !-->
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:password="true"
android:id="@+id/txt_password"
/>
<!-- Login Button !-->
<Button
android:layout_width="match_parent"
android:layout_height="35dp"
android:id="@+id/btn_login"
android:text="Login"
android:onClick="LoginScreenButton"
/>
<!-- Register Button !-->
<Button
android:layout_width="match_parent"
android:layout_height="35dp"
android:id="@+id/register"
android:text="New Registration"
android:onClick="RegisterButton"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/tbl_result"
android:textColor="#00FF00"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/tbl_result2"
android:textColor="#00FF00"
/>
</LinearLayout>
reshomepage.XML(我试图将 Intent 发送到的第二个屏幕)
<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:orientation="vertical"
>
<TextView
android:id="@+id/tvuid"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<TextView
android:id="@+id/tvfullname"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
<TextView
android:id="@+id/tvdisplayname"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<TextView
android:id="@+id/tvemail"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<TextView
android:id="@+id/tvpassword"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<TextView
android:id="@+id/tvcreated_at"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<TextView
android:id="@+id/tvupdated_at"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<TextView
android:id="@+id/errorchecking"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</LinearLayout>
最佳答案
这里的问题是您创建了 2 个 Intent (intent 和 intent2),然后将用户名保存在 intent2 中,但是正在调用 startActivity(intent)。
基本上,删除其中一个 Intent ,您的代码应如下所示:
Intent intent = new Intent(this, Homepage.class);
EditText uname2 = (EditText)findViewById(R.id.txt_username);
String username2 = uname2.getText().toString();
intent.putExtra("username2", username2);
startActivity(intent);
让我知道这是怎么回事
关于javascript - Android 应用程序在接收Intent bundle 时崩溃?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20307610/
我有一个 html 格式的表单: 我需要得到 JavaScript在value input 字段执行,但只能通过表单的 submit .原因是页面是一个模板所以我不控制它(不能有
我管理的论坛是托管软件,因此我无法访问源代码,我只能向页面添加 JavaScript 来实现我需要完成的任务。 我正在尝试用超链接替换所有页面上某些文本关键字的第一个实例。我还根据国家/地区代码对这些
我正在使用 JS 打开新页面并将 HTML 代码写入其中,但是当我尝试使用 document.write() 在新页面中编写 JS 时功能不起作用。显然,一旦看到 ,主 JS 就会关闭。用于即将打开的
提问不是为了解决问题,提问是为了更好地理解系统 专家!我知道每当你将 javascript 代码输入 javascript 引擎时,它会立即由 javascript 引擎执行。由于没有看过Engi
我在一个文件夹中有两个 javascript 文件。我想将一个变量的 javascript 文件传递到另一个。我应该使用什么程序? 最佳答案 window.postMessage用于跨文档消息。使
我有一个练习,我需要输入两个输入并检查它们是否都等于一个。 如果是 console.log 正则 console.log false 我试过这样的事情: function isPositive(fir
我正在做一个Web应用程序,计划允许其他网站(客户端)在其页面上嵌入以下javascript: 我的网络应用程序位于 http://example.org 。 我不能假设客户端网站的页面有 JQue
目前我正在使用三个外部 JS 文件。 我喜欢将所有三个 JS 文件合而为一。 尽一切可能。我创建 aio.js 并在 aio.js 中 src="https://code.jquery.com/
我有例如像这样的数组: var myArray = []; var item1 = { start: '08:00', end: '09:30' } var item2 = {
所以我正在制作一个 Chrome 扩展,它使用我制作的一些 TamperMonkey 脚本。我想要一个“主”javascript 文件,您可以在其中包含并执行其他脚本。我很擅长使用以下行将其他 jav
我有 A、B html 和 A、B javascript 文件。 并且,如何将 A JavaScript 中使用的全局变量直接移动到 B JavaScript 中? 示例 JavaScript) va
我需要将以下整个代码放入名为 activate.js 的 JavaScript 中。你能告诉我怎么做吗? var int = new int({ seconds: 30, mark
我已经为我的 .net Web 应用程序创建了母版页 EXAMPLE1.Master。他们的 I 将值存储在 JavaScript 变量中。我想在另一个 JS 文件中检索该变量。 示例1.大师:-
是否有任何库可以用来转换这样的代码: function () { var a = 1; } 像这样的代码: function () { var a = 1; } 在我的浏览器中。因为我在 Gi
我收到语法缺失 ) 错误 $(document).ready(function changeText() { var p = document.getElementById('bidp
我正在制作进度条。它有一个标签。我想调整某个脚本完成的标签。在找到可能的解决方案的一些答案后,我想出了以下脚本。第一个启动并按预期工作。然而,第二个却没有。它出什么问题了?代码如下: HTML:
这里有一个很简单的问题,我简单的头脑无法回答:为什么我在外部库中加载时,下面的匿名和onload函数没有运行?我错过了一些非常非常基本的东西。 Library.js 只有一行:console.log(
我知道 javascript 是一种客户端语言,但如果实际代码中嵌入的 javascript 代码以某种方式与在控制台上运行的代码不同,我会尝试找到答案。让我用一个例子来解释它: 我想创建一个像 Mi
我如何将这个内联 javascript 更改为 Unobtrusive JavaScript? 谢谢! 感谢您的回答,但它不起作用。我的代码是: PHP js文件 document.getElem
我正在寻找将简单的 JavaScript 对象“转储”到动态生成的 JavaScript 源代码中的最优雅的方法。 目的:假设我们有 node.js 服务器生成 HTML。我们在服务器端有一个对象x。
我是一名优秀的程序员,十分优秀!