2014-01-14 101 views

回答

0

進行填充,可以使用:

ImageView view = (ImageView)findViewById(android.R.id.home); 
view.setPadding(left, top, right, bottom); 
+0

嗨,很抱歉,不工作,我想添加填充到操作欄/導航抽屜圖標。 – RyanCW

+0

哎呀,好吧:) –

0

有一個調整,

你可以做的是,你可以把抽屜式導航欄圖標設置爲透明,而不是應用程序圖標設置抽屜圖標。這樣,抽屜圖標將從屏幕的左側移開。

ActionBar bar; 
bar = getActionBar(); 
bar.setIcon(getResources().getDrawable(R.drawable.ic_drawer));//where R.drawable.ic_drawer is your drawer icon 

ActionBarDrawerToggle mDrawerToggle; 
mDrawerToggle = new ActionBarDrawerToggle(this, mDrawerLayout, 
      R.drawable.ic_drawer_transparent, //nav menu toggle icon 
      R.string.app_name, // nav drawer open - description for accessibility 
      R.string.app_name // nav drawer close - description for accessibility 
    ) 

我希望這能夠以某種方式幫助你。

相關問題