Android: Unable to style action bar

爷,独闯天下 提交于 2020-01-07 09:07:18

问题


I want to get something like this

for this I have written title_layout which looks something like this

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

    <TextView
        android:id="@+id/mytext"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:text="@string/app_name"
        android:textColor="@color/black"
        android:textSize="22sp" 
        android:background="@drawable/background"/>

    </LinearLayout>

and background.xml looks like this

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
     <solid android:color="@color/pink"/>
    <stroke android:width="1dip" android:color="@color/pink" />
    <corners android:radius="20dip"/>
    <padding android:left="0dip" android:top="0dip" android:right="0dip" android:bottom="0dip" />

</shape>

and I have overriden onCreateOptionsMenu method as

@Override
    public boolean onCreateOptionsMenu(Menu menu)
    {
        getActionBar().setCustomView(R.layout.title_layout);
        return true;
    }

UI looks the same even if I dont write any of the code.


回答1:


You should do this in your onCreate():

ActionBar actionBar = getActionBar();
actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM); 
actionBar.setCustomView(R.layout.title_layout);

That should work



来源:https://stackoverflow.com/questions/25486151/android-unable-to-style-action-bar

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!