菜單佈局記錄篇

来源:http://www.cnblogs.com/LiuZhen/archive/2017/11/20/7865625.html
-Advertisement-
Play Games

效果如圖,很常見的一種佈局方式,只是沒有採用radiobutton,方法都很多,很多人都自定義寫在一個view裡面,不過代碼量偏大,所以還是xml寫吧 這樣寫下來感覺代碼量還是挺少的,而且很好擴展,然後在點擊的時候加了個回彈動畫,頓時體驗好多了 public class MainActivity e ...


 

效果如圖,很常見的一種佈局方式,只是沒有採用radiobutton,方法都很多,很多人都自定義寫在一個view裡面,不過代碼量偏大,所以還是xml寫吧

這樣寫下來感覺代碼量還是挺少的,而且很好擴展,然後在點擊的時候加了個回彈動畫,頓時體驗好多了

public class MainActivity extends BaseActivity implements IMainView ,ViewPager.OnPageChangeListener{

    @BindView(R.id.viewPager)
    ViewPager viewPager;

    private MainAdapter adapter;
    private SparseArray<CheckBox> menus = new SparseArray<>();

    public static void start(Context context) {
        start(context, null);
    }

    public static void start(Context context, Intent extras) {
        Intent intent = new Intent();
        intent.setClass(context, MainActivity.class);
        if (extras != null) {
            intent.putExtras(extras);
        }
        context.startActivity(intent);
    }

    @Override
    public int layoutID() {
        return R.layout.activity_main;
    }

    @Override
    public void init() {
        adapter = new MainAdapter(getSupportFragmentManager());
        viewPager.setAdapter(adapter);
        viewPager.setOffscreenPageLimit(FragmentHelper.getCount());
        viewPager.addOnPageChangeListener(this);

        addTab(findViewById(R.id.home),0);
        addTab(findViewById(R.id.contact),1);
        addTab(findViewById(R.id.community),2);
        addTab(findViewById(R.id.me),3);
        select(0);
    }

    @Override
    public void success() {

    }

    @Override
    public void error() {

    }

    public void click(View view){

        int position = 0;
        switch (view.getId()){
            case R.id.home:
                position = 0;
                break;
            case R.id.contact:
                position = 1;
                break;
            case R.id.community:
                position = 2;
                break;
            case R.id.me:
                position = 3;
                break;
        }
        select(position);
    }
    /**添加首頁按鈕緩存*/
    private void addTab(View view,int position){
        ViewGroup group = cover(view);
        CheckBox checkBox = cover(group.getChildAt(0));
        checkBox.setChecked(false);
        menus.put(position,checkBox);
    }
    /**選擇菜單*/
    private void select(int position){
        if (menus.get(position).isChecked())
            return;//防止執行多次
        Log.e("tag",position+"");
        for (int i = 0;i < menus.size();i++) {
            CheckBox box = menus.get(i);
            if (box == null)
                continue;
            if (i == position) {
                box.setChecked(true);
            }else
                box.setChecked(false);
        }
        viewPager.setCurrentItem(position, false);
    }


    @Override
    public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {

    }

    @Override
    public void onPageSelected(int position) {
        select(position);
    }

