版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
【移動(dòng)應(yīng)用開(kāi)發(fā)技術(shù)】Android中如何實(shí)現(xiàn)一個(gè)沉浸式狀態(tài)欄
首先看下第一種方式//當(dāng)系統(tǒng)版本為4.4或者4.4以上時(shí)可以使用沉浸式狀態(tài)欄
if
(Build.VERSION.SDK_INT
>=
Build.VERSION_CODES.KITKAT)
{
//透明狀態(tài)欄
getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
//透明導(dǎo)航欄
getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
}android:fitsSystemWindows="true"
android:clipToPadding="true"/**
*
沉浸式狀態(tài)欄
*/
private
void
initState()
{
if
(Build.VERSION.SDK_INT
>=
Build.VERSION_CODES.KITKAT)
{
//透明狀態(tài)欄
getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
//透明導(dǎo)航欄
getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
}
}<?xml
version="1.0"
encoding="utf-8"?>
<LinearLayout
xmlns:android="/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:fitsSystemWindows="true"
android:clipToPadding="true"
android:layout_width="match_parent"
android:layout_height="140dp"
android:textSize="24dp"
android:background="@color/mask_tags_1"
android:text="你好,沉浸式狀態(tài)欄"/>
</LinearLayout>接著看下第二種方式/**
*
通過(guò)反射的方式獲取狀態(tài)欄高度
*
*
@return
*/
private
int
getStatusBarHeight()
{
try
{
Class<?>
c
=
Class.forName("ernal.R$dimen");
Object
obj
=
c.newInstance();
Field
field
=
c.getField("status_bar_height");
int
x
=
Integer.parseInt(field.get(obj).toString());
return
getResources().getDimensionPixelSize(x);
}
catch
(Exception
e)
{
e.printStackTrace();
}
return
0;
}package
com.example.translucentbarstest;
import
android.os.Build;
import
android.os.Bundle;
import
android.support.annotation.Nullable;
import
android.support.v7.app.AppCompatActivity;
import
android.view.View;
import
android.view.WindowManager;
import
android.widget.LinearLayout;
import
java.lang.reflect.Field;
/**
*
Created
by
若蘭
on
2016/1/22.
*
一個(gè)懂得了編程樂(lè)趣的小白,希望自己
*
能夠在這個(gè)道路上走的很遠(yuǎn),也希望自己學(xué)習(xí)到的
*
知識(shí)可以幫助更多的人,分享就是學(xué)習(xí)的一種樂(lè)趣
*
QQ:1069584784
*/
public
class
SecondActivity
extends
AppCompatActivity
{
@Override
protected
void
onCreate(@Nullable
Bundle
savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_two);
initState();
}
/**
*
動(dòng)態(tài)的設(shè)置狀態(tài)欄
實(shí)現(xiàn)沉浸式狀態(tài)欄
*
*/
private
void
initState()
{
//當(dāng)系統(tǒng)版本為4.4或者4.4以上時(shí)可以使用沉浸式狀態(tài)欄
if
(Build.VERSION.SDK_INT
>=
Build.VERSION_CODES.KITKAT)
{
//透明狀態(tài)欄
getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
//透明導(dǎo)航欄
getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
//
LinearLayout
linear_bar
=
(LinearLayout)
findViewById(R.id.ll_bar);
linear_bar.setVisibility(View.VISIBLE);
//獲取到狀態(tài)欄的高度
int
statusHeight
=
getStatusBarHeight();
//動(dòng)態(tài)的設(shè)置隱藏布局的高度
LinearLayout.LayoutParams
params
=
(LinearLayout.LayoutParams)
linear_bar.getLayoutParams();
params.height
=
statusHeight;
linear_bar.setLayoutParams(params);
}
}
/**
*
通過(guò)反射的方式獲取狀態(tài)欄高度
*
*
@return
*/
private
int
getStatusBarHeight()
{
try
{
Class<?>
c
=
Class.forName("ernal.R$dimen");
Object
obj
=
c.newInstance();
Field
field
=
c.getField("status_bar_height");
int
x
=
Integer.parseInt(field.get(obj).toString());
return
getResources().getDimensionPixelSize(x);
}
catch
(Exception
e)
{
e.printStackTrace();
}
return
0;
}
}<?xml
version="1.0"
encoding="utf-8"?>
<LinearLayout
xmlns:android="/apk/res/android"
xmlns:tools="/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.example.translucentbarstest.TwoActivity">
<!--這個(gè)是隱藏的布局,然后通過(guò)動(dòng)態(tài)的設(shè)置高度達(dá)到效果-->
<LinearLayout
android:id="@+id/ll_bar"
android:layout_width="fill_parent"
android:layout_height="1dp"
android:orientation="vertical"
android:background="#e7abff"
android:visibility="gone">
</LinearLayout>
<TextView
android:fitsSystemWindows="true"
android:clipToPadding="true"
android:layout_width="match_parent"
android:layout_height="140dp"
android:background="@color/mask_tags_3"
android:text="你好,沉浸式狀態(tài)欄"/>
</LinearLayout>接下來(lái)看下第三種android:fitsSystemWindows="true"
android:clipToPadding="trueSystemBarTintManager
tintManager
=
new
SystemBarTintManager(this);
//
激活狀態(tài)欄
tintManager.setStatusBarTintEnabled(true);
//
enable
navigation
bar
tint
激活導(dǎo)航欄
tintManager.setNavigationBarTintEnabled(true);
//設(shè)置系統(tǒng)欄設(shè)置顏色
//tintManager.setTintColor(R.color.red);
//給狀態(tài)欄設(shè)置顏色
tintManager.setStatusBarTintResource(R.color.mask_tags_1);
//Apply
the
specified
drawable
or
color
resource
to
the
system
navigation
bar.
//給導(dǎo)航欄設(shè)置資源
tintManager.setNavigationBarTintResource(R.color.mask_tags_1);package
com.example.translucentbarstest;
import
android.os.Build;
import
android.os.Bundle;
import
android.support.v7.app.AppCompatActivity;
import
android.view.WindowManager;
import
com.readystatesoftware.systembartint.SystemBarTintManager;
/**
*
Created
by
若蘭
on
2016/1/22.
*
一個(gè)懂得了編程樂(lè)趣的小白,希望自己
*
能夠在這個(gè)道路上走的很遠(yuǎn),也希望自己學(xué)習(xí)到的
*
知識(shí)可以幫助更多的人,分享就是學(xué)習(xí)的一種樂(lè)趣
*
QQ:1069584784
*/
public
class
ThreeActivity
extends
AppCompatActivity{
@Override
protected
void
onCreate(Bundle
savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_three);
if
(Build.VERSION.SDK_INT
>=
Build.VERSION_CODES.KITKAT)
{
//透明狀態(tài)欄
getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_STATUS);
//透明導(dǎo)航欄
getWindow().addFlags(WindowManager.LayoutParams.FLAG_TRANSLUCENT_NAVIGATION);
SystemBarTintManager
tintManager
=
new
SystemBarTintManager(this);
//
激活狀態(tài)欄
tintManager.setStatusBarTintEnabled(true);
//
enable
navigation
bar
tint
激活導(dǎo)航欄
tintManager.setNavigationBarTintEnabled(true);
//設(shè)置系統(tǒng)欄設(shè)置顏色
//tintManager.setTintColor(R.color.red);
//給狀態(tài)欄設(shè)置顏色
tintManager.setStatusBarTintResource(R.color.mask_tags_1);
//Apply
the
specified
drawable
or
color
resource
to
the
system
navigation
bar.
//給導(dǎo)航欄
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 第四單元學(xué)情評(píng)估(含答案)2024-2025學(xué)年統(tǒng)編版七年級(jí)語(yǔ)文下冊(cè)
- 《認(rèn)清國(guó)情》課件
- 子宮角妊娠的健康宣教
- 頭皮毛囊炎的臨床護(hù)理
- 《教你門(mén)窗工程預(yù)算》課件
- 《機(jī)械設(shè)計(jì)基礎(chǔ)》課件-第6章
- 《Java程序設(shè)計(jì)及移動(dòng)APP開(kāi)發(fā)》課件-第09章
- 粉刺的臨床護(hù)理
- 痱子的臨床護(hù)理
- JJF(陜) 092-2022 醫(yī)用電動(dòng)頸腰椎牽引治療儀校準(zhǔn)規(guī)范
- 《卵巢腫瘤》ppt課件(PPT 101頁(yè))
- 洪水預(yù)報(bào)講座20150628
- 部編版六年級(jí)上冊(cè)語(yǔ)文非連續(xù)性文本閱讀
- 智能水表項(xiàng)目可行性研究報(bào)告(范文模板)
- 企業(yè)現(xiàn)場(chǎng)6S改進(jìn)方案
- 咬合樁施工工藝
- 汽輪機(jī)課程設(shè)計(jì)
- 購(gòu)買二手船流程介紹及經(jīng)驗(yàn)總結(jié)
- 財(cái)務(wù)部?jī)?nèi)控工作流程圖
- CRTSⅠ型雙塊式無(wú)砟軌道施工技術(shù)
- 龍門(mén)吊拆除安全措施及應(yīng)急預(yù)案
評(píng)論
0/150
提交評(píng)論