YoungMaker / iORC

iORC - Organized Roleplay Creator
3 stars 0 forks source link

The nested scroll view does not fill the size of the screen container #107

Closed YoungMaker closed 6 years ago

YoungMaker commented 6 years ago

The content area of the character activity is cut to 467dp across all devices, limiting the displayable area to just above that of the bottom navigation bar. It should be set programmatically or some other way rather than set absolutely.

YoungMaker commented 6 years ago

Assigning the size to match_parent exacerbates the problem in another direction. Then, the content is cut off from the bottom bar.

YoungMaker commented 6 years ago

The solution was to add android:layout_marginBottom="?attr/actionBarSize" to the NestedScrollView in the character detail activity. Closed in 5151948