0

我想为 Android 创建一个全屏标题。我创建了 70 * 480 px (& 9patch) 的图像。我能怎么做?我尝试使用银河选项卡..但它没有水平填充屏幕。这是代码:

<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:foo="http://schemas.android.com/apk/res/aaa.bbb"
    android:id="@+id/db1_root" 
    android:orientation="vertical"  
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"
    android:background="@drawable/background">
 <ImageView 
                android:src="@drawable/header" 
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:layout_gravity="top"
                    >
</ImageView>

提前致谢。

4

3 回答 3

0

您需要设置 android:scaleType 和可选的 android:adjustViewBounds。使用这两个属性来获得所需的效果。

http://developer.android.com/reference/android/widget/ImageView.html#attr_android:scaleType

于 2012-05-17T11:12:19.347 回答
0

使用此代码将您的 ImageView 添加到 xml 文件

            <shush.android.util.AspectImageView
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:background="@drawable/header" />

添加这个类:

package shush.android.util;

import android.content.Context;
import android.util.AttributeSet;
import android.view.View;

/**
 * @author Sherif elKhatib
 *
 */
public class AspectImageView extends View {

    public AspectImageView(Context context) {
        super(context);
    }

    public AspectImageView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public AspectImageView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        int width = MeasureSpec.getSize(widthMeasureSpec);
        int height = width * getBackground().getIntrinsicHeight()
                / getBackground().getIntrinsicWidth();
        setMeasuredDimension(width, height);
    }
}
于 2012-05-17T11:23:29.717 回答
0

试试这个

<LinearLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:foo="http://schemas.android.com/apk/res/aaa.bbb"
android:id="@+id/db1_root" 
android:orientation="vertical"  
android:layout_width="fill_parent" 
android:layout_height="fill_parent"
android:background="@drawable/background">
<ImageView 
            android:src="@drawable/header" 
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:layout_gravity="top"
                >
</ImageView>
于 2012-05-17T13:09:35.717 回答