gpt4 book ai didi

android - 如何在 Android 应用程序中使用图像自定义标题栏?

转载 作者:行者123 更新时间:2023-11-29 01:58:18 27 4
gpt4 key购买 nike

我会使用图标和文本自定义应用程序每个 Activity 的标题栏。我尝试了一些方法,但它们不起作用。谁能帮帮我?

这是我的代码示例:

public class TitleBar extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
final boolean customTitleSupported = requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.activity_main);

if ( customTitleSupported ) {
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.titlebar);
}
// user can also set color using “Color” and then “Color value constant”
// myTitleText.setBackgroundColor(Color.GREEN);
}
}

在 xml 中:

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

<TextView
android:id="@+id/myTitleText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="appuntiiiiiii" />

</LinearLayout>`

最佳答案

我知道这对您的需求来说可能有点矫枉过正,但如果您真的想要一些很酷的东西,您应该尝试实现 ActionBar。它可以从 API11 正式获得,但您可以实现 ActionBarSherlock它看起来和工作起来几乎一样。我喜欢它!

至于你的代码,没有 ImageView 所以你怎么可能显示图像。在 TextView 之前你需要一个 imageView

关于android - 如何在 Android 应用程序中使用图像自定义标题栏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13955815/

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