gpt4 book ai didi

java - 在 Android Eclipse IDE 中使用 ImageButton

转载 作者:行者123 更新时间:2023-12-02 06:03:50 24 4
gpt4 key购买 nike

我正在尝试在 Eclipse IDE (ADT) 中使用 ImageButton

IDE 在编译时没有显示任何错误,但当我在模拟器中运行它时,它永远不会启动,而是显示“不幸的是,您的应用程序已停止工作”。

<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: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=".MainActivity" >

<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:contentDescription="@string/app_name"
android:src="@drawable/ic_launcher" />

和main.activity.java

public class MainActivity extends Activity {


Button button1;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
addListenerOnButton();
}

public void addListenerOnButton() {

final Context context = this;

button1 = (Button) findViewById(R.id.imageView1);

button1.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View arg0) {

Intent intent = new Intent(context, ImageActivity.class);
startActivity(intent);

}

});
}
@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;
}

}

最佳答案

 button1 = (Button) findViewById(R.id.imageView1);

Button更改为ImageView并在 xml 中将此行添加到您的 ImageView

android:clickable="true"

关于java - 在 Android Eclipse IDE 中使用 ImageButton,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22453957/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com