TabHost标签

一 . 自定义标签
二 . ViewPager
三. ScrollView

image.png

----------------效果图----如下---------------

image.png

我们定义一个selector选择器
-----------bg.xml-------------

<item android:state_selected="true"
android:drawable="@drawable/bg_selected"
></item>
<item android:drawable="@drawable/bg_normal"></item>
在 activity.xml-----------------------代码如下

···
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <TabWidget
         android:id="@android:id/tabs"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >
    </TabWidget>

    <FrameLayout
        android:id="@android:id/tabcontent"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1" >
        <!-- 首页 -->
        <LinearLayout 
            android:id="@+id/line1"
            android:layout_width="match_parent"
              android:layout_height="match_parent"
           
            >
            <TextView 
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:text="首页"
                android:textSize="30sp"
                android:gravity="center"
                />
            
        </LinearLayout>
        <!-- 中间-->
        <LinearLayout 
            android:id="@+id/line2"
            android:layout_width="match_parent"
              android:layout_height="match_parent"
           
            >
            <TextView 
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:text="中间"
                android:textSize="30sp"
                android:gravity="center"
                />
            
        </LinearLayout>
        <!-- 最后 -->
        <LinearLayout 
            android:id="@+id/line3"
            android:layout_width="match_parent"
              android:layout_height="match_parent"
           
            >
            <TextView 
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:text="最后"
                android:textSize="30sp"
                android:gravity="center"
                />
            
        </LinearLayout>
    </FrameLayout>
</LinearLayout>

</TabHost>
···
在定义一个tab.xml---------------------
*********代码如下****************
···
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/bg"
>

  <TextView 
      android:id="@+id/tv_title"
      android:layout_width="match_parent"
     android:layout_height="match_parent"
     android:gravity="center"
     android:text="首页"
     android:textColor="@android:color/white"
     android:textSize="22sp"
      />

</LinearLayout>

···
MainActivity***代码如下************
···
package com.example.app08_tabhost;

import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.TabHost;
import android.widget.TabHost.TabSpec;
import android.widget.TextView;

public class MainActivity extends Activity {
private TabHost tabhost;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
tabhost=(TabHost) findViewById(R.id.tabhost);
tabhost.setup();//找到 Tabwidget和framelayout
//添加标签页
TabSpec tab1 = tabhost.newTabSpec("tab1");
//指定标签
// tab1.setIndicator("首页",getResources().getDrawable(R.drawable.i1));
tab1.setIndicator(createView("首页"));

    //指定标签页内容
    tab1.setContent(R.id.line1);
    tabhost.addTab(tab1);
    //添加标签页
    TabSpec tab2 = tabhost.newTabSpec("tab2");
    //指定标签
      tab2.setIndicator(createView("第二页"));

// tab2.setIndicator("中间",getResources().getDrawable(R.drawable.i2));
//指定标签页内容
tab2.setContent(R.id.line2);
tabhost.addTab(tab2);
//添加标签页
TabSpec tab3 = tabhost.newTabSpec("tab3");
//指定标签
tab3.setIndicator(createView("第三页"));
// tab3.setIndicator("最后页",getResources().getDrawable(R.drawable.i7));
//指定标签页内容
tab3.setContent(R.id.line3);
tabhost.addTab(tab3);

}
private View createView(String text){
    View view =View.inflate(this, R.layout.tab, null);
    TextView tv_title=(TextView) view.findViewById(R.id.tv_title);
    tv_title.setText(text);
            return view;
    
}

}

···

************效果图*************


image.png

我们定义一个选择器 selector和 shape
*********代码如下-----------
************point_selector.xml************
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:state_enabled="false"
android:drawable="@drawable/point_shape"></item>
<item android:state_enabled="true"
android:drawable="@drawable/point_shape2"></item>

</selector>
************point_shape.xml************
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval"

>
<size 
    android:width="8dp"
    android:height="8dp"
    />
<solid 
    android:color="#44000000"
    />

</shape>
************<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval"

>
<size 
    android:width="8dp"
    android:height="8dp"
    />
<solid 
    android:color="#44000000"
    />

</shape>
**************point_shape2.xml*************
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval"

>
<size 
    android:width="8dp"
    android:height="8dp"
    />
<solid 
    android:color="#ff0000"
    />

</shape>
在******activity.xml***********
···
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="${relativePackage}.${activityClass}" >

