I'm using a xml layout in my own app ...
When I add this line's to my layout ,Event's not working
this working nice
in this case not working event's
When I add this line's to my layout ,Event's not working
B4X:
xmlns:app="http://schemas.android.com/apk/res-auto"
'or
xmlns:tools="http://schemas.android.com/tools"
this working nice
B4X:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:orientation="vertical" >
<Button
android:id="@+id/Button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="myButton"
android:tag="Button1" >
</LinearLayout>
in this case not working event's
B4X:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:orientation="vertical" >
<ImageButton
android:layout_width="@dimen/spacing_mxlarge"
android:layout_height="@dimen/spacing_mxlarge"
android:layout_marginTop="16dp"
android:background="@android:color/transparent"
android:tint="@color/grey_60"
app:srcCompat="@drawable/exit_to_app" />
<Button
android:id="@+id/Button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="myButton"
android:tag="Button1" >
</LinearLayout>