您好我在活动左侧启用了后退按钮的活动。实际上我的活动是AppCompatActivity,所以我在活动布局文件的顶部使用了工具栏。然后我以编程方式更改了主页指示图标。但看起来并不是很好。我还使用不同的变量来获得不同的密度。但我不知道为什么?
这是我的代码
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/ll_main"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:background="@color/colorPrimary"
android:minHeight="?attr/actionBarSize"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<ScrollView
//////
/>
<android.support.constraint.ConstraintLayout>
这是我的活动onCreate
@Override
public void onCreate(Bundle savedInstanceState) {
setContentView(R.layout.profileedit);
mTopToolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(mTopToolbar);
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
getSupportActionBar().setHomeAsUpIndicator(ContextCompat.getDrawable(this, R.drawable.icon_back_to_home));
setTitle("");
}
这是我的问题
我设置的主页按钮图标看起来更大。我还检查了不同的drawable size文件夹,这也不是问题。
答案 0 :(得分:2)
用不同尺寸的图标取回按钮图像。
转到res - &gt;新的 - &gt;图像资产。
选择图标类型 - &gt;操作栏和选项卡图标。
资产类型 - &gt;图像并从系统中选择您的图标。