2

別の数のタブが必要で、TabHost を使用しています。これらは、データに応じて 1 ~ 8 の数になる可能性があります。

横スクロールを追加して、8つすべてが表示されたときに窮屈にならないようにしたい.

問題は、5 つ以上ある場合に問題なく表示され、スクロールが機能することです。しかし、タブの数が少ないと、空白が表示されます。余分なスペースを埋めるためにタブが引き伸ばされていません。

どうすればこれを解決できますか? これはJavaコードで実行できますか?

これが私のレイアウト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:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <!---Other Views--->

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

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

    <FrameLayout
        android:id="@android:id/tabcontent"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" />
</LinearLayout>

</TabHost>
4

2 に答える 2

1

これは私のために働いています。してみてください。

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

        <HorizontalScrollView 
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:fillViewport="true"
            android:scrollbars="none" >

            <TabWidget
                android:id="@android:id/tabs"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:tabStripEnabled="true"
                android:orientation="horizontal" />

        </HorizontalScrollView>

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

        <android.support.v4.view.ViewPager
            android:id="@+id/pager"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"/>

    </LinearLayout>

</TabHost>

ところで、TabHost が廃止されたとどこに書いてありますか? 私は警告を受けていません...また、この投稿に依存して、TabHostは生きていてキックしていると信じています.

于 2013-05-10T10:34:34.393 に答える
1

3 つのタブを追加しましたが、使用に問題はありません。スクロール可能にしたい場合は <HorizontalScrollView>、親として<TabWidget> mainActivity.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="match_parent"
    android:layout_height="match_parent" >

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

        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_above="@android:id/tabs" />

        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true" />
    </RelativeLayout>

</TabHost>

主な活動

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

@SuppressWarnings("deprecation")
public class MainActivity extends TabActivity implements OnTabChangeListener
{
    TabHost tabHost;

    @Override
    public void onCreate(Bundle savedInstanceState) 
    {
        super.onCreate(savedInstanceState);

        setContentView(R.layout.activity_main);

        tabHost = getTabHost();

        TabSpec photospec = tabHost.newTabSpec("Home");
        photospec.setIndicator("");
        Intent photosIntent = new Intent(this, Download.class);
        photospec.setContent(photosIntent);

        TabSpec songspec = tabHost.newTabSpec("Songs");        
        songspec.setIndicator("");
        Intent songsIntent = new Intent(this, Home.class);
        songspec.setContent(songsIntent);

        TabSpec videospec = tabHost.newTabSpec("Videos");
        videospec.setIndicator("");
        Intent videosIntent = new Intent(this, Album.class);
        videospec.setContent(videosIntent);

        tabHost.addTab(photospec); 
        tabHost.addTab(songspec); 
        tabHost.addTab(videospec);

        tabHost.getTabWidget().getChildAt(0).setBackgroundResource(R.drawable.download_unselect);
        tabHost.getTabWidget().getChildAt(1).setBackgroundResource(R.drawable.main_selected);
        tabHost.getTabWidget().getChildAt(2).setBackgroundResource(R.drawable.albums_unselect);

        tabHost.getTabWidget().getChildAt(0).getLayoutParams().height = 50;

        tabHost.getTabWidget().getChildAt(1).getLayoutParams().height = 70;

        tabHost.getTabWidget().getChildAt(2).getLayoutParams().height = 50;

        tabHost.setCurrentTab(1);

        tabHost.setOnTabChangedListener(this);
    }

    @Override
    public void onTabChanged(String tab) 
    {
        int index = tabHost.getCurrentTab();

        if(index == 0)
        {
            tabHost.getTabWidget().getChildAt(0).setBackgroundResource(R.drawable.download_selected);
            tabHost.getTabWidget().getChildAt(1).setBackgroundResource(R.drawable.main_unselect);
            tabHost.getTabWidget().getChildAt(2).setBackgroundResource(R.drawable.albums_unselect);
        }
        else if(index == 1)
        {
            tabHost.getTabWidget().getChildAt(0).setBackgroundResource(R.drawable.download_unselect);
            tabHost.getTabWidget().getChildAt(1).setBackgroundResource(R.drawable.main_selected);
            tabHost.getTabWidget().getChildAt(2).setBackgroundResource(R.drawable.albums_unselect);
        }
        else if(index == 2)
        {
            tabHost.getTabWidget().getChildAt(0).setBackgroundResource(R.drawable.download_unselect);
            tabHost.getTabWidget().getChildAt(1).setBackgroundResource(R.drawable.main_unselect);
            tabHost.getTabWidget().getChildAt(2).setBackgroundResource(R.drawable.albums_selected);
        }
    }

}
于 2014-04-24T13:24:19.567 に答える