Android:选项卡内容未出现

发布于 2024-12-09 18:20:50 字数 1855 浏览 0 评论 0原文

我有一个信息选项卡,其中应该有一个列表视图、图像视图和文本视图。由于某种原因,内容没有显示。 这是我用来设置选项卡的代码。

tabHost.addTab(tabHost.newTabSpec("tab4")


    .setContent(R.id.layout_tab_four).setIndicator(tabname4,res.getDrawable(R.drawable.information)));

这是布局文件:

<ViewFlipper android:id="@+id/layout_tab_four"

                android:layout_width="fill_parent" android:layout_height="fill_parent">

                <ImageView android:layout_width="wrap_content" android:id="@+id/infologo"
                    android:layout_alignParentTop="true"
                    android:layout_alignParentLeft="true"
                    android:layout_alignParentRight="true" android:layout_height="wrap_content" />
                <ListView android:layout_width="match_parent" android:id="@+id/infolistview"
                    android:layout_height="20dp" android:layout_weight="1"
                    android:layout_alignParentLeft="true" />
                <TextView android:layout_width="wrap_content" android:text="General"
                    android:id="@+id/textView1" android:layout_height="wrap_content"
                    android:layout_alignParentLeft="true"
                    android:layout_alignParentRight="true" />



            </ViewFlipper>

提前致谢

编辑:

列表视图代码:

infoList = (ListView) findViewById(R.id.infolistview);
infoListAdapter = new ArrayAdapter(this, R.layout.item,
                this.fetchInfoList());
        infoList.setAdapter(infoListAdapter);

获取信息列表方法:

public ArrayList<String> fetchInfoList() {
        ArrayList<String> listItems = new ArrayList<String>();



        String listItem9 = "Visit Our Website";


        listItems.add(listItem9);


        return listItems;
    }

I have an info tab, which should have a listview, imageview and textview. For some reason the content is not showing.
Here is the code I use to set the tab up.

tabHost.addTab(tabHost.newTabSpec("tab4")


    .setContent(R.id.layout_tab_four).setIndicator(tabname4,res.getDrawable(R.drawable.information)));

Here is the layout file:

<ViewFlipper android:id="@+id/layout_tab_four"

                android:layout_width="fill_parent" android:layout_height="fill_parent">

                <ImageView android:layout_width="wrap_content" android:id="@+id/infologo"
                    android:layout_alignParentTop="true"
                    android:layout_alignParentLeft="true"
                    android:layout_alignParentRight="true" android:layout_height="wrap_content" />
                <ListView android:layout_width="match_parent" android:id="@+id/infolistview"
                    android:layout_height="20dp" android:layout_weight="1"
                    android:layout_alignParentLeft="true" />
                <TextView android:layout_width="wrap_content" android:text="General"
                    android:id="@+id/textView1" android:layout_height="wrap_content"
                    android:layout_alignParentLeft="true"
                    android:layout_alignParentRight="true" />



            </ViewFlipper>

Thanks in advance

EDIT:

List View Code:

infoList = (ListView) findViewById(R.id.infolistview);
infoListAdapter = new ArrayAdapter(this, R.layout.item,
                this.fetchInfoList());
        infoList.setAdapter(infoListAdapter);

Fetch Info List Method:

public ArrayList<String> fetchInfoList() {
        ArrayList<String> listItems = new ArrayList<String>();



        String listItem9 = "Visit Our Website";


        listItems.add(listItem9);


        return listItems;
    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

看透却不说透 2024-12-16 18:20:50

用于选择您的选项卡(像您一样设置内容后):

tabHost.setCurrentTab(X);

其中 -1 < X< (numberoftabs -1) //你喜欢数学吗? :D

use for select your tab this (after setting the content like you did):

tabHost.setCurrentTab(X);

Where -1 < X < (numberoftabs -1) //Do you like maths? :D

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文