我遇到了一些奇怪的问题。我有一个带有 3 个不同标签的标签主机。
tab1:一个大按钮 tab2:非常多的文本(需要滚动视图才能看到全部) tab3:只是一个小文本
所以当我在tab2中实现滚动视图时,它禁用了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 中时我可以滚动第二个选项卡?
最好的问候拉兹