0

これが私のコードです

ここにはいくつかの問題があります

  1. Eclipse で TabActivity がスクラッチになるのはなぜですか?
  2. getTabHost() でエラーが発生していますか? 誰でもこのコードを修正できますか?

androidhive.com から学ぼうとすると、このチュートリアルが表示されますが、Eclipse で作成すると失敗します。

package com.uavero.androidtablayout;
import android.os.Bundle;
import android.app.TabActivity;
import android.content.Intent;
import android.view.Menu;
import android.widget.TabHost;
import android.widget.TabHost.TabSpec;

public class TabLayout extends TabActivity{
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_tab_layout);

    TabHost tabHost = getTabHost();

    // Tab for Photos
    TabSpec photospec = tabHost.newTabSpec("Photos");
    // setting Title and Icon for the Tab
    photospec.setIndicator("Photos", getResources().getDrawable(R.drawable.icon_photo_tab));
    Intent photosIntent = new Intent(this, PhotosActivity.class);
    photospec.setContent(photosIntent);

    // Tab for Songs
    TabSpec songspec = tabHost.newTabSpec("Songs");
    songspec.setIndicator("Songs", getResources().getDrawable(R.drawable.icon_song_tab));
    Intent songsIntent = new Intent(this, SongsActivity.class);
    songspec.setContent(songsIntent);

    // Tab for Videos
    TabSpec videospec = tabHost.newTabSpec("Videos");
    videospec.setIndicator("Videos", getResources().getDrawable(R.drawable.icon_video_tab));
    Intent videosIntent = new Intent(this, VideosActivity.class);
    videospec.setContent(videosIntent);

    // Adding all TabSpec to TabHost
    tabHost.addTab(photospec); // Adding photos tab
    tabHost.addTab(songspec); // Adding songs tab
    tabHost.addTab(videospec); // Adding videos tab
      }


@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.activity_tab_layout, menu);
    return true;
          }

     }
4

1 に答える 1

0

私はこの問題を解決できます。Android 3.0 および Advanced バージョンは TabActivity をサポートしていません。または、それ以前のバージョンを使用していてもエラーが発生する場合は、次のコード行を変更してください。- TabHost tabHost = getTabHost();、import.app.TabActivity、および TabHost tabHost = ( TabHost)findViewById(R.id.tabhost)。

于 2013-04-06T05:42:53.797 に答える