I have a problem with supporting multiple screens with developing an android app.
Firstly, I made some layout design with the file activity_main.xml. I never used AbsoluteLayout and only used LinearLayout. Plus, some layouts I used fill_parent, match_parent, wrap_content, and dp. (Probably, using dp is the problem?)
Secondly, I made folders and copied activity_main.xml file in each folder.
res/layout/activity_main.xml
res/layout-small/activity_main.xml
res/layout-large/activity_main.xml
res/layout-xlarge/activity_main.xml
res/layout-xlarge-land/activity_main.xml
Lastly, I added these codes in the manifest file.
<compatible-screens>
<screen android:screenSize="small" android:screenDensity="ldpi" />
<screen android:screenSize="small" android:screenDensity="mdpi" />
<screen android:screenSize="small" android:screenDensity="hdpi" />
<screen android:screenSize="small" android:screenDensity="xhdpi" />
<screen android:screenSize="normal" android:screenDensity="ldpi" />
<screen android:screenSize="normal" android:screenDensity="mdpi" />
<screen android:screenSize="normal" android:screenDensity="hdpi" />
<screen android:screenSize="normal" android:screenDensity="xhdpi" />
<screen android:screenSize="large" android:screenDensity="ldpi" />
<screen android:screenSize="large" android:screenDensity="mdpi" />
<screen android:screenSize="large" android:screenDensity="hdpi" />
<screen android:screenSize="large" android:screenDensity="xhdpi" />
<screen android:screenSize="xlarge" android:screenDensity="ldpi" />
<screen android:screenSize="xlarge" android:screenDensity="mdpi" />
<screen android:screenSize="xlarge" android:screenDensity="hdpi" />
<screen android:screenSize="xlarge" android:screenDensity="xhdpi" />
</compatible-screens>
I tested it on my Samsung Galaxy Note which I bought in South Korea, the layout does not fit in entire screen.
Can anyone help me how to fix this problem?