    @Override
    public void onPageScrollStateChanged(int state) {

    }
}
MainActivity
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:clipChildren="false"
    android:clipToPadding="false"
    android:orientation="vertical">

    <android.support.v4.view.ViewPager
        android:id="@+id/viewPager"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:clipChildren="false"
        android:clipToPadding="false"
        android:weightSum="4">
        <LinearLayout android:id="@+id/home"
            android:layout_width="@dimen/dp_0"
            android:layout_height="match_parent"
            android:background="@drawable/shape_line"
            android:padding="@dimen/dp_3"
            android:clipChildren="false"
            android:clipToPadding="false"
            android:onClick="click"
            android:orientation="vertical"
            android:layout_weight="1">

            <com.fragmentapp.home.view.BounceView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/selected_main_home"
                android:clickable="false"
                android:checked="true"
                android:button="@null"
                android:layout_gravity="center"/>

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textColor="#696868"
                android:textSize="@dimen/sp_11sp"
                android:layout_gravity="center_horizontal"
                android:layout_marginTop="@dimen/dp_2"
                android:text="首頁"/>

        </LinearLayout>

        <LinearLayout android:id="@+id/contact"
            android:layout_width="@dimen/dp_0"
            android:layout_height="match_parent"
            android:background="@drawable/shape_line"
            android:padding="@dimen/dp_3"
            android:clipChildren="false"
            android:clipToPadding="false"
            android:onClick="click"
            android:orientation="vertical"
            android:layout_weight="1">

            <com.fragmentapp.home.view.BounceView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/selected_main_contact"
                android:clickable="false"
                android:checked="false"
                android:button="@null"
                android:layout_gravity="center"/>

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textColor="#696868"
                android:textSize="@dimen/sp_11sp"
                android:layout_gravity="center_horizontal"
                android:layout_marginTop="@dimen/dp_2"
                android:text="通訊錄"/>

        </LinearLayout>

        <LinearLayout android:id="@+id/community"
            android:layout_width="@dimen/dp_0"
            android:layout_height="match_parent"
            android:background="@drawable/shape_line"
            android:padding="@dimen/dp_3"
            android:clipChildren="false"
            android:clipToPadding="false"
            android:onClick="click"
            android:orientation="vertical"
            android:layout_weight="1">

            <com.fragmentapp.home.view.BounceView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/selected_main_community"
                android:clickable="false"
                android:checked="false"
                android:button="@null"
                android:layout_gravity="center"/>

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textColor="#696868"
                android:textSize="@dimen/sp_11sp"
                android:layout_gravity="center_horizontal"
                android:layout_marginTop="@dimen/dp_2"
                android:text="消息"/>

        </LinearLayout>

        <LinearLayout android:id="@+id/me"
            android:layout_width="@dimen/dp_0"
            android:layout_height="match_parent"
            android:background="@drawable/shape_line"
            android:padding="@dimen/dp_3"
            android:clipChildren="false"
            android:clipToPadding="false"
            android:onClick="click"
            android:orientation="vertical"
            android:layout_weight="1">

            <com.fragmentapp.home.view.BounceView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/selected_main_me"
                android:clickable="false"
                android:checked="false"
                android:button="@null"
                android:layout_gravity="center"/>

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textColor="#696868"
                android:textSize="@dimen/sp_11sp"
                android:layout_gravity="center_horizontal"
                android:layout_marginTop="@dimen/dp_2"
                android:text="我的"/>

        </LinearLayout>

    </LinearLayout>

</LinearLayout>
View Code
public class HomeFragment extends LazyFragment {

    @BindView(R.id.tv_tag)
    TextView tv_tag;

    @Override
    protected int getLayoutId() {
        return R.layout.fragment_home;
    }

    @Override
    protected void init() {
        String tag = getArguments().get("tag").toString();
        if (tag != null)
            tv_tag.setText(tag);
    }

    @OnClick({R.id.search})
    public void search(View view){
        FragmentFactory.start(getActivity(),FragmentFactory.SEARCH);
    }

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

    <TextView android:id="@+id/search"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:drawableLeft="@mipmap/icon_search"
        android:text="搜索"
        android:textColor="#000000"
        android:layout_gravity="center"
        android:textSize="@dimen/sp_17sp"/>

    <TextView android:id="@+id/tv_tag"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="@dimen/sp_17sp"
        android:textColor="@color/colorAccent"
        android:layout_gravity="center"
        android:text="text"/>

</LinearLayout>
public class BounceView extends android.support.v7.widget.AppCompatCheckBox{

    public BounceView(Context context) {
        super(context);
        init();
    }

    public BounceView(Context context, AttributeSet attrs) {
        super(context, attrs);
        init();
    }

    public BounceView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        init();
    }

    private void init(){
        setOnCheckedChangeListener(new OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(CompoundButton compoundButton, boolean b) {
                if (b)
                    startAnimation();
            }
        });
    }

    public void startAnimation() {
        ValueAnimator anim = ValueAnimator.ofInt(-10,0,6,0);

        anim.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
            @Override
            public void onAnimationUpdate(ValueAnimator animation) {
                int curValue = (int) animation.getAnimatedValue();
                layout(
                        getLeft(),
                        curValue+((ViewGroup)getParent()).getPaddingTop(),
                        getRight(),
                        curValue+getHeight()+((ViewGroup)getParent()).getPaddingBottom()
                );
            }
        });
        anim.setInterpolator(new BounceInterpolator());
        anim.setDuration(500);
        anim.start();
    }

}
View Code
public class MainAdapter extends FragmentPagerAdapter {

    public MainAdapter(FragmentManager fm) {
        super(fm);
    }

    @Override
    public Fragment getItem(int position) {
        return FragmentHelper.getFragment(position);
    }

