tab1:一个大按钮 tab2:非常多的文本(需要滚动视图才能看到所有内容) tab3:只是一个小文本
所以当我在tab2中实现了scrollview时,它禁用了tab1中的按钮...
即使是tab1和tab3,也会显示右边的这个小滚动图标,即使它们无法滚动。但是如果我在tab1或tab3中滚动,tab2将会滚动。
这是我的代码阵容的一个例子:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/carbonfibre"
android:orientation="vertical" >
<TabHost
android:id="@+id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1" >
<LinearLayout
android:id="@+id/tab1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="95dp"
android:src="@drawable/headerwithtext" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="20dp"
android:text=""
android:textAppearance="?android:attr/textAppearanceLarge" />
<Button
android:id="@+id/bRingTaxi"
android:layout_width="275dp"
android:layout_height="275dp"
android:layout_gravity="center_vertical|center_horizontal|center"
android:background="@drawable/button_callcab"
android:gravity="center_vertical|center_horizontal"
android:onClick = "minKlass"
/>
</LinearLayout>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scroller"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fillViewport="true" >
<LinearLayout
android:id="@+id/tab2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="15dp"
android:text="blahblahblah"
android:textAppearance="?android:attr/textAppearanceLarge" />
然后是第三个选项卡,其属性与tab1类似。 是否有人知道为什么tab2中的这个滚动视图禁用了tab1中的按钮?为什么我可以在tab1和tab2中滚动第二个标签?
最好的问候Razz