1

画像を追加してビューのタイトル バーをカスタマイズすると、画像が端に正確に固定されないため、問題に直面します。ウィンドウのマージンと追加された画像の間のスペースが見える画像を添付しました。この問題を克服する方法。以下は、タイトルバーをカスタマイズするために使用したコードです。誰でもこの問題を解決するのを手伝ってくれますか?

Java コード:

 requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
 setContentView(R.layout.home_view);
 this.getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE,
            R.layout.upwindow);

レイアウト コード :

  <?xml version="1.0" encoding="utf-8"?>
  <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"    
  android:orientation="vertical" 
   android:layout_width="fill_parent"
     android:layout_height="32dp">

     <ImageView
         android:id="@+id/imageView1"
         android:layout_width="fill_parent"
         android:layout_height="fill_parent"
         android:background="@drawable/up_bar"
         android:src="@drawable/up_bar" />

<TextView 
    android:id="@+id/pagename"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:text="Sify MyStorage"
    android:textAppearance="?android:attr/textAppearanceMedium" />

</RelativeLayout>

ここに画像の説明を入力

4

4 に答える 4