安卓studio如何继承activity
如何做一个简单的APP?
如何做一个简单的APP?
uniapp可以搜一下,一套代码,安卓苹果,小程序都可以运行。
底部导航栏应该写什么?
很多android应用底部都有一个底部导航栏,方便用户在使用过程中随意切换。目前常用的做法有三种:一种是使用自定义tabHost,一种是使用activityGroup,一种是结合FrameLayout实现。再做了多款应用后,为了节约开发周期,封装了一个抽象类,只要三步便可完成底部栏的生成及不同页面的调用。 public class ActivitycollectiondemoActivity extends ActivityCollection { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState) //setBottomTabBackground(resId)// 设置底部导航背景图 @Override protected boolean isShowWindowFeature() { return true//设置是否显示title @Override protected ListIndicatorInfogt setDrawableCollections() { ListIndicatorInfogt IndicatorInfos new ArrayListIndicatorInfogt() IndicatorInfo indicatorInfo_1 new IndicatorInfo(, _s, , 12, Color.WHITE, new Intent(, )) IndicatorInfo indicatorInfo_2 new IndicatorInfo(, _s, , 12, Color.WHITE, new Intent(, )) IndicatorInfo indicatorInfo_3 new IndicatorInfo(, _s, , 12, Color.WHITE, new Intent(, )) IndicatorInfo indicatorInfo_4 new IndicatorInfo(, _s, , 12, Color.WHITE, new Intent(, )) (indicatorInfo_1) (indicatorInfo_2) (indicatorInfo_3) (indicatorInfo_4) return IndicatorInfos 第一步:导入jar包; 第二步:让自己的homeactivity 继承ActivityCollection类; 第三步:将自己的图片资源及跳转intent放入list中,设置可选项; 雏形就形成啦!