安卓項目開發實戰(1)--首頁頂部菜單BAR實現

來源:互聯網
上載者:User

標籤:android   style   blog   http   color   io   java   ar   資料   

從今天開始,我將開始自己手寫一個星座運勢的項目,星座運勢的資料來源採用MYAPI的星座資料,用戶端完全自己實現。

這個系列主要是講工程中主要介面的布局展示和一些項目中的痛點解析。由於本人剛自學安卓不久,請各位大神拍磚時手下留情。

第一個講講首頁頂部的BAR的實現

現在的APP據我觀察頂部都會涉及一個BAR,主要作用就是提示和導航,

先來看下實際的效果


那麼如何?這樣一個效果呢?

具體做法是在頁面配置裡嵌套一個頂部導覽功能表的布局

<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:orientation="vertical" >    <RelativeLayout        android:id="@+id/headerlayout"        android:layout_width="fill_parent"        android:layout_height="45.0dip"        android:background="@color/title_color" >        <TextView            android:id="@+id/title"            android:layout_width="wrap_content"            android:layout_height="wrap_content"            android:layout_centerHorizontal="true"            android:layout_centerVertical="true"            android:text="@string/home"            android:textColor="#ffffffff"            android:textSize="20.0sp" />    </RelativeLayout></RelativeLayout>
其中android:layout_centerHorizontal="true" android:layout_centerVertical="true"是設定TextView置中顯示的,這樣寫完,在Activity的OnCreate方法中載入這個布局就能

實現頂部導覽功能表的效果了,Activity的代碼如下

protected void onCreate(Bundle savedInstanceState) {          super.onCreate(savedInstanceState);          this.requestWindowFeature(Window.FEATURE_NO_TITLE);        setContentView(R.layout.main);  //        initComponent();    }  




安卓項目開發實戰(1)--首頁頂部菜單BAR實現

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.