<android.support.v4.view.ViewPager
    android:id="@+id/vp_main"
    android:layout_width="match_parent"
    android:layout_height="180dp" />

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignBottom="@id/vp_main"
    android:background="#44000000"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/tv_title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_horizontal"
        android:padding="3dp"
        android:text="广告标题"
        android:textColor="#ffffff" />
    <LinearLayout 
        android:id="@+id/ll_point_group"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:layout_gravity="center_horizontal"
        
        >
        
    </LinearLayout>
</LinearLayout>

</RelativeLayout>
···
在MainActivity中***********代码如下********
···
package com.example.test13_viewpager;

import java.util.ArrayList;

import android.app.Activity;
import android.os.Bundle;
import android.os.Handler;
import android.support.v4.view.PagerAdapter;
import android.support.v4.view.ViewPager;
import android.support.v4.view.ViewPager.OnPageChangeListener;
import android.util.Log;
import android.view.MotionEvent;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;
import android.widget.Toast;

public class MainActivity extends Activity {
private ViewPager vp_main;
private TextView tv_title;
private LinearLayout ll_point_group;
private ArrayList<ImageView> imageViews;
private int prePosition=0;//上一次高亮显示的位置
private Handler handler=new Handler(){
public void handleMessage(android.os.Message msg){
int item = vp_main.getCurrentItem() + 1;
vp_main.setCurrentItem(item);
//延迟发消息
handler.sendEmptyMessageDelayed(0, 3000);
};
};
//是否已经拖拽
private boolean isDragging =false;
//图片资源id
private int[] imgeId={R.drawable.a,
R.drawable.b,R.drawable.c,R.drawable.d,R.drawable.e};
//图片标题集合
private String[] imgDescrintions={
"周末大放送","家电买一送一","京东火锅节","预约新机","有范"
};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//ListView的使用
//1.在布局文件中定义ViewPager
//2.在代码中实例化viewpager
setContentView(R.layout.activity_main);
vp_main=(ViewPager) findViewById(R.id.vp_main);
tv_title=(TextView) findViewById(R.id.tv_title);
ll_point_group=(LinearLayout) findViewById(R.id.ll_point_group);
//3.准备数据
imageViews=new ArrayList<ImageView>();
for (int i = 0; i < imgeId.length; i++) {
ImageView imageView = new ImageView(this);
//设置背景图片
imageView.setBackgroundResource(imgeId[i]);
//添加到集合
imageViews.add(imageView);
//添加小圆点
ImageView point=new ImageView(this);
//设置背景资源
point.setBackgroundResource(R.drawable.point_selector);
//间距
LinearLayout.LayoutParams params=new
LinearLayout.LayoutParams(8,8);
if (i==0) {
point.setEnabled(true);//红色
}else{
point.setEnabled(false);//灰色
params.leftMargin=8;//左外边距
}

        point.setLayoutParams(params);
        ll_point_group.addView(point);
    }
    //4.设置适配器(pagerAdapter) Item布局 绑定数据
    vp_main.setAdapter(new MyAdapter());
    
    //设置监听viewPager页面的改变
    vp_main.setOnPageChangeListener(new MyPageChangeListener());
    //设置中间位置   保证是imageViews的整数倍
    int item=Integer.MAX_VALUE / 2
            - Integer.MAX_VALUE /2 % imageViews.size();
    vp_main.setCurrentItem(item);//不断的加一 加载
    tv_title.setText(imgDescrintions[prePosition]);
   //发送消息
    handler.sendEmptyMessageDelayed(0, 3000);

}


class MyPageChangeListener implements OnPageChangeListener{
          /**
                    当页面滚动状态变化的时候回调这个方法
          静止-》滑动   或 滑动 -> 静止  或  静止--》拖拽
          * 
          */
    @Override
    public void onPageScrollStateChanged(int state) {
        if (state==ViewPager.SCROLL_STATE_DRAGGING) {//拖拽
            isDragging=true;
        } else if (state==ViewPager.SCROLL_STATE_SETTLING){//滚动
             
        }else if (state==ViewPager.SCROLL_STATE_IDLE&&isDragging ){
            //静止并拖拽
            isDragging=false;
            //重新发送事先移除之前的消息
            handler.removeCallbacksAndMessages(null);
            handler.sendEmptyMessageDelayed(0, 3000);
            
        }
    }
                  /**
                   * 当前页面滚动了的时候回调的方法
                   * position  当前页面的位置
                   * positionOffset   滑动页面的半分比
                   * positionOffsetPixels 在屏幕上滑动的像素
                   */
    @Override
    public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
        
    }
    /**
       当某个页面被选中了的时候
     postion   被选中页面的位置
    */

    @Override// 当某个页面被选中了的时候
    public void onPageSelected(int position) {
        int realPosition =position % imageViews.size();
        //设置对页面的文本信息
        tv_title.setText(imgDescrintions[realPosition]);
        //把上一个高亮的设置灰色
        ll_point_group.getChildAt(realPosition)
        .setEnabled(false);
        //当前的设置为红色
    ll_point_group.getChildAt(realPosition)
    .setEnabled(true);
    prePosition=realPosition;
        
    }
    
}
class MyAdapter extends PagerAdapter{

