私のアプリのアクションバーの戻るボタンが少し大きいようです。私は私の電話でそれに私の指を保持すると、ボタンがハイライトと私はそれの右端がテキストを押し上げて四捨五入されていることがわかります。Android戻るボタンの形状を変更する
どのように私はボタンの正方形を作ることができ、代わりに真ん中に出て多くのもののアクションバーの左側に近いテキストを移動?
私のアプリのアクションバーの戻るボタンが少し大きいようです。私は私の電話でそれに私の指を保持すると、ボタンがハイライトと私はそれの右端がテキストを押し上げて四捨五入されていることがわかります。Android戻るボタンの形状を変更する
どのように私はボタンの正方形を作ることができ、代わりに真ん中に出て多くのもののアクションバーの左側に近いテキストを移動?
ツールバーの背中ナビゲーションアイコンこのためツールバープロパティを使用することができます
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?android:attr/actionBarSize"
android:minHeight="?android:attr/actionBarSize"
app:layout_collapseMode="pin"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/AppTheme.PopupOverlay"
app:theme="@style/ToolbarStyle">
<!-- Left side layout-->
<LinearLayout
android:id="@+id/layout_left_container"
android:layout_width="wrap_content"
android:layout_height="?attr/actionBarSize"
android:layout_gravity="start|center"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:gravity="center|start"
android:orientation="horizontal">
<ImageButton
android:id="@+id/iv_left_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/txt_left_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="end"
android:maxLength="30"
android:singleLine="true"
android:text="@string/app_name"
android:textColor="@color/white"
android:textSize="14sp" />
</LinearLayout>
</android.support.v7.widget.Toolbar>
ActionBar ab = getSupportActionBar();
ab.setHomeAsUpIndicator(R.drawable.ic_back);
ab.setDisplayShowHomeEnabled(true);
ab.setDisplayHomeAsUpEnabled(true);
それとも、正確な装飾がカスタムツールバーのレイアウトを使用したい場合は、用のカスタム描画可能に設定してみてください
app:contentInsetLeft="0dp"
app:contentInsetStart="0dp"
app:contentInsetStartWithNavigation="0dp"
l IKEは、ツールバー
<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"
app:contentInsetLeft="0dp"
app:contentInsetStart="0dp"
app:contentInsetStartWithNavigation="0dp" />
でこの使用は近い左側のアンドロイドにテキストを移動するために、これを試してみてください。layout_gravityは=「左」ボタンを振り出し描画可能なXMLを作成するために。 –