91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android開發——實現TabHost 隨手滑動切換選項卡功能(絕對實用)

發布時間:2020-10-15 19:28:12 來源:網絡 閱讀:2786 作者:huolailai 欄目:移動開發


    以前用TabHost只是點擊導航欄選項卡才進行切換,今天試了下手勢滑動進行切換,搜了好多資料感覺特別亂,花了好長時間整理了一下終于有效果了,自己寫了一個Demo。


    程序清單1:布局文件

        說明:和我們寫Tabhost布局文件一樣

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout  xmlns:android="http://schemas.android.com/apk/res/android"

    android:orientation="vertical"

    android:layout_width="fill_parent"

    android:layout_height="fill_parent">

    <TabHost

        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">

            <TabWidget android:id="@android:id/tabs"

                android:layout_width="fill_parent" android:layout_height="wrap_content" />

            <FrameLayout android:id="@android:id/tabcontent"

                android:layout_width="fill_parent" android:layout_height="fill_parent" >

                <LinearLayout

                    android:focusable="true"

                    android:focusableInTouchMode="true"

                    android:id="@+id/tab01"

                    android:orientation="vertical"

                    android:layout_width="fill_parent"

                    android:layout_height="fill_parent">

                    <TextView

                        android:layout_height="wrap_content"

                        android:layout_width="wrap_content"

                        android:text="你好"

                        android:textSize="20sp"/>

                    <ListView

                        android:id="@+id/listview"

                        android:layout_width="match_parent"

                        android:layout_height="match_parent"

                        android:dividerHeight="10dp"

                        android:divider="#D1D1D1"

                        >

                    </ListView>

                </LinearLayout>

                <LinearLayout

                    android:id="@+id/tab02"

                    android:orientation="vertical"

                    android:layout_width="fill_parent"

                    android:layout_height="fill_parent">


                    <TextView

                        android:layout_height="wrap_content"

                        android:layout_width="wrap_content"

                        android:text="你好"

                        android:textSize="20sp"/>

                    <ListView

                        android:id="@+id/listview1"

                        android:layout_width="match_parent"

                        android:layout_height="match_parent">

                    </ListView>

                </LinearLayout>

                <LinearLayout

                    android:id="@+id/tab03"

                    android:orientation="vertical"

                    android:layout_width="fill_parent"

                    android:layout_height="fill_parent">

                    <TextView

                        android:layout_height="wrap_content"

                        android:layout_width="wrap_content"

                        android:text="你好"

                        android:textSize="20sp"/>

                    <ListView

                        android:id="@+id/listview2"

                        android:layout_width="match_parent"

                        android:layout_height="360dp"

                        >

                    </ListView>

                </LinearLayout>

                </FrameLayout>

        </LinearLayout>

    </TabHost>

</LinearLayout>

    

程序清單2:

 MainActivity.java

public class MainActivity extends TabActivity {

    private static final int SWIPE_MIN_DISTANCE = 120;

    private static final int SWIPE_MAX_OFF_PATH = 250;

    private static final int SWIPE_THRESHOLD_VELOCITY = 200;

    private GestureDetector gestureDetector;

    View.OnTouchListener gestureListener;

    private Animation slideLeftIn;

    private Animation slideLeftOut;

    private Animation slideRightIn;

    private Animation slideRightOut;

    private ViewFlipper viewFlipper;

    int currentView = 0;

    private static int maxTabIndex = 2;


    /** Called when the activity is first created. */

    @Override

    public void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        setContentView(R.layout.activity_main);


        TabHost tabHost = getTabHost();

        tabHost.addTab(tabHost.newTabSpec("tab1").setIndicator("tab1 ")

                .setContent(R.id.tab01));


        tabHost.addTab(tabHost.newTabSpec("tab2").setIndicator("tab2 ")

                .setContent(R.id.tab02));


        tabHost.addTab(tabHost.newTabSpec("tab3").setIndicator("tab3 ")

                .setContent(R.id.tab03));

        tabHost.setCurrentTab(0);

        slideLeftIn = AnimationUtils.loadAnimation(this, R.anim.slide_left_in);

        slideLeftOut = AnimationUtils

                .loadAnimation(this, R.anim.slide_left_out);

        slideRightIn = AnimationUtils

                .loadAnimation(this, R.anim.slide_right_in);

        slideRightOut = AnimationUtils.loadAnimation(this,

                R.anim.slide_right_out);


        gestureDetector = new GestureDetector(new MyGestureDetector());

