14

如何动态设置重力?

Bitmap bmp;
im = new ImageView (this);
bmp=getbmp(img);
im.setImageBitmap(bmp);  

现在我想把图像放在顶部。android:gravity我可以在没有 main.xml 的情况下做到这一点吗?

编辑 :

主要的.xml

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

    >
</ScrollView>

我有一个框架布局,我添加了图像,然后是文本,我希望图像位于屏幕顶部。

FrameLayout fm = new FrameLayout (this);
fm.addView(im);
fm.addView(fin); // fin = the text view
setContentView(fm);
4

5 回答 5

31

使用ImageView.setScaleType()withImageView.ScaleType.FIT_START作为值。

于 2011-10-03T07:15:59.350 回答
0

您可以将 ImageView 放在 LinearLayout 中,并使用 LinearLayout 的 setLayoutParams 来设置布局的重力。

于 2011-10-03T07:21:30.227 回答
0

如果可能对您的 xml 文件有帮助,您可以尝试此代码

<GridView android:layout_width="fill_parent"
    android:layout_height="fill_parent" android:id="@+id/gallerylistactivity_gallery"
    android:columnWidth="90dp" android:numColumns="4"
    android:verticalSpacing="5dp" android:horizontalSpacing="10dp"
    android:gravity="center" android:stretchMode="spacingWidth"/>

.java 文件

公共类 GalleryListAdapter 扩展 BaseAdapter{

private Context mContext;

private Integer[] mImageIds = { R.drawable.gallery_01,
        R.drawable.gallery_02, R.drawable.gallery_03,
        R.drawable.gallery_04, R.drawable.gallery_05,
        R.drawable.gallery_06, R.drawable.gallery_07,
        R.drawable.gallery_08, R.drawable.gallery_10,
        R.drawable.gallery_09 };

public GalleryListAdapter(Context c) {
    this.mContext = c;

}

@Override
public int getCount() {
    return mImageIds.length;

}

@Override
public Object getItem(int position) {
    return position;
}

@Override
public long getItemId(int position) {
    return position;
}

@Override
public View getView(int position, View convertView, ViewGroup parent) {

    ImageView imageView = new ImageView(mContext);
    imageView.setImageResource(mImageIds[position]);
    imageView.setLayoutParams(new GridView.LayoutParams(100, 100));
    imageView.setScaleType(ImageView.ScaleType.CENTER_CROP);
    imageView.setPadding(3, 3, 3, 3);

    return imageView;

}
于 2011-10-03T07:26:12.303 回答
0

请参阅“http://developer.android.com/reference/android/widget/ImageView.ScaleType.html”。

于 2011-10-03T07:38:01.647 回答
0

试试这个:

Bitmap bmp;    
ImageView img= new ImageView (this);       
bmp=BitmapFactory.decodeResource(getResources(), R.drawable.icon);      
img.setImageBitmap(bmp);             
img.setLayoutParams(new FrameLayout.LayoutParams(LayoutParams.FILL_PARENT,                       
                  LayoutParams.WRAP_CONTENT, Gravity.CENTER_HORIZONTAL));
mLinearLayout.addView(img);

请注意,您需要根据您要设置的重力在 FrameLayout.LayoutParams(width,height,gravity) 中设置 imageview 的宽度和高度。

于 2011-10-03T07:49:05.890 回答