3

私はこのようにImageviewを設定するのが好きです。

http://wemakeucc.com/4.jpg)<-画像を確認してください

今までこのようなimageviewしか使っていません。

<ImageView
     android:id="@+id/a_01_b"
     android:layout_width="wrap_content"
     android:layout_height="match_parent" 
     android:src="@drawable/a_01_i" />

その画像のようにimageviewを設定できるコードを知りたいのです。

私は何をすべきか?

4

3 に答える 3

2

以下の次のxmlを参照してください

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

    <ImageView android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:layout_alignParentRight="true"
       android:layout_marginRight="40dip"
       android:layout_marginTop="60dip" // give dip value according to where you want to place first image view from top
       android:background="@color/black" // set image according to you
       android:id="@+id/imageviewone" />

    <ImageView android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:layout_alignParentLeft="true"
       android:layout_marginLeft="40dip"
       android:layout_marginTop="60dip" // give dip value what you have given to first edit text
       android:background="@color/black" // set image according to you
       android:layout_below="@+id/imageviewone"
       android:id="@+id/imageviewtwo" />
    </RelativeLayout>

これがあなたに役立つかどうか私に知らせてください

于 2013-02-19T13:57:09.800 に答える
1

これがあなたの要件によるコードです:

xmlファイル:およびスクリーンショット

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

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="right"
        android:orientation="vertical"
        android:paddingBottom="30dp"
        android:paddingRight="20dp"
        android:paddingTop="20dp" >

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/android" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="right"
        android:orientation="vertical"
        android:paddingBottom="30dp"
        android:paddingRight="120dp"
        android:paddingTop="20dp" >

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/android" />
    </LinearLayout>

</LinearLayout>

ここに画像の説明を入力してください

必要に応じてパディングを設定します...

于 2013-02-19T14:10:53.397 に答える
-1

あなたが探している答えは[ LayoutParams][1]にあります。

あなたの質問に答えるために:

ImageView iv = (ImageView)findViewById(R.id.my_imageView);
AbsoluteLayout.LayoutParams absParams = 
    (AbsoluteLayout.LayoutParams)iv.getLayoutParams();
absParams.x = myX;
absParams.y = myY;
iv.setLayoutParams(absParams);

説明:ある種のアンカーポイント(ImageViewのx / y()を設定しています

于 2013-02-19T13:55:10.993 に答える