android 學習Layout布局的使用

來源:互聯網
上載者:User

標籤:

 android 常用布局

LinearLayout(線性布局)       
線性 垂直的 水平的
RelativeLaytout(相對布局)    
最靈活的
TableLayout(表格版面配置)     
使用GridView代替
AbsoluteLayout(絕對布局)    
最好不要使用 絕對座標
Framelayout(幀布局)      
布局疊加時使用 比如視頻緩衝的環形捲軸
使用頻次
Absolute<Table<Frame<Linear<Relative
android布局原則
(1)盡量多的使用線性布局和相對布局不要使用絕對布局
(2)在布局層次一樣的情況下,建議使用線性布局代替相對布局因為線性布局效能稍高一點
(3)將可複用的組件抽取出來,並通過include標籤使用
(4)使用viewstub標籤載入一些不常用的布局 (暫時不使用的)
(5)使用merge標籤減少標籤的嵌套層次

<include/>的使用
作用:將公用的組件抽取出來單獨一個xml檔案,然後使用include標籤匯入公用布局
效果:提高ui的製作和複用效率
通過findViewById 也可以找到view 因為通過include實際上是將自布局直接包含進公用布局當中

1,子布局title.xml
<?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="30dp"    android:background="#243821"></LinearLayout>

  2,主布局main.xml

<LinearLayout    android:layout_height="match_parent"    xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:orientation="vertical">    <include layout="@layout/title"        ></include>
</LinearLayout>

使用merge合并ui布局
作用:合并ui布局,使用該布局能降低ui布局的嵌套層次
情境1;布局根節點是FrameLayout且不需要設定backgroud和padding等屬性,可以用merge代替
情境2:某布局作為自布局被其他布局include時,使用merge當做該布局的頂接點,這樣再被引入時,
頂接點會自動被忽略
1,子布局progress.xml
<?xml version="1.0" encoding="utf-8"?><merge xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent" android:layout_height="match_parent">    <ProgressBar        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:id="@+id/progress"        android:layout_gravity="center"/></merge>

  2,主布局main.xml

<LinearLayout    android:layout_height="match_parent"    xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:orientation="vertical">    <include layout="@layout/title"        ></include>    <FrameLayout    android:layout_width="match_parent"    android:layout_height="wrap_content">        <include layout="@layout/progress"/>    </FrameLayout>
</LinearLayout>

使用viewstub惰性載入
作用:viewstub標籤同incude標籤一樣可以用來引入一個外部的布局,不同的是viewstub引入的布局預設不會擴張,
既不會佔用顯示也不會佔用位置,從而在解析laytou時,節省cpu和記憶體
1,子布局common.xml
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="wrap_content" android:layout_height="wrap_content">    <TextView        android:id="@+id/text"        android:text="viewstub"        android:layout_width="wrap_content"        android:layout_height="wrap_content" /></LinearLayout>

  2,主布局main.xml

<LinearLayout    android:layout_height="match_parent"    xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:orientation="vertical">    <include layout="@layout/title"        ></include>    <FrameLayout    android:layout_width="match_parent"    android:layout_height="wrap_content">        <include layout="@layout/progress"/>    </FrameLayout>    <Button android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:id="@+id/btn"        android:text="按鈕"        />    <ViewStub        android:id="@+id/viewStub"        android:layout="@layout/common"        android:layout_width="wrap_content"        android:layout_height="wrap_content" /></LinearLayout>

  3,MainActivity

public class MainActivity extends Activity {    private Button btn ;    private ViewStub viewStub;    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_main);        btn = (Button)findViewById(R.id.btn);        viewStub = (ViewStub)findViewById(R.id.viewStub);        btn.setOnClickListener(new View.OnClickListener() {            @Override            public void onClick(View v) {                viewStub.inflate();            }        });    }}

 

 
  
 
 

android 學習Layout布局的使用

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.