我编写了一个代码,将活动的标题向右移动。下面是java代码。我正在使用getSupportActionBar()。
这是我想要的工具栏的图片
package com.example.hsports.practicesession;
import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.view.View;
import android.widget.TextView;
public class HomePage extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_home_page);
String getUserEmail = getIntent().getExtras().getString("userEmail");
String getUserPassword = getIntent().getExtras().getString("userPassword");
TextView displayUserEmail= (TextView) findViewById(R.id.displayUserEmail);
//this.setTitle("Welcome"+" "+getUserEmail);
// getActionBar().setTitle("Welcome"+" "+getUserEmail);
TextView displayUserPassword=(TextView)findViewById(R.id.displayUserPassword);
displayUserEmail.setText(getUserEmail);
displayUserPassword.setText(getUserPassword);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
TextView welcomeTextView = (TextView) toolbar.findViewById(R.id.welcomeText);
welcomeTextView.setText("Welcome " + getUserEmail);
FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
fab.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
.setAction("Action", null).show();
}
});
}
}
这是用于主页的xml代码。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.example.hsports.practicesession.HomePage"
tools:showIn="@layout/activity_home_page"
>
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay"
>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay"
/>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:id="@+id/welcomeText"
android:layout_marginRight="30dp"
android:layout_alignParentRight="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>
</android.support.design.widget.AppBarLayout>
<TextView
android:id="@+id/displayUserEmail"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/displayUserPassword"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
实际上,我希望页面的标题位于上面的操作栏的右侧。如何做到这一点。
我得到的错误是这样的:
07-14 00:03:03.763 3038-3038/com。实例H体育。Practicession E/AndroidRuntime:致命异常:主进程:com。实例H体育。Practicessession,PID:3038 java。lang.RuntimeException:无法启动activity ComponentInfo{com.example.hsports.practicesession/com.example.hsports.practicesession.HomePage}:java。lang.NullPointerException:尝试调用虚拟方法“void android”。小装置。文本视图。android上的空对象引用上的setText(java.lang.CharSequence)。应用程序。活动线程。android上的performLaunchActivity(ActivityThread.java:2416)。应用程序。活动线程。android上的handleLaunchActivity(ActivityThread.java:2476)。应用程序。活动线程-android上的wrap11(ActivityThread.java)。应用程序。android上的ActivityThread$H.handleMessage(ActivityThread.java:1344)。操作系统。处理程序。android上的dispatchMessage(Handler.java:102)。操作系统。活套。android上的loop(Looper.java:148)。应用程序。活动线程。java上的main(ActivityThread.java:5417)。郎。反思。方法在com上调用(本机方法)。Android内部的操作系统。ZygoteInit$MethodandArgscaler。在com上运行(ZygoteInit.java:726)。Android内部的操作系统。合子岩。主要(ZygoteInit.java:616)原因:java。lang.NullPointerException:尝试调用虚拟方法“void android”。小装置。文本视图。setText(java.lang.CharSequence)“”在com的空对象引用上。实例H体育。练习阶段。主页android上的onCreate(HomePage.java:46)。应用程序。活动android上的performCreate(Activity.java:6237)。应用程序。仪表。android上的callActivityOnCreate(Instrumentation.java:1107)。应用程序。活动线程。android上的performLaunchActivity(ActivityThread.java:2369)。应用程序。活动html" target="_blank">线程。handleLaunchActivity(ActivityThread.java:2476)
你的
this.getSupportActionBar().setTitle("Welcome"+" "+getUserEmail);
正在尝试设置不存在的操作栏的标题。
您的应用主题可能没有操作栏,或者您没有正确引用它。
空对象引用是因为您在设置工具栏本身之前设置了工具栏的标题。这可以通过以下方式解决:
//REMOVED
TextView displayUserPassword=(TextView)findViewById(R.id.displayUserPassword);
displayUserEmail.setText(getUserEmail);
displayUserPassword.setText(getUserPassword);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
this.getSupportActionBar().setTitle("Welcome"+" "+getUserEmail);
您的xml布局中应该有一个工具栏,因此您的xml文件应该如下所示:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="right"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.example.hsports.practicesession.HomePage"
tools:showIn="@layout/activity_home_page">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<TextView
android:id="@+id/displayUserEmail"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/displayUserPassword"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
然后需要在onCreate方法中设置supportActionBar,如下所示:
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
在此之后,您可以设置标题:
getSupportActionBar().setTitle("Welcome"+" "+getUserEmail);
但是在您的例子中,您试图在设置supportActionBar之前设置标题,因此您得到的是NullPointerException。
此外,R.id.toolbar
不在您当前的xml布局中,因此它将再次抛出NullPointerException
,因此按照上面的建议更改您的xml文件以添加Toolbar
。
更新
要将文本置于右侧:
您需要在工具栏中添加自己的文本视图,这样就不需要像这样设置工具栏标题:
getSupportActionBar().setTitle("Welcome"+" "+getUserEmail);
更改您的活动主页。xml编码:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="com.example.hsports.practicesession.HomePage">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" >
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:id="@+id/welcomeText"
android:layout_marginRight="30dp"
android:layout_alignParentRight="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>
</android.support.v7.widget.Toolbar>
</android.support.design.widget.AppBarLayout>
<include layout="@layout/content_home_page" />
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
android:src="@android:drawable/ic_dialog_email" />
</android.support.design.widget.CoordinatorLayout>
然后在你的active
中这样做:
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
TextView welcomeTextView = (TextView) toolbar.findViewById(R.id.welcomeText);
welcomeTextView.setText("Welcome " + getUserEmail);
输出:
下面是我的布局: 我希望标题停留在工具栏中,而不是在折叠ToolbarLayout中。因此我将代码从: 在调用setSupportActionBar(mToolbar)之后,标题和菜单都是不可见的。
问题内容: 我的应用程序中有一个工具栏,例如: 我将标题添加为: 我已经读过Android工具栏中心标题和自定义字体 但是,如果我更改工具栏的xml,我不知道如何更改TextView的值。有人可以帮助我吗? 问题答案: 如果您具有自定义的工具栏布局,请不要用于设置标题。 相反,假设您的XML布局如下所示: 你需要调用,在某处你的可能是:
我用项目模板中的导航抽屉创建了一个新项目,我想在中心设置工具栏的标题,如下所示
使用TabsLayout实现了一个选项卡活动,但现在活动的标题没有显示在工具栏上,尝试了各种我在internet上找到的修补程序,但似乎都不起作用。 活动得XML: onCreate:受保护的空onCreate(Bundle savedInstanceState){super.onCreate(savedInstanceState);setContentView(r.layout.activity
我想这样做,但与折叠工具栏布局或滚动后在工具栏中显示徽标和标题。 请帮助我
actionbar.xml: