我正在尝试更改我的应用程序的默认Actionbar,我在我的MainActivity中尝试这个:
package com.example.shaytsabar.footballtables.activitIEs;import androID.app.Actionbar;import androID.net.Uri;import androID.support.v4.app.FragmentManager;import androID.support.v7.app.AppCompatActivity;import androID.os.Bundle;import androID.text.LoginFilter;import androID.util.Log;import androID.vIEw.LayoutInflater;import androID.vIEw.VIEw;import com.example.shaytsabar.footballtables.R;import com.example.shaytsabar.footballtables.fragments.tableStandingsFragment;import com.example.shaytsabar.footballtables.fragments.topbarLeaguesFragment;public class MainActivity extends AppCompatActivity{ @OverrIDe protected voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentVIEw(R.layout.activity_main); Toolbar toolbar = (Toolbar) findVIEwByID(R.ID.toolbar); setSupportActionbar(toolbar);}
这是我想要的布局文件,而不是常规的Actionbar- trytopbarleagues.xml:
<?xml version="1.0" enCoding="utf-8"? <androID.support.constraint.ConstraintLayout 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="wrap_content"> <androID.support.v7.Widget.Toolbar androID:ID="@+ID/toolbar" androID:layout_wIDth="0dp" androID:layout_height="wrap_content" androID:layout_marginEnd="8dp" androID:layout_marginleft="8dp" androID:layout_marginRight="8dp" androID:layout_marginStart="8dp" androID:layout_margintop="8dp" androID:background="@color/colorAccent" androID:minHeight="?attr/actionbarSize" app:layout_constraintleft_toleftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constrainttop_totopOf="parent"> </androID.support.v7.Widget.Toolbar> </androID.support.constraint.ConstraintLayout>
AndroID清单:
<?xml version="1.0" enCoding="utf-8"?><manifest xmlns:androID="http://schemas.androID.com/apk/res/androID"package="com.example.shaytsabar.footballtables"><uses-permission androID:name="androID.permission.INTERNET" /><application androID:allowBackup="true" androID:icon="@mipmap/ic_launcher" androID:label="@string/app_name" androID:roundIcon="@mipmap/ic_launcher_round" androID:supportsRtl="true" androID:theme="@style/Apptheme.NoActionbar"> <!--@style/theme.AppCompat.light.NoActionbar Apptheme --> <activity androID:name=".activitIEs.MainActivity"> <intent-filter> <action androID:name="androID.intent.action.MAIN"/> <category androID:name="androID.intent.category.LAUNCHER"/> <action androID:name="androID.intent.action.VIEW"/> <category androID:name="androID.intent.category.DEFAulT"/> <category androID:name="androID.intent.category.broWSABLE"/> <!-- Accepts URIs that begin with "java-lang- programming://androID-app-Google-plus-demo" --> <data androID:host="java-lang-programming" androID:scheme="androID-app-Google-plus-demo"/> </intent-filter> </activity></application></manifest>
问题是Actionbar没有改变.它与defualt一样.
谢谢你的帮助:)
解决方法:
您需要使用以下内容将该活动的主题设置为AndroIDManifest.xml文件中的Noactionbar
androID:theme="@style/Apptheme.NoActionbar"
然后在MainActivity.java中,而不是以下两行
androID.support.v7.app.Actionbar mActionbar = getSupportActionbar();mActionbar.setCustomVIEw(R.layout.trytopbarleagues);
添加这些代码行
Toolbar toolbar = (Toolbar) findVIEwByID(R.ID.toolbar);setSupportActionbar(toolbar);
总结 以上是内存溢出为你收集整理的Android – 无法更改ActionBar全部内容,希望文章能够帮你解决Android – 无法更改ActionBar所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)