我正在尝试将calendar_header.png
中的垂直线作为xml样式的背景水平拉伸:
<style name="CaldroidCalendarViewLayout">
<item name="android:background">@drawable/calendar_header</item>
</style>
但是它会根据背景的高度更改控件的高度。我该如何解决?我只想用拉伸的背景填充控件的实际大小。 (它的作用就像背景图像是内容的一部分,而不只是背景。)
答案 0 :(得分:0)
以下答案对我有帮助:https://stackoverflow.com/a/19405297/865475
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
xmlns:android="http://schemas.android.com/apk/res/android">
<ImageView
android:src="@drawable/activation_popup"
android:scaleType="fitXY"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_alignTop="@+id/activation_layout"
android:layout_alignBottom="@id/activation_layout"
android:layout_alignLeft="@id/activation_layout"
android:layout_alignRight="@id/activation_layout"
android:contentDescription="@string/act_code_label" />
<LinearLayout
android:id="@id/activation_layout"
android:clipToPadding="true"
android:padding="25dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >
<!-- LinearLayout wraps a bunch of smallish views here -->
</LinearLayout>
</RelativeLayout>