- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在研究这个网站上的教程 http://www.youtube.com/watch?v=jSyy5TrUD5Q
我似乎在为讲师工作,但一旦我在模拟器上运行它,它就会说
很遗憾,AndroidTest 已停止。
主要 Activity XML
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="@string/hello_world" />
<Button
android:id="@+id/buttonTEST1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:text="Button" />
<EditText
android:id="@+id/editTextTEST1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/textView1"
android:layout_alignParentLeft="true"
android:layout_marginBottom="72dp"
android:ems="10" />
</RelativeLayout>
主要 Activity .java
package com.example.androidtest;
import android.os.Bundle;
import android.app.Activity;
import android.content.DialogInterface;
import android.content.DialogInterface.OnClickListener;
import android.content.Intent;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
public class MainActivity extends Activity implements OnClickListener {
Button button1;
EditText editText1;
@Override
protected void onCreate(Bundle savedInstanceState) {
setContentView(R.layout.activity_main);
super.onCreate(savedInstanceState);
button1= (Button) findViewById(R.id.buttonTEST1);
editText1= (EditText) findViewById(R.id.editTextTEST1);
button1.setOnClickListener((android.view.View.OnClickListener)this);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}
public void onClick(View v) {
if(v.getId() == R.id.buttonTEST1)
{
// Switching from screen to screen
startActivity(new Intent(this, AndroidActivity2.class));
editText1.setText("Button Tester Works");
}
}
@Override
public void onClick(DialogInterface arg0, int arg1) {
// TODO Auto-generated method stub
}
}
LogCat
01-21 20:06:51.753: W/Trace(764): Unexpected value from nativeGetEnabledTags: 0
01-21 20:06:51.763: W/Trace(764): Unexpected value from nativeGetEnabledTags: 0
01-21 20:06:51.763: W/Trace(764): Unexpected value from nativeGetEnabledTags: 0
01-21 20:06:52.015: W/Trace(764): Unexpected value from nativeGetEnabledTags: 0
01-21 20:06:52.015: W/Trace(764): Unexpected value from nativeGetEnabledTags: 0
01-21 20:06:52.482: D/AndroidRuntime(764): Shutting down VM
01-21 20:06:52.482: W/dalvikvm(764): threadid=1: thread exiting with uncaught exception (group=0x40a70930)
01-21 20:06:52.503: E/AndroidRuntime(764): FATAL EXCEPTION: main
01-21 20:06:52.503: E/AndroidRuntime(764): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.androidtest/com.example.androidtest.MainActivity}: java.lang.ClassCastException: com.example.androidtest.MainActivity cannot be cast to android.view.View$OnClickListener
01-21 20:06:52.503: E/AndroidRuntime(764): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2180)
01-21 20:06:52.503: E/AndroidRuntime(764): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2230)
01-21 20:06:52.503: E/AndroidRuntime(764): at android.app.ActivityThread.access$600(ActivityThread.java:141)
01-21 20:06:52.503: E/AndroidRuntime(764): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1234)
01-21 20:06:52.503: E/AndroidRuntime(764): at android.os.Handler.dispatchMessage(Handler.java:99)
01-21 20:06:52.503: E/AndroidRuntime(764): at android.os.Looper.loop(Looper.java:137)
01-21 20:06:52.503: E/AndroidRuntime(764): at android.app.ActivityThread.main(ActivityThread.java:5039)
01-21 20:06:52.503: E/AndroidRuntime(764): at java.lang.reflect.Method.invokeNative(Native Method)
01-21 20:06:52.503: E/AndroidRuntime(764): at java.lang.reflect.Method.invoke(Method.java:511)
01-21 20:06:52.503: E/AndroidRuntime(764): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)
01-21 20:06:52.503: E/AndroidRuntime(764): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560)
01-21 20:06:52.503: E/AndroidRuntime(764): at dalvik.system.NativeStart.main(Native Method)
01-21 20:06:52.503: E/AndroidRuntime(764): Caused by: java.lang.ClassCastException: com.example.androidtest.MainActivity cannot be cast to android.view.View$OnClickListener
01-21 20:06:52.503: E/AndroidRuntime(764): at com.example.androidtest.MainActivity.onCreate(MainActivity.java:24)
01-21 20:06:52.503: E/AndroidRuntime(764): at android.app.Activity.performCreate(Activity.java:5104)
01-21 20:06:52.503: E/AndroidRuntime(764): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1080)
01-21 20:06:52.503: E/AndroidRuntime(764): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2144)
01-21 20:06:52.503: E/AndroidRuntime(764): ... 11 more
最佳答案
更改您的 Activity 代码,因为您需要在 Activity 中实现 View.OnClickListener
以便为 Button 添加 setOnClickListener
public class MainActivity extends Activity implements View.OnClickListener {
Button button1;
EditText editText1;
@Override
protected void onCreate(Bundle savedInstanceState) {
setContentView(R.layout.activity_main);
super.onCreate(savedInstanceState);
button1= (Button) findViewById(R.id.buttonTEST1);
editText1= (EditText) findViewById(R.id.editTextTEST1);
button1.setOnClickListener(this);
}
//your code here
关于java - 不幸的是,AndroidTest 已经停止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14446619/
一段时间以来,我一直在做这个反复出现的噩梦(阅读 - 我的应用程序中的错误)。出于某种原因,某个计时器在我停止后继续发送“Elapsed”事件,即使 在事件本身 计时器“承认”已被禁用!检查一下: /
为了找到 2 个 git 分支的共同祖先,需要做的是: git merge-base branch another_branch 好的。但是……如果两个分支都已经 merge 了怎么办?当我在这种情况
关闭。这个问题是opinion-based .它目前不接受答案。 想改进这个问题?更新问题,以便 editing this post 可以用事实和引用来回答它. 1年前关闭。 Improve this
我想要一个相机 View ,可以将图像捕获到本地文件或让用户从本地照片库中选择图像。我想也许有人为此编写了很好的库/代码。也许我可以利用它。已经有好的了吗?谢谢。我只是避免重新发明轮子:) 最佳答案
我从 master 分支创建了一个功能分支。之后有来自功能分支的提交 [F1]。 [F1] -- Feature Branch / [M1]-[M2
我喜欢使用 .NET 进行编程,尤其是 C# 3.0、.NET 3.5 和 WPF。但我特别喜欢的是 Mono .NET 确实与平台无关。 现在我听说了 Mono 中的 Olive 项目。我找不到某种
介绍和搜索 所以我认为我犯了一个严重的错误,我很担心。我已经分析了独立负责人的论坛,我已经接近找到答案,但场景太具体,不适用于我所在的位置。如果您找到可以回答我的问题的特定主题,请链接我。 例如:Ho
我有一个类似于下图的提交图。标记为 * 的提交表示大量提交。 A* | B--------- | | C* D* master 和 cor
我喜欢使用 .NET 进行编程,尤其是 C# 3.0、.NET 3.5 和 WPF。但我特别喜欢的是 Mono .NET 确实与平台无关。 现在我听说了 Mono 中的 Olive 项目。我找不到某种
我们最近接手了一个 .NET 项目,在查看 db 后,我们在某些列中有以下内容: 1)某些列具有诸如" & etc etc 2) 有些有 标签和其他非 html 编码的标签 这些数据
你好,当我导航到应用程序中的另一个页面时出现此错误 我不知道为什么这个错误出现 #0 _AsyncCompleter.complete (dart:async/future_impl.da
我使用以下 C 算法计算数据的 CRC32: #define CRC32_POLYNOM_REVERSED 0xEDB88320 uint32 calcCrc32(uint8* buffer, u
我试图在我的一个测试中断言模型中的字段没有改变。我知道从哲学上这是不正确的,但由于我控制了我需要知道的所有变量,所以我只想检查我的数据库条目是否没有改变。 我愿意接受一个解决方案,该解决方案可以将其转
我是 GitHub 的新手。并通过 Eclipse 使用它我们是两个人在开发一个应用程序。当我在 Git shell 中检查 git status 时,我得到以下状态。 On branch maste
简单代码: std::ifstream file("file.txt"); std::string line; while(getline(file,line)) ; //exhaust file
是的,我又找不到这个 Gradle DSL 方法:'compile()' 问题。 我检查了我有: buildscript { repositories { jcenter()
HTML: articles CSS: #main_menu { float: left; padding-top: 10px; vertical-align: m
我是一名优秀的程序员,十分优秀!