我试图在屏幕顶部放置一个图像视图,但它上面和下面都有某种类型的边距。所以我尝试了adjustViewBounds = true,它运行但是它不会到达屏幕的两侧。我只是希望它与屏幕顶部齐平,并到达两侧。有什么建议吗?
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="match_parent"
tools:context="${packageName}.${activityClass}"
android:orientation="vertical" >
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/title_bar"/>
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="fill_parent"
android:layout_height="200dp" >
<LinearLayout
android:id="@+id/goals"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
android:orientation="vertical" >
</LinearLayout>
</ScrollView>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:background="@android:color/black" >
</RelativeLayout>
答案 0 :(得分:0)
如果它只是彩色标题栏 - 那么仅使用View是有意义的,并将背景属性设置为所需的颜色。如果您有自定义图像并且无法使用默认的ImageView属性进行调整 - 那么您可以从图像中制作9Patch并将其用作背景(在9patch中您自己决定如何划分图像以及放置内容的位置)。你可以在android SDK中找到9patch工具。有关更多信息9patch: http://developer.android.com/reference/android/graphics/NinePatch.html
答案 1 :(得分:0)
我有同样的问题。我最终做的是在ImageView的顶部使用负边距,如下所示:
android:layout_marginTop="-4dp"
您可能需要四处寻找最适合您的dp数量。希望这会有所帮助。