文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>tabs圆角效果

tabs圆角效果

时间:2010-08-23  来源:朱宇华

今天要处理一个圆角效果用到了下面

tab = tabs.newTabSpec("tab_Busquedas"); 
tab.setContent(new Intent().setClassName("com.grapp", "com.grapp.homes").putExtras(bundle)); 
tab.setIndicator(null,null); 
tabs.addTab(tab); 
//设置一个圆角图片

tabs.getTabWidget().getChildAt(0).setBackgroundResource(R.drawable.mytab_roundedcorners); 

mytab_roundedcorners是一个selector.在里面你可以引用一个图片

<drawable name="rounded_tab"> 
                <shape xmlns:android="http://schemas.android.com/apk/res/android" 
                    android:shape="rectangle"> 
                    <stroke android:width="3dip" android:color="@android:color/white" /> 
                    <solid android:color="@android:color/white" /> 
                    <corners android:bottomRightRadius="0.1dip" 
                        android:bottomLeftRadius="0.1dip" android:topLeftRadius="15dip" 
                        android:topRightRadius="15dip" /> 
                </shape>
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载