Note that there are some explanatory texts on larger screens.

plurals
  1. POScreen Size Issue
    primarykey
    data
    text
    <p>I have been working on supporting multiple screens today and I've been watching this video which I thought was very helpful.</p> <p><a href="http://www.youtube.com/watch?v=C8dGQEN9sRs" rel="nofollow">http://www.youtube.com/watch?v=C8dGQEN9sRs</a></p> <p>I have just been coding my app with this and after I was done with the size small layouts I thought is there a faster way, so I goggled It and found this </p> <pre><code> &lt;supports-screens android:resizeable="true" android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:anyDensity="true"/&gt; </code></pre> <p>For some reason I think I need both, I am new to coding so I take time in picking things up.. Am I coding it wrong or am I on the right track and I also need this in my MF.</p> <p>This is my project setup <a href="http://img96.imageshack.us/img96/7198/gd0h.jpg" rel="nofollow">http://img96.imageshack.us/img96/7198/gd0h.jpg</a></p> <pre><code> &lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.demo1" android:versionCode="1" android:versionName="1.0" &gt; &lt;uses-sdk android:minSdkVersion="5" android:targetSdkVersion="19" /&gt; &lt;supports-screens android:resizeable="true" android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:anyDensity="true"/&gt; &lt;application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/mytheme" &gt; &lt;activity android:name="com.example.demo1.Splash" android:label="@string/app_name" &gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.MAIN" /&gt; &lt;category android:name="android.intent.category.LAUNCHER" /&gt; &lt;/intent-filter&gt; &lt;/activity&gt; &lt;activity android:name="LayoutMainActivity"&gt;&lt;/activity&gt; &lt;activity android:name="ListviewCode"&gt;&lt;/activity&gt; &lt;activity android:name="Information"&gt;&lt;/activity&gt; &lt;activity android:name="StartButton"&gt;&lt;/activity&gt; &lt;/application&gt; &lt;/manifest&gt; </code></pre> <p>Thank you </p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload