Суть в том что понадобилось к картинке(ImageView) привязать следующий элемент(TabHost).Точнее к низу моей картинки,привязать верх табхоста.Параметры картинки стоят:
<ImageView
android:layout_width="match_parent"
android:layout_height="264dp"
android:id="@+id/imageView"
android:layout_gravity="center_horizontal|top"
android:src="@drawable/top"
android:scaleType="fitXY" />
Параметры на табхосте:
<TabHost
android:layout_width="fill_parent"
android:layout_height="220dp"
android:id="@+id/tabHost"
android:layout_gravity="center_horizontal|bottom">
Пытался еще в onCreate написать что-то типа такого:
ImageView top = (ImageView) findViewById(R.id.imageView);
int height = top.getHeight();
TabHost host = (TabHost) findViewById(R.id.tabHost);
host.setup();
host.setMinimumHeight(height);
Помогите,хоть чем-то.