Hello
Me again.
I finally managed to get my application working on my phone.
Problem now is:
The application shows, but I cannot click anywhere. This means that none of my events fire - it is as if something is blocking them. I suspect it is one of my layouts.
My layout looks like :
design.jpg
Mu Outline looks like :
outline.png
So now, after some research, I did this in the .xml file :
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/fullscreen_content_controls" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#FFFFFF" tools:context=".FullscreenActivityNCC" android:clickable="true" android:focusable="true" > <requestFocus />
But I am still unable to activate any click event. I do have listeners for them and they worked last time I tested.
Any advice?
Hannes