2016-04-21 51 views
2

因爲我是新來的android我在我的工具欄中設置了後退按鈕,我想從左邊減少它的填充/邊距我怎麼做? 感謝您的支持。減少工具欄中的左側導航圖標的邊距android

這是我設計的代碼

<android.support.v7.widget.Toolbar 
android:id="@+id/toolbar" 
android:layout_width="match_parent" 
android:layout_height="?attr/actionBarSize" 
android:background="?attr/colorPrimary" 
app:popupTheme="@style/AppTheme.PopupOverlay"> 
<TextView 
android:id="@+id/tripidtoolbar" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:layout_gravity="left" 
android:text="name" 
android:textColor="#ffffff" 
android:textSize="18sp" 
android:textStyle="bold" 
/> 
<TextView 
android:id="@+id/dayNotoolbar" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:layout_gravity="right" 
android:textColor="#ffffff" 
android:layout_marginRight="10dp" 
android:text="day" 
android:textAllCaps="true" 
android:textSize="18sp" 
android:textStyle="bold" 
/> 
</android.support.v7.widget.Toolbar> 

這是怎麼了手動設置後退按鈕

protected void onCreate(Bundle savedInstanceState) { 
super.onCreate(savedInstanceState); 
setContentView(R.layout.activity_vouchers_details); 
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); 
toolbar.setNavigationIcon(R.drawable.arrowbackwhite); 
toolbar.setNavigationOnClickListener(new View.OnClickListener() { 
@Override 
public void onClick(View v) { 
onBackPressed(); 
} 
}); 
setSupportActionBar(toolbar); 

這是我屏幕(後退按鈕就吃留有餘量)

+1

可能[Android的副本:從操作欄的自定義佈局中刪除左邊距](http:// st ackoverflow.com/questions/27354812/android-remove-left-margin-from-actionbars-custom-layout) –

+0

@EvgeniyMishustin:我試過這個問題,但仍然沒有解決我的問題.. –

回答

0

把它放在工具欄中xml

app:contentInsetLeft="0dp" 
app:contentInsetStart="0dp" 
+4

..感謝回覆....它看起來在Xml Editor中有效。但是當我在真實設備上運行應用程序時,它沒有任何改變。它看起來是這樣..你知道它爲什麼happans? –

-3

你可以試試這個:

中的onCreate

actionBar = getActionBar(); 
actionBar.setHomeButtonEnabled(true); 

然後補充一點:

@Override 
public boolean onOptionsItemSelected(MenuItem item) { 
    switch (item.getItemId()) { 
     case android.R.id.home: 
      onBackPressed(); 
      return true; 
     default: 
      return super.onOptionsItemSelected(item); 
    } 
} 

在你想在後退按鈕清單活動補充一點:

android:parentActivityName=".homeActivity" 

這將爲您創建後退按鈕。

+1

我已經創建了後退按鈕我的魔杖,以減少默認按鈕左側的空間。 –

0

設置樣式爲工具欄:

<!-- Tool Bar--> 
    <style name="ToolbarStyle" parent="@style/Widget.AppCompat.Toolbar"> 
     <item name="contentInsetStart">0dp</item> 
     <item name="android:paddingLeft">0dp</item> 
    </style> 

並在創建活動的方法,這樣做,

getSupportActionBar().setDisplayShowTitleEnabled(false); 
getSupportActionBar().setDisplayHomeAsUpEnabled(false); 
4

添加這些行到您的工具欄的XML

app:contentInsetLeft="0dp" 
app:contentInsetStart="0dp" 
app:contentInsetStartWithNavigation="0dp"