12.常用控件

BottomNavigationView、下拉刷新微饥、滑動菜單
一、BottomNavigationView
在 build.gradle 文件中增加依賴:
compile 'com.android.support:design:25.0.0'

在 res/menu/ 目錄下創(chuàng)建一個 xml 文件

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
      xmlns:app="http://schemas.android.com/apk/res-auto">

    <item android:id="@+id/bottom_one"
          android:icon="@drawable/at"
          android:title="one" />

    <item android:id="@+id/bottom_two"
          android:icon="@drawable/at"
          android:title="two" />

    <item android:id="@+id/bottom_three"
          android:icon="@drawable/at"
          android:title="three" />

    <item android:id="@+id/bottom_four"
          android:icon="@drawable/at"
          android:title="four" />
</menu>

activity.main:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    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="com.lewanjiang.buttonnav1.MainActivity">

    <TextView
        android:id="@+id/text_view"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"/>

    <android.support.design.widget.BottomNavigationView
        android:id="@+id/botton_nav"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        app:menu="@menu/menu_botton_nav"
        app:itemBackground="@color/colorPrimary"
        app:itemIconTint="#fff"
        app:itemTextColor="#fff" />
    
</RelativeLayout>

MainActivity:

mBottomNavigationView.setOnNavigationItemSelectedListener(new BottomNavigationView.OnNavigationItemSelectedListener() {
            @Override
            public boolean onNavigationItemSelected(@NonNull MenuItem item) {
                switch (item.getItemId()) {
                    case R.id.bottom_one:
                        mTextView.setText("one");
                        break;
                    case R.id.bottom_two:
                        mTextView.setText("two");
                        break;
                    case R.id.bottom_three:
                        mTextView.setText("three");
                        break;
                    case R.id.bottom_four:
                        mTextView.setText("four");
                        break;
                }
                return true;
            }
        });

二、下拉刷新

 <android.support.v4.widget.SwipeRefreshLayout
        android:id="@+id/swipe_refesh"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >
</android.support.v4.widget.SwipeRefreshLayout>


SwipeRefreshLayout swipeRefresh = (SwipeRefreshLayout) findViewById(R.id.swipe_refesh);
swipeRefresh.setColorSchemeResources(R.color.colorPrimary);
swipeRefresh.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
            @Override
            public void onRefresh(){
                //dosomething
            }
        });
//請求結(jié)束時啊易,要停止刷新
swipeRefresh.setRefreshing(false);

三饮睬、ScrollView

<ScrollView
        android:id="@+id/weather_layout"
        android:scrollbars="none"
        android:overScrollMode="never"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

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

            <include layout="@layout/title" />
            <include layout="@layout/now" />
            <include layout="@layout/forecast" />
            <include layout="@layout/aqi" />
            <include layout="@layout/suggestion" />

        </LinearLayout>

    </ScrollView>

四租谈、Bing圖片背景

<ImageView
        android:id="@+id/bing_pic_img"
        android:scaleType="centerCrop"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

ImageView bingPicImg = (ImageView) findViewById(R.id.bing_pic_img);
        String bingPic = prefs.getString("bing_pic",null);
        if (bingPic != null) {
            Glide.with(this).load(bingPic).into(bingPicImg);
        } else {
            loadBingPic();
        }

private void loadBingPic() {
        String requestBingPic = "http://guolin.tech/api/bing_pic";
        HttpUtil.sendOkHttpRequest(requestBingPic, new Callback() {
            @Override
            public void onFailure(Call call, IOException e) {

            }

            @Override
            public void onResponse(Call call, Response response) throws IOException {
                final String bingPic = response.body().string();
                SharedPreferences.Editor editor = PreferenceManager.getDefaultSharedPreferences(WeatherActivity.this).edit();
                editor.putString("bing_pic",bingPic);
                editor.apply();
                runOnUiThread(new Runnable() {
                    @Override
                    public void run() {
                        Glide.with(WeatherActivity.this).load(bingPic).into(bingPicImg);
                    }
                });
            }
        });
    }

