Thursday, January 06, 2011

android ndk5 tips: running sanangeles

Just installed the new android sdk 2.3 and ndk r5 + eclipse updates
and I wanted to test the sanageles in emulator and
I've got this error in res-> layout -> main.xml

Unable to resolve dimension value "match_parent" in attribute "layout_width"

so replace match_parent with wrap_content everywhere in main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World, DemoActivity"
/>
</LinearLayout>
view raw main.xml hosted with ❤ by GitHub



No comments: