blob: 7cd422a7f27ca426796cb8c918f2dda5d80cb6bf [file] [log] [blame]
package test.pkg;
import android.app.*;
import android.view.*;
import android.widget.*;
public class WrongCastActivity2 extends Activity {
private TextView additionalButton;
private void configureAdditionalButton(View bodyView) {
this.additionalButton = (TextView) bodyView
.findViewById(R.id.additional);
Object x = (AdapterView<?>) bodyView.findViewById(R.id.reminder_lead);
}
}