今天就跟大家聊聊有关Android开发中怎么自定义时间轴,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。
具体内容如下
时间轴效果,实际上非常简单,就是listView中一个又一个的条目而已….大家可以只关注一个条目。
首先展示一个条目的布局效果
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="75dp" android:orientation="horizontal" > <!-- 线条部分 --> <LinearLayout android:layout_width="wrap_content" android:layout_height="match_parent" android:gravity="center_horizontal" android:orientation="vertical" android:paddingLeft="30dp" > <View android:layout_width="3dp" android:layout_height="20dp" android:background="#88000000" /> <com.example.time.TimeView android:src="@drawable/ic_launcher" android:id="@+id/timeView" android:layout_width="40dp" android:layout_height="40dp" /> <View android:layout_width="3dp" android:layout_height="40dp" android:background="#88000000" /> </LinearLayout> <!-- 文字部分 --> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:paddingLeft="30dp" android:paddingRight="30dp" android:paddingTop="20dp" > <TextView android:id="@+id/tv_content" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="哈哈哈" android:textColor="#ABABAB" /> <TextView android:id="@+id/tv_time" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@id/tv_content" android:text="时间" android:textColor="#ABABAB" /> </LinearLayout></LinearLayout>
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
软考中级精品资料免费领
- 历年真题答案解析
- 备考技巧名师总结
- 高频考点精准押题
- 资料下载
- 历年真题
193.9 KB下载数265
191.63 KB下载数245
143.91 KB下载数1148
183.71 KB下载数642
644.84 KB下载数2756
相关文章
发现更多好内容猜你喜欢
AI推送时光机Android开发中怎么自定义时间轴
后端开发2023-05-31
Android自定义控件实现时间轴
后端开发2024-04-02
Android自定义时间轴的实现过程
后端开发2022-06-06
android自定义控件是怎么实现简易时间轴
后端开发2023-06-28
android自定义控件实现简易时间轴(1)
后端开发2024-04-02
Android自定义recyclerView怎么实现时光轴效果
后端开发2023-06-28
android自定义控件实现简易时间轴(2)
后端开发2024-04-02
android自定义控件如何实现简易时间轴
后端开发2023-06-28
Android自定义定时闹钟开发
后端开发2024-04-02
Android使用自定义View实现横行时间轴效果
后端开发2022-06-06
Android开发怎么自定义实时图表控件
后端开发2023-07-02
Android开发中怎么样实现自定义toast
后端开发2023-05-31
Android开发中自定义editText下划线
后端开发2023-03-08
Java Web开发中怎么自定义Session
后端开发2024-04-02
Android中怎么实现一个简易时间轴
后端开发2023-05-30
Android开发中ListView自定义adapter的封装
后端开发2022-06-06
android怎么自定义开关控件
后端开发2023-08-16
Android开发中怎么自定义一个视频录制功能
后端开发2023-05-31
Android中怎么自定义相机
后端开发2023-05-30
Android开发中如何自定义加载动画
后端开发2023-06-29
咦!没有更多了?去看看其它编程学习网 内容吧