tabhost-TabHost显示在底部和顶部问题

问题描述

TabHost显示在底部和顶部问题

xml里面代码一样 TabHost继承activity会显示在顶部 但是继承AppCompatActivity却显示在底部

<android.support.v4.app.FragmentTabHost

    android:id="@android:id/tabhost"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_alignParentBottom="true"
    android:background="#fff7f7f7" >

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

        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="0dp"
            android:layout_height="0dp"
            android:layout_weight="0" />

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

        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="0"
            android:divider="#00000000"
            android:orientation="horizontal" />
    </LinearLayout>
</android.support.v4.app.FragmentTabHost>

解决方案

你想问的是什么阿?????????????????

时间: 2024-10-05 19:09:49

tabhost-TabHost显示在底部和顶部问题的相关文章

Android设置ScrollView滚动到底部和顶部

转载请备注原文地址: http://www.niwoxuexi.com/blog/android/article/221.html 我们在开发的过程中,经常会遇到ScrollView滚动到底部和顶部的情况,下面是一种简单的设置方法 1,设置ScrollView滚动到顶部 //设置ScrollView滚动到顶部 scrollView.fullScroll(ScrollView.FOCUS_UP); 2,设置ScrollView滚动到底部 //设置ScrollView滚动到顶部 scrollView

Android开发之Activity的中部或底部回到顶部

我们浏览淘宝商品详情的时候会遇到回到顶部这个功能,下面就说说这个功能的简单实现 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" > <ScrollView android:id="

Android ScrollView显示到底部或任意位置实现代码

Android ScrollView显示到底部或任意位置 其实使ScrollView显示底部并不难.它有自己的方法fullScroll(): 1.显示顶部: scrollView.fullScroll(ScrollView.FOCUS_UP); 2.显示底部: scrollView.fullScroll(ScrollView.FOCUS_DOWN); 但是,有一点一定需要注意.这个方法不能直接调用,因为在Android里面,他的很多函数都是基于消息队列来实现的,也就是说fullScroll()这

滑动到底部或顶部响应的ScrollView实现

本文主要介绍实现ScrollView滑动到底部或顶部响应的两种方式 关于使用可见:滚动到底部或顶部响应的ScrollView使用 示例APK可从这些地址下载:Google Play, 360手机助手, 百度手机助手, 小米应用商店, 豌豆荚 两种实现方式的主要不同点在于判断滑动位置的地方,第一种方式在onScrollChanged函数中判断, 第二种在OnTouchListener的onTouch中判断.其他如是否滚动到边缘的判断.响应事件接口OnBorderListener.对外暴露的接口都一

滚动到底部或顶部响应的ScrollView使用

listView示例很多,对于ScrollView却寥寥无几,下面介绍使用自定义的ScrollView来完成该功能的实例. 示例APK可从这些地址下载:Google Play, 360手机助手, 百度手机助手, 小米应用商店, 豌豆荚 示例代码地址见BorderScrollViewDemo,效果图如下: 1.引入公共库 引入TrineaAndroidCommon@Github(欢迎star和fork^_^)作为你项目的library(如何拉取代码及添加公共库),或是自己抽取其中的BorderSc

js判断滚动条是否已到页面最底部或顶部实例_javascript技巧

本文实例讲述了js判断滚动条是否已到页面最底部或顶部的方法.分享给大家供大家参考.具体分析如下: 我们经常会看到很多的网站一个返回顶部效果就是当我们滚动条到指定位置时返回顶部出来了,否则就自动隐藏了,下面就来给大家介绍这种效果实现原理与方法. 当可视区域小于页面的实际高度时,判定为出现滚动条,即: 复制代码 代码如下: if (document.documentElement.clientHeight < document.documentElement.offsetHeight) scroll

wpf使用ie、火狐、webkit去显示网页都有触屏拖动到底部或者顶部整个窗口随着拖动而弹跳的问题

问题描述 wpf使用ie.火狐.webkit,当使用触屏在网页上拖动到顶部或者底部时,整个窗口会跟着拖动而弹跳一小段距离,ie和火狐浏览器本身有这个问题,但是google浏览器我试了,没有这个问题,为什么用webkit也会有这问题呢?google用的不就是webkit吗?是不是弹跳的效果可以通过什么属性关掉?还请各位大神指教 解决方案 解决方案二:你是想用wpf程序显示一个网页,还是想在浏览器中查看silverlight?解决方案三:@rocmemory:用wpf显示网页啊!网页是可以显示的,但

【转】网页底部“回到顶部”功能代码

在网页的body最后加上代码: <div id="control_pannel"><a onclick="window.scrollTo(0,0);" href="javascript:void(0);">回到顶部</a></div> 然后用CSS控制,CSS代码: #control_pannel{background:#FFF none repeat scroll 0 0;border:2px s

tabhost-Android 中 TabHost 的 TabWidget 显示问题

问题描述 Android 中 TabHost 的 TabWidget 显示问题 当布局文件是这样的时候: <TabHost xmlns:android=""http://schemas.android.com/apk/res/android"" xmlns:tools=""http://schemas.android.com/tools"" android:id=""@android:id/tabho