可以看到切换不同的Fragment的时候,下面木有选中变色。
这是主界面代码,我自定义了组合控件:
xmlns:local="http://schemas.android.com/apk/res/com.mh.wxhelper"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
android:id="@+id/fl_main_real_content"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/divider_color" />
android:id="@+id/ll_main_tab_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/gray_bg"
android:orientation="horizontal" >
android:id="@+id/ttv_main_associatorQuery"
local:ttv_image="@drawable/community_tab_item_bg"
local:ttv_text="@string/associator_query"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" >
android:id="@+id/ttv_main_activtiy"
local:ttv_image="@drawable/community_tab_item_bg"
local:ttv_text="@string/activity"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" >
android:id="@+id/ttv_main_community"
local:ttv_image="@drawable/community_tab_item_bg"
local:ttv_text="@string/community"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" >
android:id="@+id/ttv_main_me"
local:ttv_image="@drawable/me_tab_item_bg"
local:ttv_text="@string/me"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" >
这是自定义组合控件的布局文件:
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="vertical"
android:paddingBottom="@dimen/tab_bar_item_top_bottom_padding"
android:paddingTop="@dimen/tab_bar_item_top_bottom_padding" >
android:id="@+id/iv_tab_item_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/app_name" >
android:id="@+id/tv_tab_item_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@drawable/tab_bar_item_text_color"
android:textSize="@dimen/tab_bar_text_size" >
文字颜色tab_bar_item_text_color:
image也是选中变色的:
community_tab_item_bg.xml:
是LinearLayout的缘故吗?我还想做冒泡功能。。