如何创建像谷歌位置历史这样的安卓时间线视图?
Posted
技术标签:
【中文标题】如何创建像谷歌位置历史这样的安卓时间线视图?【英文标题】:How to create android timeline view like google location history? 【发布时间】:2017-07-05 21:35:05 【问题描述】:我想设计像谷歌位置历史这样的用户界面。
【问题讨论】:
android-arsenal.com/search?q=timeline 【参考方案1】:我必须为我使用 RecyclerView
开发的应用程序复制此 UI。
每一行都是一个水平的LinearLayout
,其中包含图标、线条和右侧的视图。线条是带有圆形背景的FrameLayout
,半透明圆圈是View
s。
因为行之间没有空格,所以行的单个部分看起来是连接的。
项目布局如下所示:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_
android:layout_>
<!-- the circular icon on the left -->
<ImageView
android:layout_
android:layout_
android:src="@drawable/ic_place"
android:tint="@android:color/white"
android:layout_marginRight="24dp"
android:padding="4dp"
android:background="@drawable/circle_bg"/>
<!-- the blue line -->
<FrameLayout
android:layout_
android:layout_
android:padding="2dp"
android:id="@+id/item_line">
<!-- the semi transparent circle on the line -->
<View
android:layout_
android:layout_
android:background="@drawable/circle"/>
</FrameLayout>
<!-- views at the right of the blue line -->
<LinearLayout
android:layout_
android:layout_weight="1"
android:layout_
android:orientation="vertical"
android:paddingLeft="24dp"
android:paddingBottom="32dp"
android:clickable="true"
android:background="?android:attr/selectableItemBackground">
<TextView
android:layout_
android:layout_
android:singleLine="true"
android:ellipsize="end"
android:textAppearance="@style/TextAppearance.AppCompat.Title"
android:id="@+id/item_title"/>
<TextView
android:layout_
android:layout_
android:id="@+id/item_subtitle"/>
<!-- other views -->
</LinearLayout>
</LinearLayout>
为顶部、中间和最后一个不同地渲染行的大写字母的一种便捷方法是在Adapter
中使用与位置相关的 itemViewTypes:
private static final int VIEW_TYPE_TOP = 0;
private static final int VIEW_TYPE_MIDDLE = 1;
private static final int VIEW_TYPE_BOTTOM = 2;
private List<Item> mItems;
// ...
class ViewHolder extends RecyclerView.ViewHolder
TextView mItemTitle;
TextView mItemSubtitle;
FrameLayout mItemLine;
public ViewHolder(View itemView)
super(itemView);
mItemTitle = (TextView) itemView.findViewById(R.id.item_title);
mItemSubtitle = (TextView) itemView.findViewById(R.id.item_subtitle);
mItemLine = (FrameLayout) itemView.findViewById(R.id.item_line);
@Override
public void onBindViewHolder(final ViewHolder holder, final int position)
Item item = mItems.get(position);
// Populate views...
switch(holder.getItemViewType())
case VIEW_TYPE_TOP:
// The top of the line has to be rounded
holder.mItemLine.setBackground(R.drawable.line_bg_top);
break;
case VIEW_TYPE_MIDDLE:
// Only the color could be enough
// but a drawable can be used to make the cap rounded also here
holder.mItemLine.setBackground(R.drawable.line_bg_middle);
break;
case VIEW_TYPE_BOTTOM:
holder.mItemLine.setBackground(R.drawable.line_bg_bottom);
break;
@Override
public int getItemViewType(int position)
if(position == 0)
return VIEW_TYPE_TOP;
else if(position == mItems.size() - 1)
return VIEW_TYPE_BOTTOM;
return VIEW_TYPE_MIDDLE;
背景可绘制对象可以这样定义:
<!-- line_bg_top.xml -->
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/colorPrimary"/>
<corners
android:topLeftRadius="15dp"
android:topRightRadius="15dp"/>
<!-- this has to be at least half of line FrameLayout's
width to appear completely rounded -->
</shape>
<!-- line_bg_middle.xml -->
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/colorPrimary"/>
</shape>
<!-- line_bg_bottom.xml -->
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/colorPrimary"/>
<corners
android:bottomLeftRadius="15dp"
android:bottomRightRadius="15dp"/>
</shape>
当然您也可以使用ListView
,或者如果您知道步骤总是很少,一个简单的垂直LinearLayout
就足够了。
遗憾的是,谷歌地图安卓应用不是开源的,要知道官方的方式也不是那么容易,所以……Material Design 解读!
【讨论】:
以上是关于如何创建像谷歌位置历史这样的安卓时间线视图?的主要内容,如果未能解决你的问题,请参考以下文章
有没有像谷歌这样在中国被允许并且有安卓 API 的 LBS?