A very simple project. Here’s the Activity subclass:
public class Home extends Activity
{
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}
Here’s the main.xml layout:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Hello World"
android:textSize="100sp"
/>
</LinearLayout>
I’d expect this to render as some (very large) text on a plan background, but what actually renders on the Galaxy Nexux (Android 4.0.2) is shown in the screenshot. It renders fine on the other devices I tested.
Am I doing something strange, or is this a bug in the GN Android version?

Try adding this to your Manifest file: