水平滚动功能

时间:2013-10-25 06:43:36

标签: java android

我正在开发一个应用程序,假设在选项卡布局上具有滚动功能。但我真的不知道实现它的方法,有人可以帮忙吗?我打算在页面顶部添加更多标签,然后水平滚动标签。

java代码

 import android.app.TabActivity;
 import android.content.Intent;
 import android.content.res.Resources;
 import android.os.Bundle;
 import android.widget.TabHost;
 import android.widget.TabHost.TabSpec;

 public class MainActivity extends TabActivity {

 public void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.main);

 Resources ressources = getResources(); 
 TabHost tabHost = getTabHost(); 

 // Livingroom tab
 Intent intentAndroid = new Intent().setClass(this, livingroomActivity.class);
 TabSpec tabSpecAndroid = tabHost
 .newTabSpec("livingroom")
 .setIndicator("", ressources.getDrawable(R.drawable.Living))
 .setContent(intentLiving);

 // dadnmom tab
 Intent intentApple = new Intent().setClass(this, dadmomActivity.class);
 TabSpec tabSpecApple = tabHost
 .newTabSpec("Dadmom")
 .setIndicator("", ressources.getDrawable(R.drawable.icon_apple_config))
 .setContent(intentdadmom);

 // myroom tab
 Intent intentWindows = new Intent().setClass(this, myroomActivity.class);
 TabSpec tabSpecWindows = tabHost
 .newTabSpec("myroom")
 .setIndicator("", ressources.getDrawable(R.drawable.icon_windows_config))
 .setContent(intentmyroom);

 // kitchen room tab
 Intent intentBerry = new Intent().setClass(this, kitchenActivity.class);
 TabSpec tabSpecBerry = tabHost
 .newTabSpec("kitchen")
 .setIndicator("", ressources.getDrawable(R.drawable.icon_blackberry_config))
 .setContent(intentkitchen);

 // add all tabs 
 tabHost.addTab(tabSpecliving);
 tabHost.addTab(tabSpecdadmom);
 tabHost.addTab(tabSpecmyroom);
 tabHost.addTab(tabSpeckitchen);

 //set Windows tab as default (zero based)
 tabHost.setCurrentTab(0);
 }

 }

xml代码

<?xml version="1.0" encoding="utf-8"?>
 <TabHost xmlns:android="http://schemas.android.com/apk/res/android"
 android:id="@android:id/tabhost"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent">
 <LinearLayout
 android:orientation="vertical"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
 android:padding="5dp">
 <TabWidget
 android:id="@android:id/tabs"
 android:layout_width="fill_parent"
 android:layout_height="wrap_content" />
 <FrameLayout
 android:id="@android:id/tabcontent"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
 android:padding="5dp" />
 </LinearLayout>
 </TabHost>

enter image description here

2 个答案:

答案 0 :(得分:1)

在{xml

中使用HorizontalScrollView TabWidget

例如

<HorizontalScrollView
            android:layout_width="match_parent"
            android:layout_height="wrap_content" >

            <TabWidget
                android:id="@android:id/tabs"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@android:color/darker_gray" />
        </HorizontalScrollView>

希望这有效

答案 1 :(得分:0)

在xml中使用<HorizontalScrollView>来实现水平滚动