Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android TabHost實現新浪微博菜單界面

Android TabHost實現新浪微博菜單界面

編輯:關於Android編程

先上結果圖:

\

首先是布局文件main.xml:




    

        

        <frameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="0.0dip"
            android:layout_weight="1.0" />

        

        

            

            

            

            

            
        
    

樣式文件style.xml:




    

資源文件dimens.xml:



    
	5.0dip
	
	3.0dip
	10.0dip

drawables.xml:



#00000000

stings.xml:




    SinaWeibo
    首頁
    信息
    我的資料
    搜索
    更多

activity文件:

package com.chao.demo;

import com.chao.demo.R;

import android.app.TabActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.Window;
import android.widget.RadioGroup;
import android.widget.TabHost;
import android.widget.RadioGroup.OnCheckedChangeListener;

public class MainTabActivity extends TabActivity implements
		OnCheckedChangeListener {
	private RadioGroup mainTab;
	private TabHost tabhost;
	private Intent iHome;
	private Intent iNews;
	private Intent iInfo;
	private Intent iSearch;
	private Intent iMore;

	@Override
	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		requestWindowFeature(Window.FEATURE_NO_TITLE);
		setContentView(R.layout.main);
		mainTab = (RadioGroup) findViewById(R.id.main_tab);
		mainTab.setOnCheckedChangeListener(this);
		tabhost = getTabHost();

		iHome = new Intent(this, HomeActivity.class);
		tabhost.addTab(tabhost
				.newTabSpec("iHome")
				.setIndicator(getResources().getString(R.string.main_home),
						getResources().getDrawable(R.drawable.icon_1_n))
				.setContent(iHome));

		iNews = new Intent(this, NewsActivity.class);
		tabhost.addTab(tabhost
				.newTabSpec("iNews")
				.setIndicator(getResources().getString(R.string.main_news),
						getResources().getDrawable(R.drawable.icon_2_n))
				.setContent(iNews));

		iInfo = new Intent(this, MyInfoActivity.class);
		tabhost.addTab(tabhost
				.newTabSpec("iInfo")
				.setIndicator(getResources().getString(R.string.main_my_info),
						getResources().getDrawable(R.drawable.icon_3_n))
				.setContent(iInfo));

		iSearch = new Intent(this, SearchActivity.class);
		tabhost.addTab(tabhost
				.newTabSpec("iSearch")
				.setIndicator(getResources().getString(R.string.menu_search),
						getResources().getDrawable(R.drawable.icon_4_n))
				.setContent(iSearch));

		iMore = new Intent(this, MoreActivity.class);
		tabhost.addTab(tabhost
				.newTabSpec("iMore")
				.setIndicator(getResources().getString(R.string.more),
						getResources().getDrawable(R.drawable.icon_5_n))
				.setContent(iMore));
	}

	// 監聽器監聽點擊的按鈕 將相應的界面顯示出來
	@Override
	public void onCheckedChanged(RadioGroup group, int checkedId) {
		switch (checkedId) {
		case R.id.radio_button0:
			this.tabhost.setCurrentTabByTag("iHome");
			break;
		case R.id.radio_button1:
			this.tabhost.setCurrentTabByTag("iNews");
			break;
		case R.id.radio_button2:
			this.tabhost.setCurrentTabByTag("iInfo");
			break;
		case R.id.radio_button3:
			this.tabhost.setCurrentTabByTag("iSearch");
			break;
		case R.id.radio_button4:
			this.tabhost.setCurrentTabByTag("iMore");
			break;
		}
	}
}
HomeActivity.java:

package com.chao.demo;

import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;

public class HomeActivity extends Activity {

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		TextView textView=new TextView(this);
		textView.setText("這是首頁?");
		setContentView(textView);
	}
}
其他界面文件類似不再給出

完整工程地址:http://download.csdn.net/detail/u014071669/7187077






  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved