Reputation: 6755
I am creating my screens for my android app, for that I created a background image. In the background is a header area which should not be covered by my app. Actually this is my problem, my linear layout starts directly in 0/0 position. How can I define that I have for example 30 px of empty space in the head of my screen.
Thanks
Upvotes: 0
Views: 60
Reputation: 2094
Add the property android:paddingTop="30px"
to the container which has the background.
By the way, you should avoid using pixel and you should use dp instead.
Upvotes: 1