(已编辑代码到测试应用程序)
首先,我很抱歉我的英语不好。
我尝试使用Method“eurozweichange”将图片“euroeins”更改为“eurozwei”。 图片在main_activity.xml id = iveuro上 在optionspage.xml上更改的按钮id = imageButton8
现在我的问题:我的问题是用“方法”“更改”“ImageView”的“源文件”。
我目前在API 19上编码,这是由于我的Internet连接速度慢。 (只有API 19)。
LogCat用不同的文本表示20多个“AndroidRuntime”错误。当我点击按钮“imageButton8”并且消息“不幸的是,TestApp已停止”时,应用程序退出。 (在底部添加了LogCat)
我尝试了这个论坛中的每个代码以及big-g上每个页面上的几乎所有代码。但即使得到同样的错误。
我的源文件位于/ res / drawale-hdpi
想要改变的图片 xml“activity_main”:
<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"
android:background="@drawable/background"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.testproject.MainActivity" >
<ImageButton
android:id="@+id/ibbuttonoptions"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:adjustViewBounds="false"
android:src="@drawable/optionsbutton"
android:onClick="button" />
<ImageView
android:id="@+id/iveuro"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="50dp"
android:src="@drawable/euroeins" />
</RelativeLayout>
第二个xml布局“optionspage”:
<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"
android:background="@drawable/background"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.testproject.MainActivity" >
<ImageButton
android:id="@+id/imageButton8"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="150dp"
android:onClick="eurozweichange"
android:src="@drawable/eurozweismall" />
</RelativeLayout>
主要课程 “MainActivity.java”
package com.example.testproject;
import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.ImageView;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, 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 button (View view)
{
setContentView(R.layout.optionspage);
}
public void backtomain (View view)
{
setContentView(R.layout.activity_main);
}
public void eurozweichange (View view)
{
ImageView picturetochange = (ImageView) findViewById(R.id.iveuro);
picturetochange.setImageResource(R.drawable.eurozwei);
}
}
我还尝试了Bitmap和BitmapFactory.decodeResource。()以及几乎所有的stackoverflow;)相同。
你需要知道的其他事情吗?
迎接wetfoxx
日志在这里: 03-04 03:04:52.296:W / dalvikvm(1481):threadid = 1:线程退出未捕获异常(组= 0xb0568ba8) 03-04 03:04:52.336:E / AndroidRuntime(1481):致命异常:主要 03-04 03:04:52.336:E / AndroidRuntime(1481):进程:com.example.testproject,PID:1481 03-04 03:04:52.336:E / AndroidRuntime(1481):java.lang.IllegalStateException:无法执行活动的方法 03-04 03:04:52.336:E / AndroidRuntime(1481):在android.view.View $ 1.onClick(View.java:3823) 03-04 03:04:52.336:E / AndroidRuntime(1481):在android.view.View.performClick(View.java:4438) 03-04 03:04:52.336:E / AndroidRuntime(1481):在android.view.View $ PerformClick.run(View.java:18422) 03-04 03:04:52.336:E / AndroidRuntime(1481):在android.os.Handler.handleCallback(Handler.java:733) 03-04 03:04:52.336:E / AndroidRuntime(1481):在android.os.Handler.dispatchMessage(Handler.java:95) 03-04 03:04:52.336:E / AndroidRuntime(1481):在android.os.Looper.loop(Looper.java:136) 03-04 03:04:52.336:E / AndroidRuntime(1481):在android.app.ActivityThread.main(ActivityThread.java:5017) 03-04 03:04:52.336:E / AndroidRuntime(1481):at java.lang.reflect.Method.invokeNative(Native Method) 03-04 03:04:52.336:E / AndroidRuntime(1481):at java.lang.reflect.Method.invoke(Method.java:515) 03-04 03:04:52.336:E / AndroidRuntime(1481):at com.android.internal.os.ZygoteInit $ MethodAndArgsCaller.run(ZygoteInit.java:779) 03-04 03:04:52.336:E / AndroidRuntime(1481):at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:595) 03-04 03:04:52.336:E / AndroidRuntime(1481):at dalvik.system.NativeStart.main(Native Method) 03-04 03:04:52.336:E / AndroidRuntime(1481):引起:java.lang.reflect.InvocationTargetException 03-04 03:04:52.336:E / AndroidRuntime(1481):at java.lang.reflect.Method.invokeNative(Native Method) 03-04 03:04:52.336:E / AndroidRuntime(1481):at java.lang.reflect.Method.invoke(Method.java:515) 03-04 03:04:52.336:E / AndroidRuntime(1481):在android.view.View $ 1.onClick(View.java:3818) 03-04 03:04:52.336:E / AndroidRuntime(1481):... 11更多 03-04 03:04:52.336:E / AndroidRuntime(1481):引起:java.lang.NullPointerException 03-04 03:04:52.336:E / AndroidRuntime(1481):at com.example.testproject.MainActivity.eurozweichange(MainActivity.java:62) 03-04 03:04:52.336:E / AndroidRuntime(1481):... 14更多
答案 0 :(得分:0)
正确检查您的代码是否已编写android:onClick="changepic"
,但您的方法名称为eurozweichange(View view)
。保持两个名字相同。
编辑你的ImageButtom
<ImageButton
android:id="@+id/imageButton8"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/imageButton4"
android:layout_alignTop="@+id/imageButton7"
android:src="@drawable/pictwosmall"
android:onClick="eurozweichange" />
或更改方法名称
public void changepic (View view) {
ImageView picturetochange= (ImageView) findViewById(R.id.mainpic);
picturetochange.setImageResource(R.drawable.pictwo);
}
我希望这会对你有所帮助。
答案 1 :(得分:0)
主要问题在于clickLisner,我认为你正在使用Fragment所以请从xml文件中删除OnClick,你正在设置图像正确的方式 只需将clickLisner更改为
即可 ImageButton button = (ImageButton) view.findViewById(R.id.imageButton8);
tvregister1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
eurozweichange(view);
}
});
答案 2 :(得分:0)
我找到了解决方案......
方法必须是:
public void eurozweichange (View view)
{
setContentView(R.layout.activity_main); //this was missing
//i think it wont work because layout with ID was not loaded.
ImageView picturetochange= (ImageView) findViewById(R.id.iveuro);
picturetochange.setImageResource(R.drawable.eurozwei);
}