2

我已经阅读了一些在应用程序页面底部实现选项卡的代码。并且代码中没有弃用的方法/类,对我来说,这是实现选项卡的一种非常简单和干净的方法。

但我听说实现选项卡的新方法是使用片段。

那么,哪一个更好呢?为什么?

XML:

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

    <TabHost
        android:id="@+id/edit_item_tab_host"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >

        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom" />


            <FrameLayout
                android:id="@android:id/tabcontent"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:paddingTop="65px" >

            <LinearLayout
                android:id="@+id/edit_item_date_tab"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:orientation="vertical"
                android:padding="5px" >

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="date"
                    android:textStyle="bold" />

            </LinearLayout>

            <LinearLayout
                android:id="@+id/edit_item_geocontext_tab"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:orientation="vertical"
                android:padding="5px" >

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="lieu"
                    android:textStyle="bold" />
            </LinearLayout>

            <LinearLayout
                android:id="@+id/edit_item_text_tab"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:orientation="vertical"
                android:padding="5px" >
            </LinearLayout>
        </FrameLayout>
    </TabHost>

</LinearLayout>

MainActivity班级:

import android.app.Activity;
import android.os.Bundle;
import android.widget.TabHost;
import android.widget.TabHost.TabSpec;

public class MainActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);



        TabHost tab_host = (TabHost) findViewById(R.id.edit_item_tab_host);
        // don't forget this setup before adding tabs from a tabhost using a xml view or you'll get an nullpointer exception
        tab_host.setup(); 

        TabSpec ts1 = tab_host.newTabSpec("TAB_DATE");
        ts1.setIndicator("tab1");
        ts1.setContent(R.id.edit_item_date_tab);
        tab_host.addTab(ts1);

        TabSpec ts2 = tab_host.newTabSpec("TAB_GEO");
        ts2.setIndicator("tab2");
        ts2.setContent(R.id.edit_item_geocontext_tab);
        tab_host.addTab(ts2);

        TabSpec ts3 = tab_host.newTabSpec("TAB_TEXT");
        ts3.setIndicator("tab3");
        ts3.setContent(R.id.edit_item_text_tab);
        tab_host.addTab(ts3);

        tab_host.setCurrentTab(0);




        }
}
4

3 回答 3

2

ATabHost不能包含片段(嗯,它可以,但它真的很棘手)所以我不建议今天使用它。

片段是要走的路,如果你想实现新的 Tab 机制(集成到ActionBarAndroid 3.0 上可用的“新”机制)并且仍然支持旧的 android 版本,那么可以使用ActionBarSherlock,一个开源项目,方便使用使用单个 API 跨所有 Android 版本的操作栏设计模式。

现在很多流行的应用程序都使用这个项目(包括谷歌应用程序),所以值得一看。

于 2012-07-26T19:04:20.557 回答
0

Fragment 表示 Activity 中的一种行为或用户界面的一部分。

安卓开发者指南。

你的问题似乎措辞有点奇怪。您正在询问Tabs是否位于页面底部,但询问您是否应该使用Fragments. 这是两个不同的话题。

是的,你应该使用Fragments,这是 android 正在走的路线,并将在未来继续走。

位于屏幕Tabs底部或顶部是设计决策。取决于什么对用户体验更舒适,实际上与Fragments.

于 2012-07-26T18:51:20.013 回答
0

Google 引入了一个名为BottomNavigationView的新视图,这是一个用于 Android 应用程序的标准底部导航栏。根据指南,您最多可以添加 5 个(标准)项目,并且非常简单,就像 android 的 NavigationView。

请访问组件指南,以了解有关设计的更多信息。

于 2018-01-11T08:16:04.700 回答