        gestureListener = new View.OnTouchListener() {

            public boolean onTouch(View v, MotionEvent event) {

                if (gestureDetector.onTouchEvent(event)) {

                    return true;

                }

                return false;

            }

        };

    }

    class MyGestureDetector extends GestureDetector.SimpleOnGestureListener {

        @Override

        public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX,

                               float velocityY) {

            TabHost tabHost = getTabHost();

            try {

                if (Math.abs(e1.getY() - e2.getY()) > SWIPE_MAX_OFF_PATH)

                    return false;

                if (e1.getX() - e2.getX() > SWIPE_MIN_DISTANCE

                        && Math.abs(velocityX) > SWIPE_THRESHOLD_VELOCITY) {

                    Log.i("test ", "right");

                    if (currentView == maxTabIndex) {

                        currentView = 0;

                    } else {

                        currentView++;

                    }

                    tabHost.setCurrentTab(currentView);

                } else if (e2.getX() - e1.getX() > SWIPE_MIN_DISTANCE

                        && Math.abs(velocityX) > SWIPE_THRESHOLD_VELOCITY) {

                    Log.i("test ", "left");

                    if (currentView == 0) {

                        currentView = maxTabIndex;

                    } else {

                        currentView--;

                    }

                    tabHost.setCurrentTab(currentView);

                }

            } catch (Exception e) {

// nothing

            }

            return false;

        }

    }

//@Override

//public boolean onTouchEvent(MotionEvent event) {

//if (gestureDetector.onTouchEvent(event))

//return true;

//else

//return false;

//}

    @Override

    public boolean dispatchTouchEvent(MotionEvent event) {

        if(gestureDetector.onTouchEvent(event)){

            event.setAction(MotionEvent.ACTION_CANCEL);

        }

        return super.dispatchTouchEvent(event);


    }

}


當然這里會用到關于滑動的四個xml文件   我們將它們存在 res\anim中 (anim文件要自己新建)

1、 slide_left_in

2、slide_lefe_out

3、slide_right_in

4、slide_right_out


1、 slide_left_in.xml

<?xml version="1.0" encoding="utf-8"?>

<set xmlns:android="http://schemas.android.com/apk/res/android" >


    <translate

        android:duration="500"

        android:fromXDelta="100%p"

        android:toXDelta="0" />


    <alpha

        android:duration="500"

        android:fromAlpha="0.0"

        android:toAlpha="1.0" />


</set>

2、slide_lefe_out.xml

<?xml version="1.0" encoding="utf-8"?>

<set xmlns:android="http://schemas.android.com/apk/res/android" >


    <translate

        android:duration="500"

        android:fromXDelta="0"

        android:toXDelta="-100%p" />


    <alpha

        android:duration="500"

        android:fromAlpha="1.0"

        android:toAlpha="0.0" />


</set>

 3、slide_right_in.xml

<?xml version="1.0" encoding="utf-8"?>

<set xmlns:android="http://schemas.android.com/apk/res/android" >


    <translate

        android:duration="500"

        android:fromXDelta="-100%p"

        android:toXDelta="0" />


    <alpha

        android:duration="500"

        android:fromAlpha="0.0"

        android:toAlpha="1.0" />


</set>

 4、slide_right_out.xml

<?xml version="1.0" encoding="utf-8"?>

<set xmlns:android="http://schemas.android.com/apk/res/android" >

    <translate

        android:duration="1500"

        android:fromXDelta="0"

        android:toXDelta="100%p" />


    <alpha

        android:duration="1500"

        android:fromAlpha="1.0"

        android:toAlpha="0.1" />

</set>

好了現在就完成了。來幾張效果圖:

Android開發——實現TabHost 隨手滑動切換選項卡功能(絕對實用)    Android開發——實現TabHost 隨手滑動切換選項卡功能(絕對實用)      Android開發——實現TabHost 隨手滑動切換選項卡功能(絕對實用)

附件:http://down.51cto.com/data/2365745
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

五指山市| 浦城县| 大港区| 沙湾县| 西乌珠穆沁旗| 泰和县| 杭州市| 玉山县| 吉首市| 祁门县| 西盟| 将乐县| 博客| 洪洞县| 全州县| 北安市| 岳阳县| 平昌县| 和静县| 尚义县| 青田县| 永兴县| 钟山县| 胶州市| 辰溪县| 太和县| 喀喇沁旗| 集安市| 东丽区| 泾源县| 文山县| 蓬莱市| 寻甸| 连平县| 调兵山市| 苏尼特右旗| 称多县| 资兴市| 庆安县| 云安县| 子长县|