2019日更挑戰(zhàn)(一),android-聊聊寫布局(一)

瞎扯:

寫布局是最基礎(chǔ)東西技能,其實也是最重要的技能之一.
合理的分析,才能寫出好的app.也能提高開發(fā)效率.


我總結(jié)的幾點:

1.熟悉控件.

既然是基礎(chǔ),常用的肯定要了解.
這里列一下我常用的,出現(xiàn)頻率高的:

布局:
LinearLayout
Relativelayout
FrameLayout
ViewPager

列表:
RecyclerView

控件:
TextView
EditText
ImageView
CheckBox
Switch

5.0后的新控件:
CoordinatorLayout
TabLayout
CollapsingToolbarLayout
Toolbar
AppbarLayout
SwipeRefreshLayout

以上就是近兩年我最常用的控件了.
剩下的要么不用,要么用的少,比如webview這種就沒啥好提的了.

這么一看,安卓的控件是不是沒多少..

列一下個人覺得差不多可以拋棄的控件
button //對,就是這玩意,我基本不用它,
ImageButton //同上
RadioButton
RadioGroup
ListView
GridView
Tabhost
TableLayout
ExpandableListView
Spinner

以上這些,我現(xiàn)在幾乎是不用的.

2.分析布局

就如開頭說的,拿到設(shè)計圖,肯定是先分析.
先舉個簡單的例子:


image.png

一個這樣的列表條目.應(yīng)該怎么寫?
別看簡單,寫法多種多樣.

最簡單的:

  <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#fff"
        android:drawableLeft="@mipmap/ic_launcher"
        android:gravity="end|center_vertical"
        android:padding="8dp"
        android:text="123123" />

這種就是求快,省事,如果明確設(shè)計,求快的話,這樣寫就行了.


一般人的選擇:

 <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#fff"
        android:gravity="center_vertical"
        android:padding="8dp">

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@mipmap/ic_launcher" />

        <TextView
            android:gravity="right"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="123123" />
    </LinearLayout>

改動頻繁時的寫法:

<RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#fff"
        android:padding="8dp">

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@mipmap/ic_launcher" />

        <TextView
            android:layout_alignParentRight="true"
            android:layout_centerVertical="true"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="123123" />
    </RelativeLayout>

對,兼容改動最強就是Relativelayout.


有人說,實現(xiàn)效果不就行了嘛.怎么寫都行.
確實是這樣,只要你想把時間浪費在改布局上.各種加班.你就隨便寫.

就這個設(shè)計而言,第二種寫法其實是不建議的.為什么?

1.第一種,寫起來花的時間最少.一個控件就搞定了.如果改動大的話,直接就放棄這個方案了.改一下就變第二,第三種了.
2.如果樣式變成了這樣:


image.png

你就會發(fā)現(xiàn),第二種,太死板了.代碼一層套一層.

  <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#fff"
        android:padding="8dp">

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@mipmap/ic_launcher" />

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_marginLeft="8dp"
            android:layout_weight="1"
            android:orientation="vertical">

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:layout_centerVertical="true"
                android:text="1111111" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:layout_centerVertical="true"
                android:layout_weight="1"
                android:text="222222222222222222222" />

            <LinearLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content">

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="bottom"
                    android:text="3333333" />

                <TextView
                    android:layout_marginLeft="8dp"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="bottom"
                    android:text="33"
                    android:textColor="#f00" />
            </LinearLayout>

        </LinearLayout>

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:gravity="center"
            android:text=">>" />
    </LinearLayout>

再看看RelativeLayout

 <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#fff"
        android:padding="8dp">

        <ImageView
            android:id="@+id/iv_goods"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@mipmap/ic_launcher" />

        <TextView
            android:id="@+id/tv_1"
            android:layout_toRightOf="@id/iv_goods"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="1111111" />

        <TextView
            android:layout_below="@id/tv_1"
            android:layout_toRightOf="@id/iv_goods"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="222222222222222222222" />


        <TextView
            android:id="@+id/tv_3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignBottom="@+id/iv_goods"
            android:layout_gravity="bottom"
            android:layout_toRightOf="@+id/iv_goods"
            android:text="3333333" />

        <TextView
            android:layout_alignBottom="@+id/iv_goods"
            android:layout_toRightOf="@id/tv_3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom"
            android:layout_marginLeft="8dp"
            android:text="33"
            android:textColor="#f00" />

        <TextView
            android:layout_centerVertical="true"
            android:layout_alignParentRight="true"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:text=">>" />
    </RelativeLayout>

