Android 自定義BaseActivity辐啄,BaseFragment

一采章、需求分析

項目中的activity存在大量相同的方法和變量生命,且在activity的初始化方法中壶辜,也有部分代碼相同悯舟,為方便管理和使用activity,因此自定義一個適用自己的BaseActivity士复,在這里图谷,BaseActivity不包含任何頁面內(nèi)容翩活。

二、代碼實現(xiàn)

第一部分:BaseActivity

新建一個class名為“BaseActivity”便贵,內(nèi)容如下菠镇。代碼中已有注釋,這里不在說明承璃。

public abstract class BaseActivity< B extends ViewBinding > extends AppCompatActivity {
    protected LoadingDialog loadDialog;
    protected B view;
    protected BaseActivity< B > activity;
    protected Handler handler;
    protected Bundle savedInstanceState;
    protected final Map< String, IBasePresenter<?> > presenterMap = new HashMap<> ( );

    @Override
    @SuppressLint ( { "SourceLockedOrientationActivity" } )
    protected void onCreate ( @Nullable Bundle savedInstanceState ) {
        super.onCreate ( savedInstanceState );
        if ( userBaseOrientation ( ) ) {
            if ( App.options.vertical ) {
                //鎖定豎屏
                setRequestedOrientation ( ActivityInfo.SCREEN_ORIENTATION_PORTRAIT );
            } else {
                //鎖定橫屏
                setRequestedOrientation ( ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE );
            }
        } else {
            Logger.i ( "不使用默認(rèn)方向鎖定功能" );
        }
        this.savedInstanceState = savedInstanceState;
        this.activity = this;
        this.handler = new Handler ( Looper.getMainLooper ( ) );
        this.loadDialog = new LoadingDialog ( activity );
        this.view = this.setBaseView ( );
        if ( this.view != null ) {
            if ( this.view.getRoot ( ).getLayoutParams ( ) == null ) {
                this.view.getRoot ( ).setLayoutParams ( new LayoutParams ( - 1, - 1 ) );
            }

            this.setContentView ( this.view.getRoot ( ) );
        }

        this.onBaseCreate ( );
        ListenerManager.addListener ( this );
    }

    public abstract B setBaseView ( );

    public abstract void onBaseCreate ( );

    public void addPresenter ( IBasePresenter< ? > presenter ) {
        if ( presenter != null ) {
            String name = presenter.getClass ( ).getSimpleName ( );
            if ( ! TextUtils.isEmpty ( name ) ) {
                this.presenterMap.put ( name, presenter );
            }
        }
    }

    protected boolean userBaseOrientation ( ) {
        return true;
    }

    private void detachView ( ) {
        for ( IBasePresenter< ? > presenter : this.presenterMap.values ( ) ) {
            try {
                presenter.detachView ( );
            } catch ( Exception var4 ) {
                var4.printStackTrace ( );
            }
        }
    }

    public void toast ( String s ) {
        if ( ! TextUtils.isEmpty ( s ) ) {
            Toast.makeText ( this.activity, s, Toast.LENGTH_SHORT ).show ( );
        }

    }

    public void toastAndFinish ( String s ) {
        if ( ! TextUtils.isEmpty ( s ) ) {
            Toast.makeText ( this.activity, s, Toast.LENGTH_SHORT ).show ( );
        }

        this.finish ( );
    }

    public void showLoadingDialog ( String message ) {
        loadDialog.setCancelable ( true );
        loadDialog.show ( message );
    }

    public void showLoadingDialogFix ( String message ) {
        loadDialog.setCancelable ( false );
        loadDialog.show ( message );
    }

    public void closeLoadingDialog ( ) {
        if ( loadDialog != null ) {
            loadDialog.dismiss ( );
        }
    }

    public void showLoadingDialog ( ) {
        loadDialog.show ( null );
    }

    public void showLoadingDialogFinish ( String text,
                                          DialogInterface.OnDismissListener listener ) {
        LoadingDialog loadDialog = new LoadingDialog ( activity );
        loadDialog.setCancelable ( true );
        loadDialog.setCanceledOnTouchOutside ( false );
        loadDialog.setOnDismissListener ( listener );
        loadDialog.show ( text );
    }

    public void openActivity ( Class< ? > mClass ) {
        this.startActivity ( new Intent ( this.activity, mClass ) );
    }

    public void openActivity ( Class< ? > mClass, int code ) {
        this.startActivityForResult ( new Intent ( this.activity, mClass ), code );
    }

    public void openActivity ( Intent intent ) {
        this.startActivity ( intent );
    }

    public void openActivity ( Intent intent, int code ) {
        this.startActivityForResult ( intent, code );
    }

    public void hideKeyboard ( ) {
        View view = this.getCurrentFocus ( );
        if ( view != null ) {
            InputMethodManager inputMethodManager =
                    ( InputMethodManager ) this.getSystemService ( INPUT_METHOD_SERVICE );
            inputMethodManager.hideSoftInputFromWindow ( view.getWindowToken ( ), 2 );
        }

    }

