矽谷商城第二版4--發現模組,矽谷商城第二版4--

來源:互聯網
上載者:User

矽谷商城第二版4--發現模組,矽谷商城第二版4--

 

1、採用TabLayout實現標題的切換;

  在2015年的google大會上,google發布了新的Android Support Design庫,裡麵包含了幾個新的控制項,其中就有一個TabLayout,它就可以完成TabPageIndicator的效果,而且還是官方的,最好的是它可以相容到2.2以上版本,包括2.2。我使用的 android studio進行開發的,所以引用TabLayout很簡單,只要在build.gradle中加入compile 'com.android.support:design:22.2.0'即可。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"      android:layout_width="match_parent"      android:layout_height="match_parent"      xmlns:app="http://schemas.android.com/apk/res-auto"      android:orientation="vertical">        <android.support.design.widget.TabLayout          android:id="@+id/tab_FindFragment_title"          android:layout_width="match_parent"          android:layout_height="wrap_content"          android:background="@color/titleBlue"          app:tabIndicatorColor="@color/white"          app:tabSelectedTextColor="@color/gray"          app:tabTextColor="@color/white"          />      <android.support.v4.view.ViewPager          android:id="@+id/vp_FindFragment_pager"          android:layout_width="fill_parent"          android:layout_height="0dp"          android:layout_weight="1"          />    </LinearLayout>  

  

app:tabIndicatorColor="@color/white"                 // 下方滾動的底線顏色  app:tabSelectedTextColor="@color/gray"               // tab被選中後,文字的顏色  app:tabTextColor="@color/white"                      // tab預設的文字顏色 

  

2.  新帖 熱帖都是ListView

3.  採用OpenDanmaku實現彈幕功能

 

相關文章

聯繫我們

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