瞎扯:
寫布局是最基礎(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è)計圖,肯定是先分析.
先舉個簡單的例子:
一個這樣的列表條目.應(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.如果樣式變成了這樣:
你就會發(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不停嵌套還是要好很多的.
下面來簡單分析一張整體的.就拿簡書的來說.
最傻的做法就是
ScrollView+SwipeRefreshLayout+LinearLayout嵌套
,所有內(nèi)容用線性布局依次寫下去.
如果沒有SwipeRefreshLayout
.我相信很多人,根本不會考慮recycleview.
就線性布局嵌套寫完了,然后套個ScrollView,再加個彈性邊界,完美.是不是.
我以前也是做過這個事的.
說說這么寫的壞處:
這些內(nèi)容無法后臺控制.自己要添加刪除隱藏也麻煩.
一個蘿卜一個坑.加一個挖一個,刪一個填一個.
代碼就多了.
等到需求需要:點擊埋點.權(quán)限控制.動態(tài)展示樣式.動態(tài)隱藏顯示
的時候,你就會發(fā)現(xiàn).自己搞不下去了.哈哈.控制層全是判斷.
這種寫死布局的方法是不推薦的.
4.盡量杜絕嵌套
當(dāng)你發(fā)現(xiàn)寫布局需要各種嵌套,而且還有事件沖突的時候,就該想想,是不是自己的分析有問題了.
就這樣吧,日更第一天.
交流群:493180098,這是個很少吹水,交流學(xué)習(xí)的群.