3.從渲染性能上來講,RelativeLayout雖然會計算定位2次.但是比起LinearLayout不停嵌套還是要好很多的.

下面來簡單分析一張整體的.就拿簡書的來說.

image.png

最傻的做法就是

ScrollView+SwipeRefreshLayout+LinearLayout嵌套,所有內(nèi)容用線性布局依次寫下去.

如果沒有SwipeRefreshLayout.我相信很多人,根本不會考慮recycleview.
就線性布局嵌套寫完了,然后套個ScrollView,再加個彈性邊界,完美.是不是.
我以前也是做過這個事的.

說說這么寫的壞處:

image.png

這些內(nèi)容無法后臺控制.自己要添加刪除隱藏也麻煩.
一個蘿卜一個坑.加一個挖一個,刪一個填一個.
代碼就多了.
等到需求需要:點擊埋點.權(quán)限控制.動態(tài)展示樣式.動態(tài)隱藏顯示的時候,你就會發(fā)現(xiàn).自己搞不下去了.哈哈.控制層全是判斷.

這種寫死布局的方法是不推薦的.

4.盡量杜絕嵌套

當(dāng)你發(fā)現(xiàn)寫布局需要各種嵌套,而且還有事件沖突的時候,就該想想,是不是自己的分析有問題了.

就這樣吧,日更第一天.


交流群:493180098,這是個很少吹水,交流學(xué)習(xí)的群.

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子榆综,更是在濱河造成了極大的恐慌滋捶,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,194評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異,居然都是意外死亡,警方通過查閱死者的電腦和手機开瞭,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,058評論 2 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來罩息,“玉大人嗤详,你說我怎么就攤上這事〈膳冢” “怎么了葱色?”我有些...
    開封第一講書人閱讀 156,780評論 0 346
  • 文/不壞的土叔 我叫張陵,是天一觀的道長娘香。 經(jīng)常有香客問我苍狰,道長,這世上最難降的妖魔是什么烘绽? 我笑而不...
    開封第一講書人閱讀 56,388評論 1 283
  • 正文 為了忘掉前任淋昭,我火速辦了婚禮,結(jié)果婚禮上安接,老公的妹妹穿的比我還像新娘翔忽。我一直安慰自己,他們只是感情好盏檐,可當(dāng)我...
    茶點故事閱讀 65,430評論 5 384
  • 文/花漫 我一把揭開白布歇式。 她就那樣靜靜地躺著,像睡著了一般胡野。 火紅的嫁衣襯著肌膚如雪材失。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,764評論 1 290
  • 那天硫豆,我揣著相機與錄音龙巨,去河邊找鬼笼呆。 笑死,一個胖子當(dāng)著我的面吹牛旨别,可吹牛的內(nèi)容都是我干的抄邀。 我是一名探鬼主播,決...
    沈念sama閱讀 38,907評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼昼榛,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了剔难?” 一聲冷哼從身側(cè)響起胆屿,我...
    開封第一講書人閱讀 37,679評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎偶宫,沒想到半個月后非迹,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,122評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡纯趋,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,459評論 2 325
  • 正文 我和宋清朗相戀三年憎兽,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片吵冒。...
    茶點故事閱讀 38,605評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡纯命,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出痹栖,到底是詐尸還是另有隱情亿汞,我是刑警寧澤,帶...
    沈念sama閱讀 34,270評論 4 329
  • 正文 年R本政府宣布揪阿,位于F島的核電站疗我,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏南捂。R本人自食惡果不足惜吴裤,卻給世界環(huán)境...
    茶點故事閱讀 39,867評論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望溺健。 院中可真熱鬧麦牺,春花似錦、人聲如沸矿瘦。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,734評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽缚去。三九已至潮秘,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間易结,已是汗流浹背枕荞。 一陣腳步聲響...
    開封第一講書人閱讀 31,961評論 1 265
  • 我被黑心中介騙來泰國打工柜候, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人躏精。 一個月前我還...
    沈念sama閱讀 46,297評論 2 360
  • 正文 我出身青樓渣刷,卻偏偏與公主長得像,于是被迫代替她去往敵國和親矗烛。 傳聞我的和親對象是個殘疾皇子辅柴,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,472評論 2 348

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