Tabhost中没有动画/选择

时间:2016-03-20 07:06:13

标签: java android android-layout animation tabs

我正在尝试使用从一个视图到另一个动画的漂亮渐变来实现tabview,并突出显示当前选项卡。目前,我所能获得的是基本的tabview功能,但是即时切换选项卡并且没有突出显示选项。这是我目前的代码:

package com.example.ex.test;
public class MainActivity extends navBar {
private FragmentTabHost mTabHost;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main2);

    mTabHost = (FragmentTabHost)findViewById(android.R.id.tabhost);
    mTabHost.setup(this, getSupportFragmentManager(), R.id.realtabcontent);

    mTabHost.addTab(mTabHost.newTabSpec("tab1").setIndicator("Tab1"),
            smithingTable.class, null);
    mTabHost.addTab(mTabHost.newTabSpec("tab2").setIndicator("Tab2"),
            smithingTable2.class, null);
    mTabHost.addTab(mTabHost.newTabSpec("tab3").setIndicator("Tab3"),
            Map.class, null);
}
}

同时在我的活动主要内容中我有:     

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

    <TabWidget
        android:id="@android:id/tabs"

        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0"/>

    <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"/>

</LinearLayout>

并在tab1中例如(tab2相同但略有变化)

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".DeviceFragment" >

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="test1" />

<ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/imageView3"
    android:layout_gravity="center_horizontal"
    android:src="@drawable/newcomer_map" />

2 个答案:

答案 0 :(得分:1)

我真的建议你使用Material Design标签,它有很好的过渡和更多的可定制。
这是关于如何实施它的非常好的post

答案 1 :(得分:0)

发现我需要添加网页浏览量/听众