- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我尝试按照以下两个选项卡布局指南使用 FragentTabHost 设计自定义 TabWidget:
http://joshclemm.com/blog/custom-android-tabs/
我正在使用三个 fragment 构建 FragmentTabHost,第一个 fragment 有一个可扩展的 ListView 。
一切正常,我可以设置背景颜色,图标(如果我愿意)和指示器也可以工作,就像分隔线一样(如果我愿意),但由于某种原因选项卡标题没有出现,而且我找不到它不显示的原因。
如果我从 tab_layout.xml 中的 android:background="@drawable/tab_indicator" 中删除 tab_indicator.xml 并将背景颜色设置为选项卡标题显示的任何颜色,但我显然没有得到指示器。
有谁知道出了什么问题以及我缺少什么吗?我试图解决这个问题并搜索了几天,但它开始变得非常令人沮丧,因为它看起来很简单。
tab_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/tab_indicator">
<TextView
android:id="@+id/tabText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical|center_horizontal"
android:gravity="center_vertical|center_horizontal"
android:textColor="@drawable/tab_text"
android:textSize="15dp"
/>
</LinearLayout>
tab_indicator.xml
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Non focused states-->
<item android:state_focused="false" android:state_selected="false" android:state_pressed="false" android:drawable="@drawable/tab_unselected" />
<item android:state_focused="false" android:state_selected="true" android:state_pressed="false" android:drawable="@drawable/tab_selected" />
<!-- Focused states-->
<item android:state_focused="true" android:state_selected="false" android:state_pressed="false" android:drawable="@drawable/tab_unselected" />
<item android:state_focused="true" android:state_selected="true" android:state_pressed="false" android:drawable="@drawable/tab_selected" />
<!-- Pressed-->
<item android:state_focused="true" android:state_selected="false" android:state_pressed="true" android:drawable="@drawable/tab_pressed" />
<item android:state_focused="true" android:state_selected="true" android:state_pressed="true" android:drawable="@drawable/tab_pressed" />
</selector>
activity_main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v4.app.FragmentTabHost
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/tabHost"
android:layout_gravity="center_horizontal"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<TabWidget
android:id="@android:id/tabs"
android:layout_width="match_parent"
android:layout_height="35dp"
android:showDividers="middle"
android:layout_weight="0"
android:orientation="horizontal"
/>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
>
</FrameLayout>
</LinearLayout>
</android.support.v4.app.FragmentTabHost>
</LinearLayout>
tab_selected.xml
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:top="-7dp" android:bottom="0dp" android:left="-7dp" android:right="-7dp">
<shape
android:shape="rectangle">
<padding android:left="10dp"
android:top="15dp"
android:right="10dp"
android:bottom="15dp" />
<stroke android:width="4dp" android:color="#FF00ccff" />
<solid android:color="#2fff00"
/>
</shape>
</item>
</layer-list>
最佳答案
解决了,如果我更改 FragmentTabHost 和 TabWidget 中的 android:layout_height 它会显示文本,就这么简单。但在我看来,高度太大了 ^^ 我希望它更小,比如 35dp,如果我更改 tab_selected.xml、_unselected 和 _pressed 中的填充,然后我可以更改 TabWidget Activity_main.xml 中的高度,否则文本将不适合选项卡。
关于java - Android:FragmentTabHost 小部件不显示标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43498042/
我已经实现了 FragmentTabHost,但我的 Fragment 超出了 tabhost。这是我的 Activity : public class MainActivity extends Ac
我在一个 FragmentActivity 中使用了一个 FragmentTabHost,它有 3 个选项卡。 如果我从每个选项卡的第一页更改选项卡,它工作正常,但如果我在一个选项卡内导航抛出片段然后
问题: 我正在尝试创建两个包含 Fragments 和 FragmentTabHost 的选项卡。 我在此处将选项卡添加到 FragmentTabHost(包含选项卡的 FragmentActivit
我在程序中使用 FragmentTabHost 显示子 fragment ( fragment 中的 fragment )时遇到问题。选项卡主机显示完美,但其内容未显示... 首先介绍类: 订单.ja
这是我的 activity_main.xml 布局,它包含两个选项卡。选定的选项卡内容根本没有显示。我哪里错了?如果我在下面的布局中交换 FragmentTabHost 和 Framelayout 的
我已经使用支持包中的 FragmentTabHost 实现了选项卡,但未显示可绘制图标? 如何使用 FragmentTabHost 显示可绘制图标? mTabs = (FragmentTabHost)
我正在尝试删除 android.support.v4.app.Fragment TabHost 上选项卡下方的蓝线和蓝色背景(选择选项卡时)。有人这样做过吗? 发送 最佳答案 我认为您必须自定义选项卡
我正在为我的一个项目使用 FragmentTabHost。 我的应用程序中有 5 个以上的标签页。 如果我使用一个或两个选项卡意味着 TabHost 看起来不错。 如果我添加超过 5 个标签,标签主机
我为 FragmentTabHost 使用了 v4 支持库 要求是当我将标签页切换到另一个标签页和另一个标签页时,即调用 onCreateView() & onActivityCreated() 每次
我正在使用带有多个选项卡的 FragmentTabHost(构造如图 here 所示)。但是,我无法使用 getFragmentByTag(在这种情况下返回 null)随机寻址我的选项卡,除非已通过至
简单的 android.support.v4.app.FragmentTabHost 的图形布局永远不会在 Eclipse 或 Android Studio 中呈现。 我得到的控制台错误是一致的: 渲
几天前,我在 Fragment 中使用 NavigationDrawer 实现了 TabHostFramgent,我遇到了以下错误: java.lang.IllegalStateException:
我正在开发一个带有选项卡的 Android 应用程序 (FragmentTabHost)。我有一个带有 6 个选项卡的 FragmentActivity。目前,选项卡的名称显示为进行行跳转。我希望所有
我试过下面的代码。将框架布局对齐到选项卡小部件上方,但它仍然不起作用 编辑我正在使用 Fragme
我正在 visual studio 中使用 xamarin.android 开发一个应用程序,我正在尝试在我的应用程序的按钮上添加选项卡 这是我的代码 protected override void
我已经尝试了几个链接来删除 FragmentTabHost 中的选定选项卡,但对我不起作用。 First link Second link 我也在我的 Xml 中尝试过,但它不起作用 android:
好的,这就是我在错过图书馆时看到的: import android.support.v4.app.FragmentTabHost; 我在哪里可以找到它以及我需要如何将这个库添加到我的项目中? 感谢任何
所以我正在开发一个应用程序,直到现在,我一直在使用带有两个 Activity 的普通选项卡布局。现在有人告诉我,使用 FragmentTabHost 会更好。所以我一直在阅读一些 docs这是我到目前
这两天我一直在为一个简单的用户界面而苦苦挣扎。我只想要底部带有选项卡的选项卡式布局(由于这个原因不能使用 Tabs ActionBarSherlock)。我还希望我的选项卡由图标和文本表示。很简单?我
我有两个使用 FragmentTabHost 的 fragment 的选项卡式布局。在选项卡选择中,每个 fragment 都会重新创建(onCreateView、onActivityCreated.
我是一名优秀的程序员,十分优秀!