Android - App with layouts only - without controllers

I'm programming an app in Android.

My client needs a 'dummy' like application, I mean, an app with all layouts but just navigable, without the actual controllers or activities, just navigate through layouts. By clicking buttons, but just pass to the other layouts without executing java or whatever code.

My question is, is this possible in AndroidStudio?

Or should I generate another kind of graphical app in order to accomplish this?

Any ideas?

Thanks in advance!

The short answer to your question (as I understood it) is no. You have to have activities to have an android app that will function. You could create a very rudimentary set of activities to do what you want.

However, if you are simply trying to create a mockup of what the app will look like for your client, I suggest using a tool like FluidUI. This will allow you to layout the general look and feel of your app without any actual code required.

Let me know if this helps!