如何Android中自定义Navigationbar

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何Android中自定义Navigationbar相关的知识,希望对你有一定的参考价值。

在如何控制android系统中NavigationBar 的显示与隐藏文章里简要地介绍了Navigationbar的背景知识,
NavigationBar的代码是放在... rameworksasepackagesSystemUI路径下面的。该路径下的工程主要负责手机中系统级UI的显示部分,如下图框中选中部分(包含其中的通知栏的显示),USB的连接,截屏等等。

NavigationBar的创建
navigationbar
的代码是在SystemUI工程SystemUI/src/com/android/systemui/statusbar/phone的路径下,其中
navigationbar是由PhoneStatusBar.java类创建的。在该类的makeStatusBarView()方法下,可以看到创建
Navigationbar的过程:

try
boolean showNav = mWindowManagerService.hasNavigationBar();
/// M: Support Smartbook Feature.
if (true) Log.v(TAG, "hasNavigationBar=" + showNav);
if (showNav)
mNavigationBarView =
(NavigationBarView) View.inflate(context, R.layout.navigation_bar, null);

mNavigationBarView.setDisabledFlags(mDisabled);
mNavigationBarView.setBar(this);
mNavigationBarView.setOnTouchListener(new View.OnTouchListener()
@Override
public boolean onTouch(View v, MotionEvent event)
checkUserAutohide(v, event);
return false;
);

catch (RemoteException ex)
// no window manager? good luck with that

WindowManagerService通过判断是否需要显示NavigationBar来决定是否需要创建NavigationBarView,
NavigationBarView即为我们看到视图的view了,navigation_bar即为NavigationBarView实例化的
layout,你可以在SystemUI工程下的layout文件夹下找到。

通过修改navigation_bar布局的方式来自定义NavigationBar的UI。在该layout文件中有这样一个类。
com.android.systemui.statusbar.policy.KeyButtonView,它是系统定义的在
NavigationBar上的按钮类(后面会讲到),点击会产生波纹的效果。
NavigationBarView主负责UI的初始化工作,实例化布局,根据屏幕方向先取正确的图片。
NavigationBar按钮的事件绑定
NavigationBar按钮上的事件绑定并不是在NavigationBarView里实现,而是在SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java类中完成的。
通过NavigationBarView对外提供的获取按钮接口来完成按钮的绑定:
Recent, Home, SearchLight按钮事件的绑定

private void prepareNavigationBarView()
mNavigationBarView.reorient();

mNavigationBarView.getRecentsButton().setOnClickListener(mRecentsClickListener);
mNavigationBarView.getRecentsButton().setOnTouchListener(mRecentsPreloadOnTouchListener);
mNavigationBarView.getHomeButton().setOnTouchListener(mHomeSearchActionListener);
mNavigationBarView.getSearchLight().setOnTouchListener(mHomeSearchActionListener);
updateSearchPanel();


Menu, Home, Back按钮事件的绑定:

上面三个按钮都是KeyButtonView类,它们的事件响应过程都是在类本身里面完成的。它们通过onTouchEvent()方法来响应点击事件,

public boolean onTouchEvent(MotionEvent ev)
final int action = ev.getAction();
int x, y;

switch (action)
case MotionEvent.ACTION_DOWN:
//Slog.d("KeyButtonView", "press");
mDownTime = SystemClock.uptimeMillis();
setPressed(true);
if (mCode != 0)
sendEvent(KeyEvent.ACTION_DOWN, 0, mDownTime);
else
// Provide the same haptic feedback that the system offers for virtual keys.
performHapticFeedback(HapticFeedbackConstants.VIRTUAL_KEY);

if (mSupportsLongpress)
removeCallbacks(mCheckLongPress);
postDelayed(mCheckLongPress, ViewConfiguration.getLongPressTimeout());

