导航菜单项"徽章"垂直对齐

时间:2016-06-12 09:28:03

标签: java android android-layout android-studio

您好我在导航菜单中使用徽章计数器,但是。我不能垂直移动到中心。我尝试了margin,height:match_parent但宽度形状没有成功。

https://stackoverflow.com/a/33607630/4933464) 这是我的代码(我用的是形状):

@绘制/ menu_counter.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
    <solid android:color="#ec443e" />
    <padding
        android:left="5dp"
        android:right="5dp"
        android:top="3dp"
        android:bottom="3dp"/>
    <corners android:radius="5dp" />
</shape>

@布局/ menu_counter.xml

<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:background="@drawable/menu_counter"
android:textAppearance="@style/TextAppearance.AppCompat.Body2"
android:textColor="#ffffff" />

感谢。

2 个答案:

答案 0 :(得分:0)

Original DrawerLayout不支持徽章。但是有很多有用的库

MaterialDrawer https://github.com/mikepenz/MaterialDrawer

在github页面上可以看到截图。

答案 1 :(得分:0)

用相对布局包裹并添加

机器人:layout_centerVertical =&#34;真&#34;

var tablink = [];
function getTabUrl(){
  chrome.tabs.getSelected(null,function(tab) {
    var len = tablink.length;
    if(len == 0){
      tablink[0] = tab.url;
    }
    else {
      tablink[len] = tab.url;
    }
    console.log(tablink);
  }
}

document.addEventListener("DOMContentLoaded", function() {
  getTabUrl();
  link.addEventListener('click', function() {
    chrome.tabs.update({url: 'https://www.google.com/'});
  });
});