Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>See this is what i have tried for you </p> <p>My <strong>Manifest</strong>:</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.testandroid" android:versionCode="1" android:versionName="1.0" &gt; &lt;uses-sdk android:minSdkVersion="8" android:targetSdkVersion="17" /&gt; &lt;application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" &gt; &lt;activity android:name="com.example.testandroid.MainActivity" 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;/application&gt; &lt;/manifest&gt; &lt;LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="@drawable/mainbg" android:orientation="vertical" tools:context=".MainActivity" &gt; &lt;ImageView android:id="@+id/imageView1" android:layout_width="220dp" android:layout_height="50dp" android:layout_gravity="left" android:layout_marginLeft="-5dp" android:layout_marginTop="10dp" android:scaleType="centerCrop" android:src="@drawable/headingmain" /&gt; &lt;ImageView android:id="@+id/imageView2" android:layout_width="300dp" android:layout_height="20dp" android:layout_gravity="right" android:layout_marginLeft="304dp" android:scaleType="centerCrop" android:src="@drawable/headingby" /&gt; &lt;LinearLayout android:id="@+id/MainMenu" android:layout_width="match_parent" android:layout_height="fill_parent" android:layout_gravity="center" android:layout_marginTop="120dp" android:gravity="center" android:orientation="vertical" &gt; &lt;ImageButton android:id="@+id/imageButton1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="12dp" android:src="@drawable/playbutton" /&gt; &lt;ImageButton android:id="@+id/imageButton1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="22dp" android:src="@drawable/playbutton" /&gt; &lt;ImageButton android:id="@+id/imageButton1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="32dp" android:src="@drawable/playbutton" /&gt; &lt;!-- end of main menu! --&gt; &lt;/LinearLayout&gt; </code></pre> <p></p>
 

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