break;
case MotionEvent.ACTION_MOVE:
x = (int)ev.getX();
y = (int)ev.getY();
setPressed(x >= -mTouchSlop
&& x < getWidth() + mTouchSlop
&& y >= -mTouchSlop
&& y < getHeight() + mTouchSlop);
break;
case MotionEvent.ACTION_CANCEL:
setPressed(false);
if (mCode != 0)
sendEvent(KeyEvent.ACTION_UP, KeyEvent.FLAG_CANCELED);

if (mSupportsLongpress)
removeCallbacks(mCheckLongPress);

break;
case MotionEvent.ACTION_UP:
final boolean doIt = isPressed();
setPressed(false);
if (mCode != 0)
if (doIt)
sendEvent(KeyEvent.ACTION_UP, 0);
sendAccessibilityEvent(AccessibilityEvent.TYPE_VIEW_CLICKED);
playSoundEffect(SoundEffectConstants.CLICK);
else
sendEvent(KeyEvent.ACTION_UP, KeyEvent.FLAG_CANCELED);

else
// no key code, just a regular ImageView
if (doIt)
performClick();


if (mSupportsLongpress)
removeCallbacks(mCheckLongPress);

break;


return true;


mCode是用来判断该触摸是来自于哪个button,表示不同button的keycode在KeyEvent中类都有定义。该值在布局文件中通过获取
navigationbar_view中的systemui:keycode属性来获得,下面是layout布局文件中back相应代码段:

<com.android.systemui.statusbar.policy.KeyButtonView android:id="@+id/back"
android:layout_width="@dimen/navigation_key_width"
android:layout_height="match_parent"
android:src="@drawable/ic_sysbar_back"
systemui:keyCode="4"
android:layout_weight="0"
android:scaleType="center"
systemui:glowBackground="@drawable/ic_sysbar_highlight"
android:contentDescription="@string/accessibility_back"
/>

在onTouch中方法通过sendEvent()方法来执行不同的keycode响应事件,该方法会创建一个包含keycode的KeyEvent对象封装,然后通过injectInputEvent()向InputManager插入一个事件,再发送出去。
参考技术A 我们使用的大多数android手机上的Home键,返回键以及menu键都是实体触摸感应按键。如果你用Google的Nexus4或Nexus5话,
你会发现它们并没有实体按键或触摸感应按键,取而代之的是在屏幕的下方加了一个小黑条,在这个黑条上有3个按钮控件,这种设置无疑使得手机的外观的设计更
加简约。但我遇到身边用Nexus 4手机的人都吐槽这种设计,原因很简单:好端端的屏幕,被划出一块区域用来显示3个按钮(如下图所示):Back,
Home, Recent。并且它一直用在那里占用着。

  在android源码中,那一块区域被叫做NavigationBar。同
时,google在代码中也预留了标志,用来控制它的显示与隐藏。NavigationBar的显示与隐藏的控制是放在SystemU中的,具体的路径
是:\frameworks\base\packages\SystemUI。对android4.0以上的手机而言,SystemUi包含两部
分:StatusBar和NavigationBar。在SystemUI的工程下有一个类PhoneStatusBar.java,在该类中可以发现关
于控制NavigationBar的相关代码:

  在start()方法里可以看到NavigationBar是在那时候被添加进来,但只是添加,决定它显示还是隐藏是在后面控制的。

  <span style="font-size:18px;">@Override
  public void start()
  mDisplay = ((WindowManager)mContext.getSystemService(Context.WINDOW_SERVICE))
  .getDefaultDisplay();
  updateDisplaySize();

  /// M: Support Smartbook Feature.
  if (SIMHelper.isMediatekSmartBookSupport())
  /// M: [ALPS01097705] Query the plug-in state as soon as possible.
  mIsDisplayDevice = SIMHelper.isSmartBookPluggedIn(mContext);
  Log.v(TAG, "start, mIsDisplayDevice=" + mIsDisplayDevice);
  

  super.start(); // calls createAndAddWindows()

  addNavigationBar();

  // Lastly, call to the icon policy to install/update all the icons.
  mIconPolicy = new PhoneStatusBarPolicy(mContext);

  mHeadsUpObserver.onChange(true); // set up
  if (ENABLE_HEADS_UP)
  mContext.getContentResolver().registerContentObserver(
  Settings.Global.getUriFor(SETTING_HEADS_UP), true,
  mHeadsUpObserver);
  
  </span>
  其中的addNavigationBar()具体的实现方法如下:

  <span style="font-size:18px;"> // For small-screen devices (read: phones) that lack hardware navigation buttons
  private void addNavigationBar()
  if (DEBUG) Slog.v(TAG, "addNavigationBar: about to add " + mNavigationBarView);
  if (mNavigationBarView == null) return;

  prepareNavigationBarView();

  mWindowManager.addView(mNavigationBarView, getNavigationBarLayoutParams());
  </span>
 
 可以看到Navigationbar实际上windowmanager向window窗口里添加一个view。在调用
