我有相对布局,因为我放置了两个文本视图,一个图像视图和选项卡视图。我在底部有标签视图。我想在 tabview 和 imageview 之间添加空间。如何实现它?
这是源代码
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="6dip">
<ImageView
android:id="@+id/icon"
android:layout_width="100dip"
android:layout_height="100dip"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginRight="6dip"
android:scaleType="center"
android:src="@drawable/ic_launcher"/>
<TextView
android:text="Hello world"
android:id="@+id/serviceName"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:singleLine="true"
android:focusable="true"
android:focusableInTouchMode="true"
android:freezesText="true"></TextView>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/icon"
android:layout_alignLeft="@+id/serviceName"
android:gravity="center_vertical"
android:text="123456789"
android:textSize="30dip" />
<TabHost
android:id="@android:id/tabhost"
android:layout_below="@+id/icon"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TabWidget
android:id="@android:id/tabs"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0"/>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="0"/>
<FrameLayout
android:id="@+android:id/realtabcontent"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"/>
</LinearLayout>
</TabHost>
</RelativeLayout>