Android城市索引含定位和热门城市(悬浮块+右侧字母索引

android:layout_width=“match_parent”

android:layout_height=“50dp”

android:orientation=“horizontal”

android:background=“@color/white”

android:elevation=“3dp”

<ImageView

android:id=“@+id/pic_contact_back”

android:layout_width=“50dp”

android:layout_height=“50dp”

android:src=“@drawable/back”

android:padding=“18dp”

/>

<TextView

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:text=“城市选择”

android:layout_gravity=“center_vertical”

android:textColor=“@color/black”

android:textSize=“18sp”

/>

<me.yokeyword.indexablerv.IndexableLayout

android:id=“@+id/indexableLayout”

android:layout_width=“match_parent”

android:layout_height=“match_parent”

android:background=“@android:color/white”

app:indexBar_selectedTextColor=“@color/black”

app:indexBar_textColor=“@color/gray1”

app:indexBar_layout_width=“40dp”

app:indexBar_textSize=“14sp”

app:indexBar_textSpace=“5dp” />

values目录下的R.arrays.xml城市资源文件:

<?xml version="1.0" encoding="UTF-8"?>

上海

北京

杭州

广州

BannerHeaderAdapter其实就是相当于IndexableLayout的头布局,我这里的定位城市和热门城市就是通过添加这个头部(BannerHeaderAdapter的item布局):

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android=“http://schemas.android.com/apk/res/android”

android:orientation=“vertical”

android:layout_width=“match_parent”

android:layout_height=“wrap_content”>

<TextView

android:layout_width=“match_parent”

android:layout_height=“40dp”

android:text=“定位城市”

android:gravity=“center_vertical”

android:paddingLeft=“15dp”

android:textSize=“@dimen/text_size_18”

android:textColor=“@color/black”

/>

<TextView

android:id=“@+id/item_header_city_dw”

android:layout_width=“80dp”

android:layout_height=“35dp”

android:textColor=“@color/black”

android:gravity=“center”

android:layout_marginLeft=“15dp”

android:background=“@drawable/sylayout_shop”

android:text=“东莞”/>

<View

android:layout_width=“match_parent”

android:layout_height=“1dp”

android:background=“@color/gray2”

android:layout_margin=“15dp”

/>

<LinearLayout

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:layout_weight=“1”

android:paddingBottom=“5dp”

android:paddingLeft=“15dp”

android:paddingRight=“30dp”

android:orientation=“vertical”>

<TextView

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:textSize=“18sp”

android:textColor=“@color/black”

android:text=“热门城市”/>

<com.wzg.biswang.util.QGridView

android:id=“@+id/item_header_city_gridview”

android:layout_marginTop=“5dp”

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:focusable=“true”

android:focusableInTouchMode=“true”

android:numColumns=“3”

android:stretchMode=“columnWidth”

android:columnWidth=“60dp”

android:verticalSpacing=“10dp”

android:horizontalSpacing=“15dp”>

</com.wzg.biswang.util.QGridView>

<View

android:layout_width=“match_parent”

android:layout_height=“1dp”

android:background=“@color/gray2”

android:layout_marginLeft=“15dp”

android:layout_marginRight=“15dp”

android:layout_marginTop=“10dp”

/>

<TextView

android:layout_width=“match_parent”

android:layout_height=“50dp”

android:textSize=“18sp”

android:textColor=“@color/black”

android:layout_marginLeft=“15dp”

android:gravity=“center_vertical”

android:text=“所有城市”/>

ContactAdapter的适配器也就是IndexableLayout的Adapter,这里必须继承IndexableAdapter<UserEntity>,你也可以直接把这段代码复制下来 :

public class ContactAdapter extends IndexableAdapter {

private LayoutInflater mInflater;

public ContactAdapter(Context context) {

mInflater = LayoutInflater.from(context);

}

//设置悬浮块的layout

@Override

public RecyclerView.ViewHolder onCreateTitleViewHolder(ViewGroup parent) {

View view = mInflater.inflate(R.layout.item_index_contact, parent, false);

return new IndexVH(view);

}

//设置悬浮块下面的layout

@Override

public RecyclerView.ViewHolder onCreateContentViewHolder(ViewGroup parent) {

View view = mInflater.inflate(R.layout.item_contact, parent, false);

return new ContentVH(view);

}

//设置悬浮块的数据

@Override

public void onBindTitleViewHolder(RecyclerView.ViewHolder holder, String indexTitle) {

IndexVH vh = (IndexVH) holder;

vh.tv.setText(indexTitle);

}

//设置悬浮块下面的数据

@Override

public void onBindContentViewHolder(RecyclerView.ViewHolder holder, UserEntity entity) {

ContentVH vh = (ContentVH) holder;

vh.tvName.setText(entity.getNick());

vh.tvMobile.setText(entity.getMobile());

}

private class IndexVH extends RecyclerView.ViewHolder {

TextView tv;

public IndexVH(View itemView) {

super(itemView);

tv = (TextView) itemView.findViewById(R.id.tv_index);

}

}

private class ContentVH extends RecyclerView.ViewHolder {

TextView tvName, tvMobile;

public ContentVH(View itemView) {

super(itemView);

tvName = (TextView) itemView.findViewById(R.id.tv_name);

tvMobile = (TextView) itemView.findViewById(R.id.tv_mobile);

}

}

}

悬浮块的xml文件:

<?xml version="1.0" encoding="utf-8"?>

<FrameLayout xmlns:android=“http://schemas.android.com/apk/res/android”

android:layout_width=“match_parent”

android:layout_height=“wrap_content”>

<TextView

android:id=“@+id/tv_index”

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:background=“#f9f9f9”

android:paddingBottom=“8dp”

android:paddingLeft=“24dp”

android:paddingTop=“8dp”

android:textColor=“@color/gray”

android:text=“A”

android:textStyle=“bold”

android:textSize=“14sp” />

<ImageView

android:layout_width=“match_parent”

android:layout_height=“0.8dp”

android:background=“#f0f0f0” />

悬浮块下面的xml文件也就是item布局:

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android=“http://schemas.android.com/apk/res/android”

xmlns:tools=“http://schemas.android.com/tools”

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:paddingBottom=“5dp”

android:background=“?attr/selectableItemBackground”

android:paddingLeft=“16dp”

android:paddingRight=“16dp”

android:paddingTop=“5dp”>

<ImageView

android:visibility=“gone”

android:id=“@+id/img_avatar”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_marginRight=“16dp”

android:src=“@drawable/bsw_gray” />

<TextView

android:id=“@+id/tv_name”

android:layout_width=“match_parent”

android:layout_height=“wrap_content”

android:layout_toRightOf=“@id/img_avatar”

tools:text=“张三”

android:textColor=“#373737”

android:textSize=“16sp” />

<TextView

android:visibility=“gone”

android:id=“@+id/tv_mobile”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_below=“@id/tv_name”

android:layout_marginTop=“12dp”

android:layout_toRightOf=“@id/img_avatar”

tools:text=“18712345678”

android:textColor=“#969696” />

</RelativeLayout

热门城市的GridView,普通的Adapter类我就不用多作解释了相信大家都能看懂:

public class CYBChangeCityGridViewAdapter extends BaseAdapter{

private List list;

private Context context;

private LayoutInflater inflater;

自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。

深知大多数Android工程师,想要提升技能,往往是自己摸索成长或者是报班学习,但对于培训机构动则几千的学费,着实压力不小。自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!

因此收集整理了一份《2024年Android移动开发全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。
img
img
img
img
img
img
img

既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Android开发知识点,真正体系化!

由于文件比较大,这里只是将部分目录大纲截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且后续会持续更新

如果你觉得这些内容对你有帮助,可以添加V获取:vip204888 (备注Android)
img

最后

这里附上上述的技术体系图相关的几十套腾讯、头条、阿里、美团等公司2021年的面试题,把技术点整理成了视频和PDF(实际上比预期多花了不少精力),包含知识脉络 + 诸多细节,由于篇幅有限,这里以图片的形式给大家展示一部分。

相信它会给大家带来很多收获:

img

当程序员容易,当一个优秀的程序员是需要不断学习的,从初级程序员到高级程序员,从初级架构师到资深架构师,或者走向管理,从技术经理到技术总监,每个阶段都需要掌握不同的能力。早早确定自己的职业方向,才能在工作和能力提升中甩开同龄人。

  • 无论你现在水平怎么样一定要 持续学习 没有鸡汤,别人看起来的毫不费力,其实费了很大力,这四个字就是我的建议!!!
  • 我希望每一个努力生活的IT工程师,都会得到自己想要的,因为我们很辛苦,我们应得的。

当我们在抱怨环境,抱怨怀才不遇的时候,没有别的原因,一定是你做的还不够好!

、学习笔记、源码讲义、实战项目、讲解视频,并且后续会持续更新**

如果你觉得这些内容对你有帮助,可以添加V获取:vip204888 (备注Android)
[外链图片转存中…(img-wl3ZlxuW-1711629796394)]

最后

这里附上上述的技术体系图相关的几十套腾讯、头条、阿里、美团等公司2021年的面试题,把技术点整理成了视频和PDF(实际上比预期多花了不少精力),包含知识脉络 + 诸多细节,由于篇幅有限,这里以图片的形式给大家展示一部分。

相信它会给大家带来很多收获:

[外链图片转存中…(img-DSJhwpy4-1711629796395)]

当程序员容易,当一个优秀的程序员是需要不断学习的,从初级程序员到高级程序员,从初级架构师到资深架构师,或者走向管理,从技术经理到技术总监,每个阶段都需要掌握不同的能力。早早确定自己的职业方向,才能在工作和能力提升中甩开同龄人。

  • 无论你现在水平怎么样一定要 持续学习 没有鸡汤,别人看起来的毫不费力,其实费了很大力,这四个字就是我的建议!!!
  • 我希望每一个努力生活的IT工程师,都会得到自己想要的,因为我们很辛苦,我们应得的。

当我们在抱怨环境,抱怨怀才不遇的时候,没有别的原因,一定是你做的还不够好!

本文已被CODING开源项目:《Android学习笔记总结+移动架构视频+大厂面试真题+项目实战源码》收录

  • 28
    点赞
  • 29
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值