    public void showKeyBoard ( View v ) {
        InputMethodManager im =
                ( InputMethodManager ) this.getSystemService ( INPUT_METHOD_SERVICE );
        im.showSoftInput ( v, 0 );
    }

    @Override
    protected void onDestroy ( ) {
        this.detachView ( );
        this.handler.removeCallbacksAndMessages ( ( Object ) null );
        ListenerManager.remove ( this );
        super.onDestroy ( );
    }

    @Override
    public void onActionListener ( int type, String s ) {
    }

    @Override
    protected void onActivityResult ( int requestCode, int resultCode, @Nullable Intent data ) {
        if ( - 1 == resultCode ) {
            this.onActivityResultOk ( requestCode, data );
        } else {
            super.onActivityResult ( requestCode, resultCode, data );
        }

    }

    protected void onActivityResultOk ( int requestCode, @Nullable Intent data ) {
    }

    public int color ( int resId ) {
        return ContextCompat.getColor ( this.activity, resId );
    }

    public Drawable drawable ( int resId ) {
        Drawable drawable = ContextCompat.getDrawable ( this.activity, resId );
        if ( drawable != null ) {
            drawable.setBounds ( 0, 0, drawable.getMinimumWidth ( ),
                    drawable.getMinimumHeight ( ) );
        }

        return drawable;
    }

    public String getIntentStr ( String key ) {
        return this.activity.getIntent ( ).hasExtra ( key ) ?
                this.activity.getIntent ( ).getStringExtra ( key ) : "";
    }

    public int getIntentInt ( String key ) {
        return this.activity.getIntent ( ).hasExtra ( key ) ?
                this.activity.getIntent ( ).getIntExtra ( key, 0 ) : - 1;
    }

    public boolean getIntentBoolean ( String key ) {
        return this.activity.getIntent ( ).hasExtra ( key ) && this.activity.getIntent ( ).getBooleanExtra ( key, false );
    }

    public int getIntentInt ( String key, int defaultValue ) {
        return this.activity.getIntent ( ).hasExtra ( key ) ?
                this.activity.getIntent ( ).getIntExtra ( key, defaultValue ) : defaultValue;
    }

    public boolean checkIntentOk ( String... keys ) {
        Intent intent = this.getIntent ( );
        int var4 = keys.length;

        for ( String key : keys ) {
            if ( ! intent.hasExtra ( key ) ) {
                return false;
            }
        }

        return true;
    }

    public void setEmpty ( LinearLayout parant, String message ) {
        if ( parant.getChildCount ( ) > 0 ) {
            parant.removeAllViews ( );
        }

        if ( TextUtils.isEmpty ( message ) && App.options.noDataResId != 0 ) {
            ImageView iv = new ImageView ( this );
            iv.setLayoutParams ( new android.widget.LinearLayout.LayoutParams ( - 1,
                    SizeUt.getHeight ( 0.800000011920929D ) ) );
            iv.setPadding ( 0, 20, 0, 20 );
            iv.setImageResource ( App.options.noDataResId );
            iv.setScaleType ( ScaleType.CENTER_INSIDE );
            parant.addView ( iv );
        } else {
            message = TextUtils.isEmpty ( message ) ? "暫無數(shù)據(jù)" : message;
            TextView tv = new TextView ( this );
            tv.setLayoutParams ( new android.widget.LinearLayout.LayoutParams ( - 1,
                    SizeUt.getHeight ( 0.800000011920929D ) ) );
            tv.setGravity ( 17 );
            tv.setPadding ( 10, 50, 10, 50 );
            tv.setTextColor ( - 16777216 );
            tv.setText ( message );
            parant.addView ( tv );
        }

    }
}

至此利耍,BaseActivity已經(jīng)建立完畢,接下來就是使用它盔粹。新建MainActivity(包括xml布局文件)隘梨。使用方法非常簡單。

public class MainActivity extends BaseActivity< ActivityMainBinding > {
    @Override
    public ActivityMainBinding setView ( ) {
        return ActivityMainBinding.inflate ( getLayoutInflater ( ) );
    }

    @Override
    public void onCreate ( ) {
        view.tvTitle.setText("你好舷嗡,Android轴猎!");
    }
}

MainActivity對應(yīng)的xml布局文件如下

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">
    <TextView
        android:id="@+id/tvTitle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>
</LinearLayout>

第二部分:BaseFragment

新建一個class名為BaseFragment,內(nèi)容如下

public abstract class BaseFragment< B extends ViewBinding > extends Fragment {
    protected LayoutInflater inflater;
    protected ViewGroup container;
    protected B view;
    private LoadDialog loadDialog;
    protected final Activity activity;

    public BaseFragment ( Activity activity ) {
        this.activity = activity;
    }

