Android Question Text overlay on Label or Edit Text . Why?

DickyNAS

Member
Licensed User
Longtime User
Why selected item from another activity's listview object overlays on calling activity label text.
Not overwrite the original label text?
 

Attachments

  • Overlay_Problem.png
    Overlay_Problem.png
    3.3 KB · Views: 157

klaus

Expert
Licensed User
Longtime User
Unfortunately, your project doesn't work with my equipment.
I get an error in line 55 in HttpUtils2Service: Log(Response.GetString("UTF8"))
From the help, it is deprecated for devices Android 4+.
I think that you should switch Http to OkHttp library.

But from what i have seen, you load the layout file in Activity_Resume.
You must move it to Activity_Create, out of If FirstTime.
B4X:
Sub Activity_Create(FirstTime As Boolean)
    Activity.LoadLayout("Main")
End Sub
 
Upvote 0
Top