    @Override
    public int getCount() {
        return FragmentHelper.getCount();
    }
}
View Code
public class FragmentHelper {

    private static SparseArray<SoftReference<LazyFragment>> arr = new SparseArray<SoftReference<LazyFragment>>();

    public static LazyFragment getFragment(int pos) {
        LazyFragment fragment = null;
        if (null != arr.get(pos))
            fragment = arr.get(pos).get();
        if (null == fragment) {
            switch (pos) {
                case 0:
                    fragment = new HomeFragment();
                    break;
                case 1:
                    fragment = new HomeFragment();
                    break;
                case 2:
                    fragment = new HomeFragment();
                    break;
                case 3:
                    fragment = new HomeFragment();
                    break;

                default:
                    break;
            }
            Bundle bundle = new Bundle();
            bundle.putString("tag",pos+"");
            fragment.setArguments(bundle);
            arr.put(pos, new SoftReference<LazyFragment>(fragment));
        }
        return fragment;
    }

    public static int getCount(){
        return 4;
    }

}
View Code

fragment採用懶載入方式,這個就不說了

public abstract class LazyFragment extends BaseFragment {

    protected boolean isLoad;//是否載入完

    /**
     * 在這裡實現Fragment數據的緩載入.
     */
    @Override
    public void setUserVisibleHint(boolean isVisibleToUser) {
        super.setUserVisibleHint(isVisibleToUser);
        if(getUserVisibleHint()) {
            isVisible = true;
            onVisible();
        } else {
            isVisible = false;
        }
    }

    protected void onVisible(){
        if(!isPrepared || !isVisible || !isLoad) {
            return;
        }
        init();
        Log.e("tag","init success");
    }

}
View Code

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • IT 行業發展迅速,各種新名詞此起彼伏。身處這樣一個熱點行業,學習是必須的。不打算成為終身學習者的程式員,失業就在明天。 可是,怎麼學呢? 都已經畢業了,每天要上班,不能像以前讀書的時候,整天只是學習,學什麼都有老師教,坐在那兒聽就可以了。 自己從頭看書太辛苦了,網上的文章又太碎片化——是不是報一個 ...
  • IJKPlayer拖動播放進度會導致重新請求數據,未使用已經緩衝好的數據,所以應該儘量控制緩衝區大小,減少不必要的數據損失。 mMediaPlayer.setOption(IjkMediaPlayer.OPT_CATEGORY_PLAYER, "max-buffer-size", 100 * 102 ...
  • 一. 基本函數 1. 根據 sel 得到 class 的實例方法 2. 根據 sel 得到 class 的函數指針 3. 給 class 添加方法 4. 替換 class 的 sel 對應的函數指針,返回值為 sel 對應的原函數指針 5. 交換兩個 method 6. 直接替換 method 的函 ...
  • 一、Objective C 中的基本類型 首先看下 Objective C 的對象模型,每個 Objective C 對象都是一個指向 Class 的指針。Class 的結構如下: struct objc_class { Class _Nonnull isa OBJC_ISA_AVAILABILIT ...
  • 首先這是我自己第一篇博客,如果有什麼不對的,大家指出,積極修改。 cordova是大家做混合開發最經常使用的一款使用HTML, CSS & JS進行移動App開發多平臺共用一套代碼,中文官方網站(http://cordova.axuer.com/),號外一下最近好多國外網站被牆的太嚴重,回歸正題,下 ...
  • strong和copy是常用到的修飾符,那麼什麼時候用strong,什麼時候用copy,先上一段代碼再說(以下代碼直接在ViewController中寫); 先定義兩個數組 viewDidLoad方法 列印結果 可以看到arraystrong隨著arrayMut的改變而改變了,而arraycopy沒 ...
  • Android 如何將手機屏幕投影到 PC 屏幕上或者投影儀上做演示? 公司開發款APP,要給領導演示,總不能用手機面對面演示吧。所以找了好久,找到一款體驗超好的: Total Control-幫助你使用電控制手機(自行下載,精簡版免費)。 其實這個軟體主要是用來用電腦來操控手機屏幕的,功能強大,也 ...
  • 隨著二手車交易市場呈爆髮式增長,二手車估值需要詳細瞭解車輛的狀況和維修歷史,車架號/vin碼是車輛唯一的身份標識,也是瞭解二手車車況的入口。手機掃描vin碼識別技術給車輛估值平臺提供了便捷的查詢入口,通過構建車況自動化查詢平臺,滿足車商隨時隨地查詢車況的需求。技術交流:187 016 868 57 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...