You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
135 lines
5.7 KiB
XML
135 lines
5.7 KiB
XML
|
3 years ago
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:orientation="vertical">
|
||
|
|
|
||
|
|
<androidx.core.widget.NestedScrollView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:orientation="vertical"
|
||
|
|
tools:ignore="ExtraText">
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/iv"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="30px"
|
||
|
|
android:scaleType="fitXY"
|
||
|
|
android:src="@drawable/top_image" />
|
||
|
|
|
||
|
|
<com.rehome.zhdcoa.weiget.AutoGridView
|
||
|
|
android:id="@+id/gv"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:background="@color/white"
|
||
|
|
android:numColumns="4" />
|
||
|
|
|
||
|
|
<RelativeLayout
|
||
|
|
android:visibility="gone"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="50px"
|
||
|
|
android:orientation="horizontal">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="50px"
|
||
|
|
android:gravity="center"
|
||
|
|
android:text="······················快捷入口······················"
|
||
|
|
android:textSize="30px" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="50px"
|
||
|
|
android:layout_alignParentRight="true"
|
||
|
|
android:layout_marginRight="20px"
|
||
|
|
android:gravity="center"
|
||
|
|
android:text="自定义"
|
||
|
|
android:textColor="@color/bule"
|
||
|
|
android:textSize="26px" />
|
||
|
|
|
||
|
|
</RelativeLayout>
|
||
|
|
|
||
|
|
<com.rehome.zhdcoa.weiget.AutoGridView
|
||
|
|
android:id="@+id/gv1"
|
||
|
|
android:visibility="gone"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_margin="10px"
|
||
|
|
android:layout_marginBottom="10px"
|
||
|
|
android:horizontalSpacing="20px"
|
||
|
|
android:numColumns="2"
|
||
|
|
android:verticalSpacing="20px" />
|
||
|
|
|
||
|
|
<com.xuexiang.xui.widget.layout.XUILinearLayout
|
||
|
|
android:layout_marginTop="5dp"
|
||
|
|
android:id="@+id/layout_xui2"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_gravity="center_horizontal"
|
||
|
|
android:background="@color/xui_config_color_white"
|
||
|
|
android:gravity="center"
|
||
|
|
android:orientation="vertical"
|
||
|
|
app:xui_borderColor="?attr/xui_config_color_separator_light"
|
||
|
|
app:xui_outerNormalColor="?attr/xui_config_color_background"
|
||
|
|
app:xui_showBorderOnlyBeforeL="true">
|
||
|
|
|
||
|
|
<com.xuexiang.xui.widget.textview.supertextview.SuperTextView
|
||
|
|
android:id="@+id/super_message_tv"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="32dp"
|
||
|
|
app:sDividerLineType="both"
|
||
|
|
app:sLeftTextString="待办事项"
|
||
|
|
app:sLeftTextSize="16sp"
|
||
|
|
app:sRightViewMarginRight="0dp" />
|
||
|
|
|
||
|
|
<androidx.recyclerview.widget.RecyclerView
|
||
|
|
android:id="@+id/recycler_view"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:background="#F2F2F2"
|
||
|
|
android:overScrollMode="never" />
|
||
|
|
</com.xuexiang.xui.widget.layout.XUILinearLayout>
|
||
|
|
|
||
|
|
<com.xuexiang.xui.widget.layout.XUILinearLayout
|
||
|
|
android:id="@+id/layout_xui"
|
||
|
|
android:layout_marginTop="5dp"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_gravity="center_horizontal"
|
||
|
|
android:background="@color/xui_config_color_white"
|
||
|
|
android:gravity="center"
|
||
|
|
android:orientation="vertical"
|
||
|
|
app:xui_borderColor="?attr/xui_config_color_separator_light"
|
||
|
|
app:xui_outerNormalColor="?attr/xui_config_color_background"
|
||
|
|
app:xui_showBorderOnlyBeforeL="true">
|
||
|
|
|
||
|
|
<com.xuexiang.xui.widget.textview.supertextview.SuperTextView
|
||
|
|
android:id="@+id/super_message_tv_dbsx"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="32dp"
|
||
|
|
app:sDividerLineType="both"
|
||
|
|
app:sLeftTextSize="16sp"
|
||
|
|
app:sLeftTextString="考勤记录"
|
||
|
|
app:sRightViewMarginRight="0dp" />
|
||
|
|
|
||
|
|
<androidx.recyclerview.widget.RecyclerView
|
||
|
|
android:id="@+id/recycler_view2"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:background="#F2F2F2"
|
||
|
|
android:overScrollMode="never" />
|
||
|
|
</com.xuexiang.xui.widget.layout.XUILinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
</androidx.core.widget.NestedScrollView>
|
||
|
|
|
||
|
|
</LinearLayout>
|