    @Nullable
    @Override
    public View onCreateView ( @NonNull LayoutInflater inflater, @Nullable ViewGroup container,
                               @Nullable Bundle savedInstanceState ) {
        this.inflater = inflater;
        this.container = container;
        view = setView ( );
        loadDialog = new LoadDialog ( activity );
        onCreate ( );
        return view.getRoot ( );
    }
    //忽略跟BaseActivity一樣的內(nèi)容
}

使用方法进萄,新建一個IndexFragment 繼承BaseFragment捻脖。

public class IndexFragment extends BaseFragment< FragmentIndexBinding > {

    public IndexFragment ( Activity activity ) {
        super ( activity );
    }

    @Override
    public FragmentIndexBinding setView ( ) {
        return FragmentIndexBinding.inflate ( inflater, container, true );
    }

    @Override
    public void onCreate ( ) {
    }
}

三、注意事項

1中鼠、以上代碼實現(xiàn)可婶,請使用viewBinding。

android {
    ······
    buildFeatures {
        viewBinding = true
    }
}

2援雇、base可以預(yù)先定義一個容器矛渴,如統(tǒng)一的標(biāo)題,返回鍵等惫搏。獲取到子頁面的viewbinding后具温,用view.addView();方法即可。如遇到layoutParams為空的情況筐赔,請在base中做處理桂躏。
3、BaseFragment為避免activity為空川陆,這里直接使用mainActivity。

四蛮位、總結(jié)

1较沪、通過以上方式建立的BaseActivity和BaseFragment,相對而言失仁,代碼量少很多尸曼。而且base中聲明的方法很明確不容易出錯。不像別的方法如init(),main();doWork();doStart();容易混淆萄焦,稍有不慎可能還會導(dǎo)致空指針控轿。
2冤竹、ViewBinding為android程序猿節(jié)省了不少時間,新項目或在條件允許下茬射,建議更換成它鹦蠕。

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市在抛,隨后出現(xiàn)的幾起案子钟病,更是在濱河造成了極大的恐慌,老刑警劉巖刚梭,帶你破解...
    沈念sama閱讀 206,214評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件肠阱,死亡現(xiàn)場離奇詭異,居然都是意外死亡朴读,警方通過查閱死者的電腦和手機屹徘,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來衅金,“玉大人噪伊,你說我怎么就攤上這事〉涮簦” “怎么了酥宴?”我有些...
    開封第一講書人閱讀 152,543評論 0 341
  • 文/不壞的土叔 我叫張陵,是天一觀的道長您觉。 經(jīng)常有香客問我拙寡,道長,這世上最難降的妖魔是什么琳水? 我笑而不...
    開封第一講書人閱讀 55,221評論 1 279
  • 正文 為了忘掉前任肆糕,我火速辦了婚禮,結(jié)果婚禮上在孝,老公的妹妹穿的比我還像新娘诚啃。我一直安慰自己,他們只是感情好私沮,可當(dāng)我...
    茶點故事閱讀 64,224評論 5 371
  • 文/花漫 我一把揭開白布始赎。 她就那樣靜靜地躺著,像睡著了一般仔燕。 火紅的嫁衣襯著肌膚如雪造垛。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,007評論 1 284
  • 那天晰搀,我揣著相機與錄音五辽,去河邊找鬼。 笑死外恕,一個胖子當(dāng)著我的面吹牛杆逗,可吹牛的內(nèi)容都是我干的乡翅。 我是一名探鬼主播,決...
    沈念sama閱讀 38,313評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼罪郊,長吁一口氣:“原來是場噩夢啊……” “哼蠕蚜!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起排龄,我...
    開封第一講書人閱讀 36,956評論 0 259
  • 序言:老撾萬榮一對情侶失蹤波势,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后橄维,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體尺铣,經(jīng)...
    沈念sama閱讀 43,441評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,925評論 2 323
  • 正文 我和宋清朗相戀三年争舞,在試婚紗的時候發(fā)現(xiàn)自己被綠了凛忿。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,018評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡竞川,死狀恐怖店溢,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情委乌,我是刑警寧澤床牧,帶...
    沈念sama閱讀 33,685評論 4 322
  • 正文 年R本政府宣布,位于F島的核電站遭贸,受9級特大地震影響戈咳,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜壕吹,卻給世界環(huán)境...
    茶點故事閱讀 39,234評論 3 307
  • 文/蒙蒙 一著蛙、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧耳贬,春花似錦踏堡、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至腐魂,卻和暖如春慕的,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背挤渔。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評論 1 261
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留风题,地道東北人判导。 一個月前我還...
    沈念sama閱讀 45,467評論 2 352
  • 正文 我出身青樓嫉父,卻偏偏與公主長得像,于是被迫代替她去往敵國和親眼刃。 傳聞我的和親對象是個殘疾皇子绕辖,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,762評論 2 345

推薦閱讀更多精彩內(nèi)容