gpt4 book ai didi

android - 添加图标到工具栏Android

转载 作者:行者123 更新时间:2023-11-29 16:45:23 25 4
gpt4 key购买 nike

我正在尝试使用这两行将图标添加到我的工具栏

getSupportActionBar().setDisplayShowHomeEnabled(true);
getSupportActionBar().setIcon(R.drawable.logo);

图标已添加,但是它添加在工具栏的中央,例如如何将其添加到工具栏的右上角?

这是我的action_bar_layout.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/app_name"
android:textColor="#ffffff"
android:id="@+id/action_bar_text"
android:textSize="18sp" />

</LinearLayout>

最佳答案

没有直接的方法可以将工具栏中的图标设置为向右。另一种方法是使用菜单。

您可以执行以下操作

在 res/menu.xml 文件夹中创建 Menu.xml

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">

<item android:id="@+id/menu_item"
android:icon="@drawable/logo"
app:showAsAction="always"/>

</menu>

在 Activity 中实现以下方法。

@Override
public boolean onCreateOptionsMenu(Menu menu){
getMenuInflater().inflate(R.menu.right_menu, menu);
return super.onCreateOptionsMenu(menu);
}

现在完成上述更改后,您将在工具栏右侧看到 图标。

您可以使用以下方法来实现点击:-

    @Override
public boolean onOptionsItemSelected(MenuItem item){

switch(item.getItemId()){
case R.id.menu_item: //this item has your app icon
Toast.makeText(this,"Tapped on icon",Toast.LENGTH_SHORT).show();
return true;
default: return super.onOptionsItemSelected(item);
}
}

关于android - 添加图标到工具栏Android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48609542/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com