矽谷商城第二版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實現彈幕功能