安卓什么时候能有底部导航键(安卓桌面底部导航键)
本文目录一览:
- 1、Android 4.4 还流行 tab bar 底部导航栏吗
- 2、华为手机底部导航键怎么设置
- 3、Android开发中有没有使底部虚拟导航条隐藏的规范
- 4、Android 手机主界面最下面的那一栏又快捷方式的叫什么栏啊?怎么设置啊?
- 5、android 判断有没有底部导航栏
Android 4.4 还流行 tab bar 底部导航栏吗
首先要说明的是,这种底部导航栏并不是Android design推荐的(准确来说在Android design里面根本没有这种导航模式),这种底部tab的导航模式是从 ios design上移植过来的(如下图所示)。
Android 4.0 里面的导航主要是通过底部的“向上”虚拟键、action bar、navigation draw来实现应用内和应用间导航的。
而且,因不同的设计哲学和为了区分系统品牌风格, Android design中还明确说明不要使用底部tab导航栏:Don't use bottom tab bars. Other platforms use the bottom tab bar to switch between the app's views. Per platform convention, Android's tabs for view control are shown in action bars at the top of the screen instead. In addition, Android apps may use a bottom bar to display actions on a split action bar. You should follow this guideline to create a consistent experience with other apps on the Android platform and to avoid confusion between actions and view switching on Android.
华为手机底部导航键怎么设置
1、进入手机主界面,点击齿轮设置图标。
2、进入设置界面,点击页面最下方的系统选项。
3、进入系统主界面,点击系统导航方式。
4、进入系统导航方式主界面,选择屏幕内三键导航。
5、选择屏幕内三键导航后,点击更多设置。
6、进入屏幕内三键导航设置界面,这里有四种模式。
7、三键导航模式默认是第一种组合,选择自己喜欢的导航模式,后面两项增加的是顶部往下拉的按钮,设置好后,就可以在自己的手机屏幕下方看到三个导航键了。
Android开发中有没有使底部虚拟导航条隐藏的规范
没有这样的规范。
这个的原因应该有好多,具体可能有下面三个:
国内的产品经理很多不懂技术,并且平时使用的应用一般都专注在某个领域。
程序员对新的技术或者说新的版本没有及时学习研究。
用户对设备更新不及时。、
这里先不提产品经理。
很多程序员是没有时间也没有意识学习最近的技术的,对外说,国内这个氛围不浓;对内说,自己的学习动力不足,自律性和执行力不够。所以大多数是看到别人开发了然后自己才跟上更改。
具体来说,如果想及时应用谷歌的最新SDK,通用流程应该是这样的:(这里排除对某些功能一直耿耿于怀,每次一有更新就马上直奔主题去check是否更新的情况)
谷歌推出最新的SDK - 立即研究学习,这可能会用掉几天,一个星期,甚至更多的时间 -修改自己的应用。
Android 手机主界面最下面的那一栏又快捷方式的叫什么栏啊?怎么设置啊?
是托盘,操作方法如下:
1、首先唤醒手机,打开手机【设置】,如下图所示。
2、在设置中找到【显示】并进入,如下图所示。
3、在显示页面中,找到【导航条】进入,如下图所示。
4、然后在打开的页面中,可以看到如下图所示,部分安卓手机是可以通过开启/关闭按钮隐藏/显示导航栏的。
5、点击按钮顺序,可以按照个人习惯调整导航栏按钮方向,如下图所示就完成了。
android 判断有没有底部导航栏
很多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 ListIndicatorInfo setDrawableCollections() {
ListIndicatorInfo IndicatorInfos = new ArrayListIndicatorInfo();
IndicatorInfo indicatorInfo_1 = new IndicatorInfo(R.drawable.baby1,
R.drawable.baby1_s, R.string.baby1, 12, Color.WHITE,
new Intent(ActivitycollectiondemoActivity.this,
Activity01.class));
IndicatorInfo indicatorInfo_2 = new IndicatorInfo(R.drawable.baby2,
R.drawable.baby2_s, R.string.baby2, 12, Color.WHITE,
new Intent(ActivitycollectiondemoActivity.this,
Activity02.class));
IndicatorInfo indicatorInfo_3 = new IndicatorInfo(R.drawable.baby3,
R.drawable.baby3_s, R.string.baby3, 12, Color.WHITE,
new Intent(ActivitycollectiondemoActivity.this,
Activity03.class));
IndicatorInfo indicatorInfo_4 = new IndicatorInfo(R.drawable.baby4,
R.drawable.baby4_s, R.string.baby4, 12, Color.WHITE,
new Intent(ActivitycollectiondemoActivity.this,
Activity04.class));
IndicatorInfos.add(indicatorInfo_1);
IndicatorInfos.add(indicatorInfo_2);
IndicatorInfos.add(indicatorInfo_3);
IndicatorInfos.add(indicatorInfo_4);
return IndicatorInfos;
第一步:导入jar包;
第二步:让你的homeactivity 继承ActivityCollection类;
第三步:将你的图片资源及跳转intent放入list中,设置可选项;
雏形就形成啦!