ボタン表示はできたけど、ボタンクリック処理がうごかない
ボタン表示はできたけど、ボタンクリック処理がうごかないよ><
public class Sample extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); Button button1 = (Button)findViewById(R.id.button1); button1.setOnClickListener(new OnClickListener(){ public void onClick(View v) { } }); } }
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > <Button id="@+id/button1" android:text="button1" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </LinearLayout>
バグでした
http://groups.google.com/group/android-developers/browse_thread/thread/92ea776cfd42aa45
outofmemoryが発生してるみたいだよ。
try catch で囲めばとりあえず動くので、しばらく様子見。
protected void onCreate(Bundle savedInstanceState) { try{ super.onCreate(savedInstanceState); setContentView(R.layout.main); final Button button1 = (Button)findViewById(R.id.button1); button1.setOnClickListener(new View.OnClickListener(){ @Override public void onClick(View v) { Button button = (Button)v; Log.v("Test", String.valueOf(button.getText())); } }); }catch(Exception e){ e.printStackTrace(); } }