package com.google.mcommerce.sample.android.chapter04.button; import android.app.Activity; import android.os.Bundle; import com.google.mcommerce.sample.android.R; public class ButtonActivity extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.c04_buttons); } }