1.如果你的activity继承自Activity,那么 a.要在style.xml中写入: <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> <item name="windowNoTitle">true</i ...
分类:
移动开发 时间:
2017-02-16 23:01:44
阅读次数:
286
引入控件: 1、在activity_xml中添加<include layout="@layout/title"> 2、隐藏自带标题栏:在onCreate()中添加代码:ActionBar actionBar = getSupportActionBar(); if(actionBar != null) ...
分类:
其他好文 时间:
2017-02-13 23:27:46
阅读次数:
203
使用ActionBar,必须继承ActionBarActivity ActionBar actionBar = getActionBar(); actionBar.setTitle("谷歌电子市场"); //设置标题 // actionBar.setIcon(R.drawable.bg_photo) ...
分类:
其他好文 时间:
2017-02-13 13:33:53
阅读次数:
183
Action Bar 指明用户当前所在的界面,添加多个功能性按键和下拉式选择框,以提供能多功能。 图1 图2 主题一:让应用具备ActionBar 图3 可能条件一:Support Android 3.0(API 11) and Above Only 图4 步骤一:在标签中指明theme属性值,an... ...
分类:
移动开发 时间:
2017-02-12 22:22:04
阅读次数:
298
安卓4.4才有的沉浸式状态栏 在代码设置: 直接调用上面2行代码可以透明,但是你会发现你的 view 跑到 actionbar 上面去了,很明显 google 的意图是使你的 view 可以占据整个屏幕,然后 状态栏和导航栏 透明覆盖在上面很明显这样不可行。那有没有办法使你的 view 保持原来大小 ...
分类:
移动开发 时间:
2017-01-24 13:34:45
阅读次数:
260
【ActionBar】 The ActionBar APIs were first added in Android 3.0 (API level 11) but they are also available in the Support Library for compatibility wit ...
分类:
其他好文 时间:
2017-01-24 07:45:32
阅读次数:
196
ActionBar 定义起来不方便 toolbar: 最重要的特性,显示menu菜单,右上角三个点的菜单按钮,使用灵活 使用:1,布局文件,包裹LinearLayout 放imageView, 或者ImageButton 2,去除标题栏Action(清单文件中设置主题Theme.AppCompat. ...
分类:
其他好文 时间:
2017-01-13 22:06:46
阅读次数:
180
在我们开发app时,可以隐藏顶部的ActionBar,然后自己定义一套顶部的布局来代替ActionBar。 但是有时我们又需要用到ActionBar,那么我们该如何定制ActionBar呢? 如果需要改变ActionBar中出现的ActionButton,那么可以在res->menu->main.x... ...
分类:
其他好文 时间:
2016-12-31 14:45:39
阅读次数:
218
最近在看android actionBar的使用,环境为AndroidStudio,建一个简单的工程,功能为:两个按钮,一个单击用于显示actionbar,一个用于隐藏actionbar。默认actiobar显示。理想状况如下图所示: 建好工程并运行,发现actionbar默认不显示(不显示上图所示 ...
分类:
其他好文 时间:
2016-12-29 08:23:02
阅读次数:
198
DrawerLayout(抽屉布局),在各种app中经常出现,比如csdn。。 要点: 1.使用DrawerLayout时,在xml布局中,要主界面的布局放在前面,后面才放上抽屉里的布局内容 2.记得为抽屉内的布局加上android:layout_gravity="left"或"start",指明抽 ...
分类:
移动开发 时间:
2016-12-28 20:09:15
阅读次数:
703