[android]无边框Tabbar底部

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[android]无边框Tabbar底部相关的知识,希望对你有一定的参考价值。

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <TabHost xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@android:id/tabhost"
  4. android:layout_width="fill_parent"
  5. android:layout_height="fill_parent">
  6.  
  7. <LinearLayout
  8. android:orientation="vertical"
  9. android:layout_width="fill_parent"
  10. android:layout_height="fill_parent"
  11. android:padding="5dp">
  12.  
  13. <FrameLayout
  14. android:id="@android:id/tabcontent"
  15. android:layout_width="fill_parent"
  16. android:layout_height="wrap_content"
  17. android:padding="5dp"
  18. android:layout_weight="1" />
  19.  
  20. <TabWidget
  21. android:id="@android:id/tabs"
  22. android:layout_width="fill_parent"
  23. android:layout_height="wrap_content"
  24. android:layout_weight="0"
  25. android:foreground="@null"
  26. android:layout_marginBottom="-6dp" />
  27.  
  28. </LinearLayout>
  29. </TabHost>

以上是关于[android]无边框Tabbar底部的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Android 中创建无边框按钮 [重复]

Flutter 中的无边框选择高亮效果

将顶部边框添加到选定的 TabBar

android button边框怎么去掉

无边框iPad渲染图曝光,帅到没朋友!

如何创建标准无边框按钮(如提到的设计指南中)?