There is an application that can display photos and some text in one activity. For example, since it is schematically represented in the attached figure. display example

Is it possible to implement it this way on Android?

I suppose that two TextView (when displaying text) or EditText (when entering a test), which work as one, should border the picture on the side and bottom. That is, the text is entered (displayed) in the "side" widget, and when the number of lines exceeds a certain number in it, the second ("bottom") widget receives focus and the user continues, as if nothing had happened, to enter text.

The same thing happens when this test is displayed, only TextView is used. The picture sizes are fixed, but it may not be present in the activation (in this case there will be no problems).

Or is there some other convenient way to display text and pictures, so that it looks neat and there is not too much simple space on the screen?

  • one
  • 2
    You can look at the TextWrapView library, how everything is arranged or even not to strain yourself, and use it in your project (as rational people usually do when they need already implemented functionality) - pavlofff

0