gpt4 book ai didi

Android getActionBar().setTitle 不起作用

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:50:21 26 4
gpt4 key购买 nike

ActionBar - setTitle 似乎没有被调用。我用 ActionBar 做的所有其他事情(如 HomeIsUp 等)都进行得很顺利,但 setTitle - 不是。

这是一个简单 Activity 的代码:

public class GuidelineDetails extends Activity implements OnClickListener {

String guideline_name;
String guideline_attachment;

public static TextView tv_title;
public static TextView tv_intro;
public static TextView tv_test;
public static WebView webview;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.guideline_detail);
getActionBar().setTitle("Privet");
getActionBar().setHomeButtonEnabled(true);
getActionBar().setDisplayHomeAsUpEnabled(true);
getActionBar().setDisplayShowTitleEnabled(false);
getActionBar().setIcon(R.drawable.listbullet);

///// some code
}
}

为什么不设置标题?

在 list 中:

<activity
android:name=".GuidelineDetails"
android:configChanges="orientation"
android:label="Guideline"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.Holo.Light" >
</activity>

在布局中:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >

<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >

<TableRow
android:id="@+id/tableRow1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >

<TextView
android:id="@+id/guideline_title"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingBottom="1dp"
android:paddingLeft="10dp"
android:paddingRight="1dp"
android:paddingTop="35dp"
android:textSize="18dp"
android:textStyle="bold" />
</TableRow>

</TableLayout>
</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0.16"
android:orientation="vertical" >

<TableRow
android:id="@+id/tableRow4"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<WebView
android:id="@+id/webviewD"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>

</TableRow>



</LinearLayout>

</LinearLayout>

最佳答案

因为

getActionBar().setDisplayShowTitleEnabled(false);

改成

getActionBar().setDisplayShowTitleEnabled(true);

关于Android getActionBar().setTitle 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26045431/

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