addNavigationBar()方法之前会回调start()的父方法super.start()来判断是否要添加NavigationBar。在
super.start()的调用父类方法里会调用createAndAddWindows(),该方法内会判断是否需要添加显示
NavigationBar,然后决定是否要实例化NavigationBarView.
  <span style="font-size:18px;">try
  boolean showNav = mWindowManagerService.hasNavigationBar();
  if (DEBUG) Slog.v(TAG, "hasNavigationBar=" + showNav);
  if (showNav)
  mNavigationBarView =
  (NavigationBarView) View.inflate(context, R.layout.navigation_bar, null);

  mNavigationBarView.setDisabledFlags(mDisabled);
  mNavigationBarView.setBar(this);
  
   catch (RemoteException ex)
  // no window manager? good luck with that
  </span>
  WindowManagerService类实现了WindowManagerPolicy的接口,所以WindowManagerService会回调WindowManagerPolicy 的hasNavigationBar()接口,

  <span style="font-size:18px;"> @Override
  public boolean hasNavigationBar()
  return mPolicy.hasNavigationBar();
  </span>

  Policy向下调用实际上调用的是PhoneWindowManager实现的hasNavigationBar方法,下面代码是PhoneWindowManager中的hasNavigationBar()方法。
  <span style="font-size:18px;">// Use this instead of checking config_showNavigationBar so that it can be consistently
  // overridden by qemu.hw.mainkeys in the emulator.
  public boolean hasNavigationBar()
  return mHasNavigationBar;
  </span>
  而mHasNavigationBar的赋值可以在PhoneWindowManager中的setInitialDisplaySize(Display display, int width, int height, int density)方法中找到,

  <span style="font-size:18px;"> if (!mHasSystemNavBar)
  mHasNavigationBar = mContext.getResources().getBoolean(
  com.android.internal.R.bool.config_showNavigationBar);
  // Allow a system property to override this. Used by the emulator.
  // See also hasNavigationBar().
  String navBarOverride = SystemProperties.get("qemu.hw.mainkeys");
  if (! "".equals(navBarOverride))
  if (navBarOverride.equals("1")) mHasNavigationBar = false;
  else if (navBarOverride.equals("0")) mHasNavigationBar = true;
  
   else
  mHasNavigationBar = false;
  </span>
  从上面代码可以看到mHasNavigationBar的值的设定是由两处决定的:
  1.首先从系统的资源文件中取设定值config_showNavigationBar, 这个值的设定的文件路径是frameworks/base/core/res/res/values/config.xml
  <!-- Whether a software navigation bar should be shown. NOTE: in the future this may be
  autodetected from the Configuration. -->
  <bool name="config_showNavigationBar">false</bool>
  2.然后系统要获取“qemu.hw.mainkeys”的值,这个值可能会覆盖上面获取到的mHasNavigationBar的值。如果 “qemu.hw.mainkeys”获取的值不为空的话,不管值是true还是false,都要依据后面的情况来设定。
  所以上面的两处设定共同决定了NavigationBar的显示与隐藏。

