i want to set same background image to all my app layouts. My app supports all devices from mini phone to 10.1 tablets.
Is there one way to do this or i need to set for every layout re-sized image that quality would be good.
I found this in one app: app_background.xml in drawable folder:
<?xml version="1.0" encoding="utf-8"?>
<shape android:shape="rectangle" xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#ffff00" />
</shape>
Also maybe some one could give me good explanation how to separate design and functions in java.
Thanks.