    @Override//得到图片的总数
    public int getCount() {
        
        return Integer.MAX_VALUE;//int类型的最大值
    
    }

    @Override//比较 View 和Object 是否是同一个实例
    //view 页面        object 是instantiateItem返回的结果
    public boolean isViewFromObject(View view, Object object) {
        
        return view == object;
    }
        /**类似getView的方法
         * container  viewPager自身
         * position 当前实例化页面的位置(下标)
         *
         * */
    @Override//实例化
    public Object instantiateItem(ViewGroup container, int position) {
        int realPosition = position  % imageViews.size();
        
        ImageView imageView = imageViews.get(realPosition);
         
         container.addView(imageView);//添加到ViewPager
         //触摸监听
         imageView.setOnTouchListener(new View.OnTouchListener() {
            
            @Override
            public boolean onTouch(View v, MotionEvent event) {
                switch (event.getAction()) {//获取动作
                case MotionEvent.ACTION_DOWN://按下
                    //移除消息
                    handler.removeCallbacksAndMessages(null);
                    break;
                case MotionEvent.ACTION_MOVE://移动
                    //移除消息
                //  handler.removeCallbacksAndMessages(null);
                    break;
                case MotionEvent.ACTION_CANCEL://取消
                    //移除消息
                    handler.removeCallbacksAndMessages(null);
                    handler.sendEmptyMessageDelayed(0, 3000);
                        break;
                case MotionEvent.ACTION_UP://抬起
                    handler.removeCallbacksAndMessages(null);
                    handler.sendEmptyMessageDelayed(0, 3000);
                    break;

                }
                
                return false;
            }
        });
         imageView.setTag(position);//设置下标
         //给图片设置监听
         imageView.setOnClickListener(new View.OnClickListener() {
            
            @Override
            public void onClick(View v) {
                
             int position =(Integer) v.getTag() % imageViews.size();    
                //获取文字
            String text= imgDescrintions[position];
            Toast.makeText(MainActivity.this, text, Toast.LENGTH_SHORT).show();
            
            }
        });
        // Log.e("TAG","instantiateItem---->"+position+"imageView-->"+imageView);
        return imageView;
    }
    
    
    @Override//释放资源              1.container值得是Viewpager自身  2.下标,要释放的位置    3.object 要释放的页面
    public void destroyItem(ViewGroup container, int position, Object object) {
        
        container.removeView((View) object);
        
    }
}

}

···
***************ScrollView**************
效果图*******************如下


image.png

scroll.xml***********代码如下********
···
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="${relativePackage}.${activityClass}" >
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>

      <Button 
       android:layout_width="match_parent"
      android:layout_height="wrap_content"
        android:text="按钮"
       />
         <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="里面文字自己定义" />

</LinearLayout>
</ScrollView>
</RelativeLayout>

···
在 MainActivity中**************
findViewById ().setOnClickListener(this);
public void onClick(View v){
startActivity(new Intent (MainActivity.this,SecondActivity.class))
}

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,047评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,807评论 3 386
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,501评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,839评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,951评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,117评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,188评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,929评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,372评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,679评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,837评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,536评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,168评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,886评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,129评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,665评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,739评论 2 351

推荐阅读更多精彩内容

  • //通过获得资源文件进行设置。根据不同的情况R.color.red也可以是R.string.red或者R.draw...
    gogoingmonkey阅读 1,933评论 0 2
  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,885评论 25 707
  • afinalAfinal是一个android的ioc,orm框架 https://github.com/yangf...
    passiontim阅读 15,417评论 2 45
  • 宋凡平走到了城东的长途汽车站,他看到一个戴红袖章的人手里拿着木棍站在台阶上,这个人看到宋凡平从桥上走下来时,立刻转...
    陶子青青阅读 1,146评论 0 0
  • “HTML的标签是给内容添加相关语义的而不是改变内容样式的,需要给内容添加样式需要用到CSS”以江哥的教诲来引出C...
    心之壁阅读 102评论 0 0