喜糖

移动开发工程师 。涉及 android、ios、jni

导航

2011年9月14日

摘要: 显示效果如下图: 更改TabHost标签的背景颜色。修改思路: 监听TabHost的onTabChanged方法。实现代码:package com.tony.tabstudy;import android.app.Activity;import android.os.Bundle;import android.view.View;import android.widget.TabHost;import android.widget.TabHost.OnTabChangeListener;import android.widget.TabWidget;public class TabStudyA 阅读全文

posted @ 2011-09-14 19:02 喜糖 阅读(10166) 评论(0) 推荐(1) 编辑

摘要: main.xml <?xml version="1.0" encoding="utf-8"?> <TabHost android:id="@+id/tabhost" xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height=& 阅读全文

posted @ 2011-09-14 17:56 喜糖 阅读(488) 评论(0) 推荐(0) 编辑

摘要: TabActivity首先Android里面有个名为TabActivity来给我们方便使用。其中有以下可以关注的函数:public TabHost getTabHost ()获得当前TabActivity的TabHostpublic TabWidget getTabWidget ()获得当前TabActivity的TabWidgetpublic void setDefaultTab (String tag)这两个函数很易懂,就是设置默认的Tabpublic void setDefaultTab (int index)通过tab名——tag或者index(从0开始)protected void 阅读全文

posted @ 2011-09-14 15:46 喜糖 阅读(255) 评论(0) 推荐(0) 编辑

摘要: 在自定义ListView FastScroller滑块图片中实现了快速滚动。在原有示例基础上增加了这样的功能:本文和上面示例借鉴了:http://blog.csdn.net/sodino/archive/2010/12/15/6077017.aspx做的比较简单。需要为ListView注册一个滚动监听器: overlay就为要显示的框,后面有介绍。listView.setOnScrollListener(new OnScrollListener() { boolean visible; @Override public void onScrollStateChanged(AbsListView 阅读全文

posted @ 2011-09-14 13:34 喜糖 阅读(651) 评论(0) 推荐(0) 编辑

摘要: 使用ListView FastScroller,默认滑块和自定义滑块图片的样子:设置快速滚动属性很容易,只需在布局的xml文件里设置属性即可:<ListView android:id=”@+id/listView” android:layout_width=”fill_parent”android:layout_height=”fill_parent”android:fastScrollEnabled=”true”android:focusable=”true”/>但是有时候会发现设置属性无效,滚动ListView并未出现滑块。原因是该属性生效有最小记录限制。当ListView记录 阅读全文

posted @ 2011-09-14 11:49 喜糖 阅读(3911) 评论(0) 推荐(0) 编辑

摘要: 针对BaseAdapter可以有一些扩展,比如在一行中加入几个元素如下图所示。为了完成上面的内容,需要在布局文件中加入一个布局文件R.layout.listview_item,这个布局文件中描述了要显示的内容。自定义MyAdapter来继承BaseAdapter。必须要覆写getCount() 和getView()方法。关键代码:public View getView(final int position, View convertView, ViewGroup parent) { //List中的一条数据 DataModel item; ... 阅读全文

posted @ 2011-09-14 00:42 喜糖 阅读(489) 评论(0) 推荐(0) 编辑