选项卡式页脚 Activity
Footer in Tabbed Activity
我正在使用 Tabbed Activity 并且我有三个带有相应片段的选项卡。现在我想在更改选项卡时显示在每个片段上显示的页脚。这可能吗??请举个简单的例子
页脚布局您将粘贴到选项卡宿主 xml
下方的 选项卡式 activity 布局
喜欢
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<TabHost
android:id="@android:id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</TabHost>
<LinearLayout
android:id="@+id/footer"
android:layout_below="@android:id/tabs"
android:layout_alignParentBottom="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</LinearLayout>
</RelativeLayout>
之后根据选项卡选择更改页脚中的视图,这样使用
tabHost.setOnTabChangedListener(new TabHost.OnTabChangeListener() {
@Override
public void onTabChanged(String s) {
//Add view into footer or hide
}
});
我正在使用 Tabbed Activity 并且我有三个带有相应片段的选项卡。现在我想在更改选项卡时显示在每个片段上显示的页脚。这可能吗??请举个简单的例子
页脚布局您将粘贴到选项卡宿主 xml
下方的 选项卡式 activity 布局喜欢
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<TabHost
android:id="@android:id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</TabHost>
<LinearLayout
android:id="@+id/footer"
android:layout_below="@android:id/tabs"
android:layout_alignParentBottom="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</LinearLayout>
</RelativeLayout>
之后根据选项卡选择更改页脚中的视图,这样使用
tabHost.setOnTabChangedListener(new TabHost.OnTabChangeListener() {
@Override
public void onTabChanged(String s) {
//Add view into footer or hide
}
});