0

原谅我的简单问题,因为我是 android 新手。:)

为什么 textview 的 text 属性没有显示在此选项卡中?

画面:这里

这是我的代码..

MapTab2.java

package com.test.maptab2;

import android.app.TabActivity;
import android.os.Bundle;
import android.widget.TabHost;

public class MapTab2 extends TabActivity {

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

        TabHost.TabSpec spec;

        spec = getTabHost().newTabSpec("tab1");
        spec.setContent(R.id.mapstub);
        spec.setIndicator("Map");
        getTabHost().addTab(spec);

        spec = getTabHost().newTabSpec("tab2");
        spec.setContent(R.id.detailstub);
        spec.setIndicator("Detail");
        getTabHost().addTab(spec);

        getTabHost().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">

        <!-- Tab-switch panel -->
        <TabWidget android:id="@android:id/tabs"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"/>

        <!-- Tab contents -->
        <FrameLayout android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent">

            <!-- Map here -->
            <TextView android:id="@+id/mapstub"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="map"/>

            <!-- Other stuff -->
            <TextView android:id="@+id/detailstub"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:text="detail"/>

        </FrameLayout>  
    </LinearLayout>
</TabHost>

我正在尝试建立在选项卡中显示地图的方法。最好先了解基础知识,我想。:')

4

2 回答 2

1

实际上,我在父视图(在本例中为您的 LinearLayout)中设置重力,然后在子视图中设置 layout_gravity 属性(在您的情况下为您的 TextViews 等)中设置重力更幸运。

为了使这个简单的示例正常工作,我会将您的所有“fill_parent”属性更改为“wrap_content”(或 0.0dp 作为另一种选择) - 然后您可以开始使用不同的属性来让所有内容完全按照您的意愿定位。

于 2012-02-05T14:09:50.247 回答
0

尝试在选项卡内的每个 TextView 中添加 android:gravity="center" 。

于 2012-02-05T12:57:29.847 回答