gpt4 book ai didi

java - 如何在滑动标签上方添加图像?

转载 作者:行者123 更新时间:2023-11-30 02:34:41 24 4
gpt4 key购买 nike

我正在尝试在滑动标签上方添加一个图片如下图所示

!

我尝试添加这个:

    getActionBar().setIcon(R.drawable.ic_launcher);

并将它添加到 viewpager 上方的我的 viewpager xml 中,但它不起作用

知道怎么做吗?

最佳答案

您可能希望将自定义 View 应用于操作栏。尝试这样的事情:

ActionBar actionBar = getSupportActionBar();
actionBar.setDisplayHomeAsUpEnabled(false);
actionBar.setDisplayShowCustomEnabled(true);
actionBar.setDisplayShowTitleEnabled(false);

LayoutInflater inflator = (LayoutInflater) this .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = inflator.inflate(R.layout.action_bar_layout, null);

actionBar.setCustomView(view);

这里是 action_bar_layout.xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="fill_horizontal">

<ImageView
android:id="@+id/logo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/YOUR_IMAGE_GOES_HERE" />

</RelativeLayout>

关于java - 如何在滑动标签上方添加图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26760393/

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