更改自定义工具栏文本
Change Custom Toolbar Text
无法更改工具栏上的文本。我进行了一定程度的搜索,但没有看到任何结果。
我已经尝试了很多东西的组合,但也许会弹出一些东西。
这是我为 activity.
尝试的最后一件事的代码
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbarCustom);
TextView textView = (TextView) toolbar.findViewById(R.id.toolbarTextView);
textView.setText("String");
这是我的XML代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_item_action"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.carson.tryeverything.ItemActionActivity"
android:orientation="vertical"
>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbarCustom"
android:layout_width="match_parent"
android:layout_height="?actionBarSize"
android:background="?attr/colorPrimary"
>
<TextView
android:id="@+id/toolbarTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:ellipsize="end"
android:gravity="center"
android:maxLines="1"
android:text="Line one"
android:textAppearance="@android:style/TextAppearance.WindowTitle"
android:visibility="visible" />
</android.support.v7.widget.Toolbar>
<FrameLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
>
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:layout_marginBottom="6dp"
android:layout_marginTop="0dp"
/>
</FrameLayout>
</LinearLayout>
android:textAppearance="@android:style/TextAppearance.WindowTitle"
android:visibility="visible" />
</android.support.v7.widget.Toolbar>
最后是我的清单文件。可能需要稍微清洁一下
<application
android:name="android.support.multidex.MultiDexApplication"
android:allowBackup="true"
android:icon="@mipmap/icon2"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:theme="@style/AppTheme.NoActionBar"/>
<activity
android:name=".SplashScreen"
android:label="@string/app_name"
android:theme="@android:style/Theme.Translucent.NoTitleBar"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="no spoilers" />
</intent-filter>
</activity>
<activity android:name=".ItemActionActivity"
android:theme="@style/AppTheme.NoActionBar"
/>
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="@string/google_maps_key" />
<activity
android:name=".MapsActivity"
android:label="@string/title_activity_maps"/>
</application>
我有三个活动,Splash,有 2 打列表视图选项的主屏幕,然后是最终的 activity 屏幕,我希望工具栏根据您点击的内容显示自定义标题。
你忘记设置了:
setSupportActionBar(toolbar);
还有这个:
getSupportActionBar().setDisplayShowTitleEnabled(false);
你的 ACTIVITY 像这样:
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbarCustom);
setSupportActionBar(toolbar);
TextView textView = (TextView)toolbar.findViewById(R.id.toolbarTextView);
textView.setText("String");
getSupportActionBar().setDisplayShowTitleEnabled(false);
就会这样。 Java代码:
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); //here toolbar is your id in xml
setSupportActionBar(toolbar);
getSupportActionBar().setTitle("String"); //string is custom name you want
以下是在 Android Kotlin 中更改自定义工具栏文本的方法:
首先转到 Manifest 文件,然后在您的 activity 中添加行 android:theme="@style/AppTheme.NoActionBar" 在您的 activity 标签中
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
</activity>
其次 Activity 并添加以下内容:
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
setSupportActionBar(toolbar)
toolbar.title = "My New Title"
}
我一直不明白,为什么有人不直接在 xml 中写下所有工具栏自定义文本?为什么要在 .java 文件中编写代码?
例如
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimary"
android:elevation="4dp"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light">
<TextView
android:id="@+id/tv_toolbar_custom"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#fff"
android:textSize="@dimen/_22ssp"
android:textStyle="bold"
android:text="Profile"/>
</androidx.appcompat.widget.Toolbar>
无法更改工具栏上的文本。我进行了一定程度的搜索,但没有看到任何结果。
我已经尝试了很多东西的组合,但也许会弹出一些东西。 这是我为 activity.
尝试的最后一件事的代码Toolbar toolbar = (Toolbar) findViewById(R.id.toolbarCustom);
TextView textView = (TextView) toolbar.findViewById(R.id.toolbarTextView);
textView.setText("String");
这是我的XML代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_item_action"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.carson.tryeverything.ItemActionActivity"
android:orientation="vertical"
>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbarCustom"
android:layout_width="match_parent"
android:layout_height="?actionBarSize"
android:background="?attr/colorPrimary"
>
<TextView
android:id="@+id/toolbarTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:ellipsize="end"
android:gravity="center"
android:maxLines="1"
android:text="Line one"
android:textAppearance="@android:style/TextAppearance.WindowTitle"
android:visibility="visible" />
</android.support.v7.widget.Toolbar>
<FrameLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
>
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="4dp"
android:layout_marginRight="4dp"
android:layout_marginBottom="6dp"
android:layout_marginTop="0dp"
/>
</FrameLayout>
</LinearLayout>
android:textAppearance="@android:style/TextAppearance.WindowTitle"
android:visibility="visible" />
</android.support.v7.widget.Toolbar>
最后是我的清单文件。可能需要稍微清洁一下
<application
android:name="android.support.multidex.MultiDexApplication"
android:allowBackup="true"
android:icon="@mipmap/icon2"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:theme="@style/AppTheme.NoActionBar"/>
<activity
android:name=".SplashScreen"
android:label="@string/app_name"
android:theme="@android:style/Theme.Translucent.NoTitleBar"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="no spoilers" />
</intent-filter>
</activity>
<activity android:name=".ItemActionActivity"
android:theme="@style/AppTheme.NoActionBar"
/>
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="@string/google_maps_key" />
<activity
android:name=".MapsActivity"
android:label="@string/title_activity_maps"/>
</application>
我有三个活动,Splash,有 2 打列表视图选项的主屏幕,然后是最终的 activity 屏幕,我希望工具栏根据您点击的内容显示自定义标题。
你忘记设置了:
setSupportActionBar(toolbar);
还有这个:
getSupportActionBar().setDisplayShowTitleEnabled(false);
你的 ACTIVITY 像这样:
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbarCustom);
setSupportActionBar(toolbar);
TextView textView = (TextView)toolbar.findViewById(R.id.toolbarTextView);
textView.setText("String");
getSupportActionBar().setDisplayShowTitleEnabled(false);
就会这样。 Java代码:
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); //here toolbar is your id in xml
setSupportActionBar(toolbar);
getSupportActionBar().setTitle("String"); //string is custom name you want
以下是在 Android Kotlin 中更改自定义工具栏文本的方法:
首先转到 Manifest 文件,然后在您的 activity 中添加行 android:theme="@style/AppTheme.NoActionBar" 在您的 activity 标签中
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar">
</activity>
其次 Activity 并添加以下内容:
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
setSupportActionBar(toolbar)
toolbar.title = "My New Title"
}
我一直不明白,为什么有人不直接在 xml 中写下所有工具栏自定义文本?为什么要在 .java 文件中编写代码? 例如
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimary"
android:elevation="4dp"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light">
<TextView
android:id="@+id/tv_toolbar_custom"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#fff"
android:textSize="@dimen/_22ssp"
android:textStyle="bold"
android:text="Profile"/>
</androidx.appcompat.widget.Toolbar>