fragmenttabhost+fragment 怎么实现底部菜单栏中间凸出

2025-04-26 03:00:21
推荐回答(1个)
回答1:

我们可以用TabHost+Fragment来实现TAB选项卡效果。

activity_main.xml
[html] view plain copy print?
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent" >

android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

android:id="@android:id/tabcontent"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0"
android:visibility="gone"/>

android:id="@+id/realtabcontent"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />

android:id="@android:id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0" />