ok, here's what i'm doing:
Using java Syntax Highlighting
public boolean onTap(GeoPoint p, MapView mapView) {
LayoutInflater inflater = (LayoutInflater)ctx.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
LayoutParams lp = new LayoutParams(ViewGroup.LayoutParams.FILL_PARENT, ViewGroup.LayoutParams.FILL_PARENT, p, LayoutParams.CENTER);
LinearLayout ll = (LinearLayout)inflater.inflate(R.layout.map_baloon, null);
mapView.addView(ll, lp);
return true;
}
Parsed in 0.031 seconds, using
GeSHi 1.0.8.4
the map_baloon is just a linearlayout with a textview on it.
Using xml Syntax Highlighting
<LinearLayout android:id="@+id/LinearLayout01" android:layout_width="fill_parent" android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android">
<TextView android:text="@+id/TextView01" android:id="@+id/TextView01" android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
</LinearLayout>
Parsed in 0.001 seconds, using
GeSHi 1.0.8.4
But nothing appears on screen

What am i doing wrong?
EDIT: Looks like i'm not doing anything wrong. the view is just added to the wrong GeoPoint (how?!?!)
EDIT2: Figured it out

Instead of FILL_PARENT on layout params we should WRAP_CONTENT
Thanks for the help