android:layout_width=“match_parent”
android:layout_height=“wrap_content”
android:text=“button”/>
<LinearLayout
android:id=“@+id/tab2”
android:orientation=“vertical”
android:layout_width=“match_parent”
android:layout_height=“match_parent” >
<EditText
android:layout_width=“match_parent”
android:layout_height=“wrap_content”
android:text=“edittext”/>
<LinearLayout
android:id=“@+id/tab3”
android:orientation=“vertical”
android:layout_width=“match_parent”
android:layout_height=“match_parent” >
<TextView
android:layout_width=“match_parent”
android:layout_height=“wrap_content”
android:text=“textview”/>
<LinearLayout
android:id=“@+id/tab4”
android:orientation=“vertical”
android:layout_width=“match_parent”
android:layout_height=“match_parent” >
<EditText
android:layout_width=“match_parent”
android:layout_height=“wrap_content”
android:text=“edittext”/>
<TextView
android:layout_width=“match_parent”
android:layout_height=“wrap_content”
android:text=“textview”/>
MainActivity.java(大部分都有注释)
package com.example.tab;
import android.app.Activity;
import android.app.TabActivity;
import android.content.res.Resources;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.TabHost;
import android.widget.TabHost.OnTabChangeListener;
import android.widget.Toast;
public class MainActivity extends Activity {
private TabHost tabs;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//获取该Activity里面的TabHost组件
tabs = (TabHost) findViewById(android.R.id.tabhost);
//初始化TabHost容器
tabs.setup();
//资源对象
Resources res = getResources();
TabHost.TabSpec spec;
//创建第一个Tab页
spec = tabs.newTabSpec(“tab1”)
.setIndicator(“tab1”) //设置标题
.setContent(R.id.tab1); //设置内容
//添加第一个标签页
tabs.addTab(spec);
//res.getDrawable(R.drawable.wo)添加图片
spec = tabs.newTabSpec(“tab2”).setIndicator(“tab2”, res.getDrawable(R.drawable.wo)).setContent(R.id.tab2);
tabs.addTab(spec);
spec = tabs.newTabSpec(“tab3”).setIndicator(“tab3”).setContent(R.id.tab3);
tabs.addTab(spec);
spec = tabs.newTabSpec(“tab4”).setIndicator(“tab4”).setContent(R.id.tab4);
tabs.addTab(spec);
//设置默认选项卡,第几个,从0开始
tabs.setCurrentTab(1);
//标签切换事件处理,setOnTabChangedListener
tabs.setOnTabChangedListener(new OnTabChangeListener(){
//tabId是newTabSpec参数设置的tab页名,
@Override
public void onTabChanged(String tabId) {
if (tabId.equals(“tab1”)) { //第一个标签
Toast.makeText(MainActivity.this, “点击tab1”, Toast.LENGTH_SHORT).show();
}
if (tabId.equals(“tab2”)) { //第二个标签
Toast.makeText(MainActivity.this, “点击tab2”, Toast.LENGTH_SHORT).show();
}
if (tabId.equals(“tab3”)) { //第三个标签
Toast.makeText(MainActivity.this, “点击tab3”, Toast.LENGTH_SHORT).show();
}
if (tabId.equals(“tab4”)) { //第四个标签
Toast.makeText(MainActivity.this, “点击tab4”, Toast.LENGTH_SHORT).show();
}
总结:
各行各样都会淘汰一些能力差的,不仅仅是IT这个行业,所以,不要被程序猿是吃青春饭等等这类话题所吓倒,也不要觉得,找到一份工作,就享受安逸的生活,你在安逸的同时,别人正在奋力的向前跑,这样与别人的差距也就会越来越遥远,加油,希望,我们每一个人,成为更好的自己。
-
BAT大厂面试题、独家面试工具包,
-
资料包括 数据结构、Kotlin、计算机网络、Framework源码、数据结构与算法、小程序、NDK、Flutter,
《Android学习笔记总结+移动架构视频+大厂面试真题+项目实战源码》,点击传送门,即可获取!
题、独家面试工具包, -
资料包括 数据结构、Kotlin、计算机网络、Framework源码、数据结构与算法、小程序、NDK、Flutter,
[外链图片转存中…(img-qKcEEVUE-1714875278357)]
[外链图片转存中…(img-wcklZ0Ec-1714875278358)]
《Android学习笔记总结+移动架构视频+大厂面试真题+项目实战源码》,点击传送门,即可获取!