有人能告诉我如何使用基于加载的活动的动态数据为应用程序中的所有活动设置页脚吗?
我需要从列表视图中将所有学生的页脚文本更改为所有活动,如果没有学生选择显示“GUEST”
答案 0 :(得分:0)
创建一个footer.xml并将其包含在要显示它的所有activity.xml中。然后根据您的要求,您可以进行更改。
答案 1 :(得分:0)
看看这个xml它是简单的xml,你可以在框架容器中替换你的所有碎片。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="48dp"
android:background="@color/blue">
<ImageView
android:layout_width="@dimen/main_drawer_icon"
android:layout_height="@dimen/main_drawer_icon"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_marginBottom="@dimen/library_screen"
android:layout_marginLeft="@dimen/smallText"
android:src="@mipmap/arrow_left_white"
android:visibility="gone" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text=" Header"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="@color/white" />
</RelativeLayout>
<View
android:layout_width="match_parent"
android:layout_height="5dp"
android:background="@color/orange"></View>
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_weight="0.90"
android:layout_height="0dp">
<-- Replace here yout fragments -->
</FrameLayout>
<View
android:id="@+id/viewDestination"
android:layout_width="match_parent"
android:layout_height="0.01dp"
android:background="@color/greyMediumlight" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="0.10"
android:orientation="vertical">
<-- This is Footer View -->
</LinearLayout>