如何在 Android 中自定义权限对话框?

【中文标题】如何在 Android 中自定义权限对话框?【英文标题】:How can I customize permission dialog in Android? 【发布时间】:2016-01-20 20:44:41 【问题描述】:

假设我在运行时请求如下权限:

ActivityCompat.requestPermissions(thisActivity,
            new String[]Manifest.permission.READ_CONTACTS,
            MY_PERMISSIONS_REQUEST_READ_CONTACTS);

Android 系统会创建一个弹出对话框来请求权限。如何为该对话框定义自定义布局?

【问题讨论】:

你不能,见***.com/questions/32097218/… 【参考方案1】:

Android 6.0 Marshmallow. Cannot write to SD Card这篇文章帮助我摆脱了显示对话框以授予对外部权限的写入

【讨论】:

【参考方案2】:

我已经为权限创建了自定义对话框:

if (ContextCompat.checkSelfPermission(context, Manifest.permission.READ_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED) 
   if (ActivityCompat.shouldShowRequestPermissionRationale((Activity) context, Manifest.permission.READ_EXTERNAL_STORAGE)) 
       AlertDialog.Builder alertBuilder = new AlertDialog.Builder(context);
       alertBuilder.setCancelable(true);
       alertBuilder.setTitle("Permission necessary");
       alertBuilder.setMessage("External storage permission is necessary");
       alertBuilder.setPositiveButton(android.R.string.yes, new DialogInterface.OnClickListener() 

       @TargetApi(Build.VERSION_CODES.JELLY_BEAN)
       public void onClick(DialogInterface dialog, int which) 
           ActivityCompat.requestPermissions((Activity) context, new String[]Manifest.permission.READ_EXTERNAL_STORAGE, MY_PERMISSIONS_REQUEST_READ_EXTERNAL_STORAGE););

       AlertDialog alert = alertBuilder.create();
       alert.show();
    else  
          ActivityCompat.requestPermissions((Activity) context, new String[]Manifest.permission.READ_EXTERNAL_STORAGE, MY_PERMISSIONS_REQUEST_READ_EXTERNAL_STORAGE);
    return false; 
 else  
     return true;

希望对你有帮助:)

【讨论】:

看起来这只是创建一个新的对话框,当单击是时,将触发系统权限对话框,它不会改变Android中的实际权限对话框。与直接调用 ActivityCompat.requestPermissions... 没有什么不同 @BabyishTank :您不能自定义系统对话框。它只是用您自己的自定义消息创建一个自定义对话框。您可以直接调用系统权限对话。【参考方案3】:

简短的回答是,你不能

正如 android 文档所说:

当您的应用调用 requestPermissions() 时,系统会向用户显示一个标准对话框。您的应用无法配置或更改该对话框。如果您需要向用户提供任何信息或解释,您应该在调用 requestPermissions() 之前这样做,如“解释应用程序需要权限的原因”中所述。

因此,目前无法为权限对话框定义自定义布局。

您可以在此处找到更多详细信息:http://developer.android.com/training/permissions/requesting.html

【讨论】:

"android... 允许您向该对话框添加一些文本,解释用户为什么您请求该权限" - 我不知道。 @CommonsWare 我认为开发人员可以解释使用该权限的理由是错误的吗?或者只是 android 显示其关于该权限的默认解释? 您可以通过shouldShowPermissionRequestRationale() 了解您是否可能要显示解释。但是,您必须在自己的 UI 中执行此操作。您不能为此在系统对话框中添加散文。

以上是关于如何Android中自定义Navigationbar的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Android 中自定义 Spinner

如何Android中自定义Navigationbar

如何在 Android 中自定义权限对话框?

如何在 android 中自定义 com.coboltforge.slidemenuexample 库?

如何使用 FieldValue.serverTimestamp() 在 android 中自定义模型类

如何在 Android 应用中自定义顶部状态栏?