赞
踩
先自我介绍一下,小编浙江大学毕业,去过华为、字节跳动等大厂,目前阿里P7
深知大多数程序员,想要提升技能,往往是自己摸索成长,但自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!
因此收集整理了一份《2024年最新大数据全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友。
既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,涵盖了95%以上大数据知识点,真正体系化!
由于文件比较多,这里只是将部分目录截图出来,全套包含大厂面经、学习笔记、源码讲义、实战项目、大纲路线、讲解视频,并且后续会持续更新
如果你需要这些资料,可以添加V获取:vip204888 (备注大数据)
<LinearLayout
android:layout_width=“match_parent”
android:layout_height=“wrap_content”
android:orientation=“horizontal”
android:layout_marginVertical=“20dp”
android:layout_marginHorizontal=“20dp”>
<TextView
android:id=“@+id/textView29”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:layout_weight=“1”
android:text=“序号”
android:textColor=“#6290c8”
android:textStyle=“bold”
android:textSize=“18sp”
android:gravity=“center_horizontal”/>
<TextView
android:id=“@+id/textView26”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:layout_weight=“1”
android:text=“日期”
android:textColor=“#6290c8”
android:textStyle=“bold”
android:textSize=“18sp”
android:gravity=“center_horizontal”/>
<TextView
android:id=“@+id/textView25”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:layout_weight=“1”
android:text=“类型”
android:textColor=“#6290c8”
android:textStyle=“bold”
android:textSize=“18sp”
android:gravity=“center_horizontal”/>
<TextView
android:id=“@+id/textView27”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:layout_weight=“1”
android:text=“金额”
android:textColor=“#6290c8”
android:textStyle=“bold”
android:textSize=“18sp”
android:gravity=“center_horizontal”/>
<TextView
android:id=“@+id/textView28”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:layout_weight=“1”
android:text=“说明”
android:textColor=“#6290c8”
android:textStyle=“bold”
android:textSize=“18sp”
android:gravity=“center_horizontal”/>
<ListView
android:id=“@+id/searchlistview”
android:layout_width=“match_parent”
android:layout_height=“500dp”
android:layout_weight=“0”
android:layout_marginHorizontal=“20dp”/>
</androidx.constraintlayout.widget.ConstraintLayout>
#### (5)收支管理页面activity\_manage.xml
对于收支管理页面来说,用户可以对自己的日常开销进行收支管理,同时也可以进行添加、删除和修改等操作。**具体代码如下:**
<androidx.constraintlayout.widget.ConstraintLayout 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”
tools:context=“.ManageActivity”>
<LinearLayout
android:layout_width=“match_parent”
android:layout_height=“match_parent”
android:gravity=“center_horizontal”
android:orientation=“vertical”
app:layout_constraintBottom_toBottomOf=“parent”
app:layout_constraintLeft_toLeftOf=“parent”
app:layout_constraintTop_toTopOf=“parent”>
<LinearLayout
android:layout_width=“match_parent”
android:layout_height=“200dp”
android:gravity=“center”
android:orientation=“vertical”>
<ImageView
android:id=“@+id/imageView2”
android:layout_width=“150dp”
android:layout_height=“150dp”
android:layout_marginTop=“20dp”
app:srcCompat=“@drawable/income_1” />
<TextView
android:id=“@+id/textView20”
android:layout_width=“wrap_content”
android:layout_height=“30dp”
android:text=“收支管理”
android:textColor=“#3F51B5”
android:textSize=“20dp” />
<LinearLayout
android:layout_width=“match_parent”
android:layout_height=“50dp”
android:gravity=“center_vertical”
android:orientation=“horizontal”>
<TextView
android:id=“@+id/textView36”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:layout_marginHorizontal=“20dp”
android:text=“您选择的序号是:”
android:textColor=“#152029”
android:textSize=“18sp”
android:textStyle=“bold” />
<TextView
android:id=“@+id/tv_test”
android:layout_width=“match_parent”
android:layout_height=“wrap_content”
android:hint=“暂未选择”
android:textColor=“#4CAF50”
android:textSize=“18sp” />
</LinearLayout>
<LinearLayout
android:layout_width=“match_parent”
android:layout_height=“wrap_content”
android:layout_marginHorizontal=“20dp”
android:layout_marginVertical=“10dp”
android:gravity=“center”
android:orientation=“horizontal”>
<TextView
android:id=“@+id/textView29”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:layout_gravity=“center”
android:layout_weight=“1”
android:text=“序号”
android:textColor=“#111819”
android:textSize=“18sp” />
<TextView
android:id=“@+id/textView26”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:layout_weight=“1”
android:text=“日期”
android:textColor=“#111819”
android:textSize=“18sp” />
<TextView
android:id=“@+id/textView25”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:layout_weight=“1”
android:text=“类型”
android:textColor=“#111819”
android:textSize=“18sp” />
<TextView
android:id=“@+id/textView27”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:layout_weight=“1”
android:text=“金额”
android:textColor=“#111819”
android:textSize=“18sp” />
<TextView
android:id=“@+id/textView28”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:layout_weight=“1”
android:text=“说明”
android:textColor=“#111819”
android:textSize=“18sp” />
</LinearLayout>
<ImageView
android:layout_width=“380dp”
android:layout_height=“0.5dp”
android:background=“#D8D3D3”
android:paddingHorizontal=“20dp” />
<ListView
android:id=“@+id/recordlistview”
android:layout_width=“wrap_content”
android:layout_height=“120dp”
android:layout_weight=“1”>
<LinearLayout
android:layout_width=“match_parent”
android:layout_height=“wrap_content”
android:layout_marginHorizontal=“14dp”
android:orientation=“horizontal”>
<TextView
android:id=“@+id/textView18”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:text=“日期: "
android:textColor=”#101112"
android:textSize=“18sp” />
<EditText
android:id=“@+id/edt_date”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:layout_weight=“1”
android:ems=“10”
android:hint=“填写日期,如:202107表示2021年7月”
android:inputType=“textPersonName” />
<LinearLayout
android:layout_width=“match_parent”
android:layout_height=“wrap_content”
android:layout_marginHorizontal=“14dp”
android:orientation=“horizontal”>
<TextView
android:id=“@+id/textView21”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:text=“类型: "
android:textColor=”#101112"
android:textSize=“18sp” />
<EditText
android:id=“@+id/edt_type”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:layout_weight=“1”
android:ems=“10”
android:hint=“类型为收入或支出”
android:inputType=“textPersonName” />
<LinearLayout
android:layout_width=“match_parent”
android:layout_height=“wrap_content”
android:layout_marginHorizontal=“14dp”
android:orientation=“horizontal”>
<TextView
android:id=“@+id/textView30”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:text=“金额: "
android:textColor=”#101112"
android:textSize=“18sp” />
<EditText
android:id=“@+id/edt_money”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:layout_weight=“1”
android:ems=“10”
android:hint=“请输入金额”
android:inputType=“textPersonName” />
<LinearLayout
android:layout_width=“match_parent”
android:layout_height=“wrap_content”
android:layout_marginHorizontal=“14dp”
android:orientation=“horizontal”>
<TextView
android:id=“@+id/tv_state”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:text=“说明: "
android:textColor=”#101112"
android:textSize=“18sp” />
<EditText
android:id=“@+id/edt_state”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:layout_weight=“1”
android:ems=“10”
android:hint=“阐述说明”
android:inputType=“textPersonName” />
<LinearLayout
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:layout_marginVertical=“30dp”>
<Button
android:id=“@+id/btn_add”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:layout_marginHorizontal=“10dp”
android:layout_weight=“1”
android:text=“添加”
app:backgroundTint=“#78C6A3” />
<Button
android:id=“@+id/btn_update”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:layout_marginHorizontal=“10dp”
android:layout_weight=“1”
android:text=“修改”
app:backgroundTint=“#56AB91” />
<Button
android:id=“@+id/btn_delete”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:layout_marginHorizontal=“10dp”
android:layout_weight=“1”
android:text=“删除”
app:backgroundTint=“#358F80” />
</androidx.constraintlayout.widget.ConstraintLayout>
#### (6)列表数据记录record\_item\_layout.xml
`record_item_layout.xml` 主要用途是存储列表的传输数据。**具体代码如下:**
<LinearLayout xmlns:android=“http://schemas.android.com/apk/res/android”
android:layout_width=“match_parent”
android:layout_height=“match_parent”>
<LinearLayout
android:layout_width=“match_parent”
android:layout_height=“match_parent”
android:orientation=“horizontal”
android:layout_marginHorizontal=“20dp”
android:gravity=“center_horizontal”
android:paddingVertical=“2dp”>
<TextView
android:id=“@+id/list_id”
android:layout_width=“40dp”
android:layout_height=“24dp”
android:layout_weight=“1”
android:textSize=“18sp”
android:gravity=“center_horizontal” />
<TextView
android:id=“@+id/list_date”
android:layout_width=“90dp”
android:layout_height=“24dp”
android:layout_weight=“1”
android:textSize=“18sp”
android:gravity=“center_horizontal” />
<TextView
android:id=“@+id/list_type”
android:layout_width=“70dp”
android:layout_height=“24dp”
android:layout_weight=“1”
android:textSize=“18sp”
android:gravity=“center_horizontal” />
<TextView
android:id=“@+id/list_money”
android:layout_width=“70dp”
android:layout_height=“24dp”
android:layout_weight=“1”
android:textSize=“18sp”
android:gravity=“center_horizontal” />
<TextView
android:id=“@+id/list_state”
android:layout_width=“90dp”
android:layout_height=“24dp”
android:layout_weight=“1”
android:textSize=“18sp”
android:gravity=“center_horizontal” />
</LinearLayout>
### 3. 逻辑结构声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/793157
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。