android button click event is not working for me

Issue I have an android application with relative layout where i have placed a button control like this <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=”wrap_content” > <Button android:id=”@+id/btnCalc” style=”?android:attr/buttonStyleSmall” android:layout_width=”wrap_content” android:layout_height=”wrap_content” android:layout_marginTop=”708dp” android:layout_marginLeft=”50dp” android:text=”@string/btncalc” /> </RelativeLayout> And For testing the event i

Continue reading