五、背景和狀態(tài)欄融合

if (Build.VERSION.SDK_INT >= 21) {
            View decorView = getWindow().getDecorView();
            decorView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN | View.SYSTEM_UI_FLAG_LAYOUT_STABLE);
            getWindow().setStatusBarColor(Color.TRANSPARENT);
        }

android:fitsSystemWindows="true"

六、滑動菜單

標題布局增加一個Button

<android.support.v4.widget.DrawerLayout
        android:id="@+id/drawer_layout"
        android:layout_height="match_parent"
        android:layout_width="match_parent" >
//布局內(nèi)容
  <fragment
            android:id="@+id/choose"
            android:name="com.lewanjiang.weather.ChooseFragment"
            android:layout_gravity="start"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
    </android.support.v4.widget.DrawerLayout>

drawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);
        navButton = (Button) findViewById(R.id.nav_button);
        navButton.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                drawerLayout.openDrawer(GravityCompat.START);
            }
        });

關(guān)閉方法:activity.drawerLayout.closeDrawers();

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末割去,一起剝皮案震驚了整個濱河市窟却,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌呻逆,老刑警劉巖夸赫,帶你破解...
    沈念sama閱讀 207,248評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異咖城,居然都是意外死亡茬腿,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,681評論 2 381
  • 文/潘曉璐 我一進店門宜雀,熙熙樓的掌柜王于貴愁眉苦臉地迎上來切平,“玉大人,你說我怎么就攤上這事辐董〗野螅” “怎么了?”我有些...
    開封第一講書人閱讀 153,443評論 0 344
  • 文/不壞的土叔 我叫張陵郎哭,是天一觀的道長他匪。 經(jīng)常有香客問我,道長夸研,這世上最難降的妖魔是什么邦蜜? 我笑而不...
    開封第一講書人閱讀 55,475評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮亥至,結(jié)果婚禮上悼沈,老公的妹妹穿的比我還像新娘。我一直安慰自己姐扮,他們只是感情好絮供,可當我...
    茶點故事閱讀 64,458評論 5 374
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著茶敏,像睡著了一般壤靶。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上惊搏,一...
    開封第一講書人閱讀 49,185評論 1 284
  • 那天贮乳,我揣著相機與錄音,去河邊找鬼恬惯。 笑死向拆,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的酪耳。 我是一名探鬼主播浓恳,決...
    沈念sama閱讀 38,451評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了颈将?” 一聲冷哼從身側(cè)響起梢夯,我...
    開封第一講書人閱讀 37,112評論 0 261
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎吆鹤,沒想到半個月后厨疙,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體洲守,經(jīng)...
    沈念sama閱讀 43,609評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡疑务,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,083評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了梗醇。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片知允。...
    茶點故事閱讀 38,163評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖叙谨,靈堂內(nèi)的尸體忽然破棺而出温鸽,到底是詐尸還是另有隱情,我是刑警寧澤手负,帶...
    沈念sama閱讀 33,803評論 4 323
  • 正文 年R本政府宣布涤垫,位于F島的核電站,受9級特大地震影響竟终,放射性物質(zhì)發(fā)生泄漏蝠猬。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,357評論 3 307
  • 文/蒙蒙 一统捶、第九天 我趴在偏房一處隱蔽的房頂上張望榆芦。 院中可真熱鬧,春花似錦喘鸟、人聲如沸匆绣。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,357評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽崎淳。三九已至,卻和暖如春愕把,著一層夾襖步出監(jiān)牢的瞬間凯力,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,590評論 1 261
  • 我被黑心中介騙來泰國打工礼华, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留咐鹤,地道東北人。 一個月前我還...
    沈念sama閱讀 45,636評論 2 355
  • 正文 我出身青樓圣絮,卻偏偏與公主長得像祈惶,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 42,925評論 2 344

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