• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Emulator resolution problem

Namheul

Lurker
Im playing around with Eclipse and the Android SDK to try and get to know how it all works.

I have followed the Hello Android tutorial on the developer.android.com site and adapted it to have separate portrait and landscape xml layout files.

The problem is that the app doesnt fill the screen size of the emulator. I have setup an AVD to use Honeycomb and WXGA resolution.

This is my XML layout file:
Code:
<?xml version="1.0" encoding="utf-8"?>

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
        android:text="landscape"
        android:textSize="15pt"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:background="#0000ff" />

I have attached an image to show you what i mean.

Thanks!
 

Attachments

  • emulator.jpg
    emulator.jpg
    57.5 KB · Views: 87
Back
Top Bottom