2012-06-19 4 views
1

사용자 정의 레이아웃이있는 작업 표시 줄이 있지만이 아이콘이 false로 설정된 texttitle, description 및 uselogo가 표시됩니다.사용자 정의 레이아웃이있는 작업 표시 줄

사진 :

a busy cat http://img155.imageshack.us/img155/6742/sinttulozmk.png

이 내 코드입니다 :

// Gestion del ActionBar y contexto 
     ActionBar actionBar = getSupportActionBar(); 
     actionBar.setDisplayShowTitleEnabled(false); 
     actionBar.setDisplayUseLogoEnabled(false); 
     actionBar.setDisplayHomeAsUpEnabled(false); 
     actionBar.setDisplayShowCustomEnabled(true); 
     View cView = getLayoutInflater().inflate(R.layout.actionbar, null); 
     actionBar.setCustomView(cView); 

이는 actionbar.xml입니다 만 이미지,이 텍스트 뷰와 다른 이미지를 가지고있다.

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@+id/RelativeLayout1" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical" > 

    <RelativeLayout 
     android:layout_width="wrap_content" 
     android:layout_height="54dp" 
     android:layout_alignParentLeft="true" 
     android:layout_alignParentTop="true" 
     android:background="@drawable/header_bg" > 

     <TextView 
      android:id="@+id/textView1" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_alignParentBottom="true" 
      android:layout_alignParentLeft="true" 
      android:layout_marginBottom="10dp" 
      android:layout_marginLeft="100dp" 
      android:text="Nº de Usuario: " 
      android:textAppearance="?android:attr/textAppearanceSmall" 
      android:textColor="@color/blanco" 
      android:textSize="12sp" android:shadowColor="#232323" android:shadowDx="0" android:shadowDy="-1"/> 

     <TextView 
      android:id="@+id/tvABCodigoUsuario" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_alignBaseline="@+id/textView1" 
      android:layout_alignBottom="@+id/textView1" 
      android:layout_toRightOf="@+id/textView1" 
      android:textAppearance="?android:attr/textAppearanceSmall" 
      android:textColor="@color/blanco" 
      android:textSize="12sp" android:shadowColor="#232323" android:shadowDx="0" android:shadowDy="-1"/> 

     <ImageView 
      android:id="@+id/imageView1" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_alignParentLeft="true" 
      android:layout_centerVertical="true" 
      android:src="@drawable/header_logo" android:layout_marginLeft="14dp"/> 

     <ImageView 
      android:id="@+id/imageView2" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_alignParentRight="true" 
      android:layout_centerVertical="true" 
      android:src="@drawable/header_bt_off" android:layout_marginRight="14dp"/> 

     <TextView 
      android:id="@+id/TextView02" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_above="@+id/textView1" 
      android:layout_alignLeft="@+id/textView1" 
      android:paddingRight="9dp" 
      android:text="Nombre: " 
      android:textAppearance="?android:attr/textAppearanceSmall" 
      android:textColor="@color/blanco" 
      android:textSize="12sp" android:layout_marginLeft="45dp" android:layout_marginBottom="1dp" android:shadowColor="#232323" android:shadowDx="0" android:shadowDy="-1"/> 

    </RelativeLayout> 

</RelativeLayout> 

나는 액션 바 셜록 2.3

+0

액션 바 xml 파일을 제공하십시오 .......... –

+0

내 질문을 편집하십시오. – rbrlnx

+0

이 아이콘은이 XML에 있습니까? 내가 그릴 수있는 능력이 없기 때문에 탐지 할 수 없다 ...... header_bt_off로 보이는가? –

답변

6

당신은 아이콘을 숨길 수 actionbar.setDisplayShowHomeEnabled(false)을 사용할 수를 사용합니다.

관련 문제