当我通过添加图像自定义视图中的标题栏时,我遇到了一个问题,因为图像没有准确地固定在边缘。我附上了图像,您可以在其中看到窗口边距和添加的图像之间的空间。如何克服这个问题。下面是我用来自定义标题栏的代码。谁能帮我解决这个问题。
爪哇代码:
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>