使用imageViews进行动态布局

时间:2014-10-02 07:41:27

标签: android android-layout

请帮我创建这个屏幕的布局: enter image description here

图像位置需要像在屏幕上一样。所有时间图像缩放或调整边框大小。

<?xml version="1.0" encoding="utf-8"?>

<TableLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    xmlns:android="http://schemas.android.com/apk/res/android">

    <TableRow
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:weightSum="3">

        <view
            class=".widget.AvatarView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/view6"
            android:gravity="center"
            android:layout_weight="1"
            android:layout_gravity="center" />

        <LinearLayout
            android:orientation="vertical"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="2">

            <view
                class=".widget.AvatarView"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/view"
                android:gravity="center" />

            <view
                class=".widget.AvatarView"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/view11"
                android:gravity="center" />
        </LinearLayout>
    </TableRow>

    <TableRow
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center">

        <view
            class=".widget.AvatarView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/view5"
            android:layout_weight="1"
            android:gravity="center" />

        <view
            class=".widget.AvatarView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/view8"
            android:layout_weight="1"
            android:gravity="center">

        </view>

        <view
            class=".widget.AvatarView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/view10"
            android:layout_weight="1"
            android:gravity="center">

        </view>

    </TableRow>
</TableLayout>

但图片无需缩放和调整大小! 我收到enter image description here请帮忙,谢谢!

1 个答案:

答案 0 :(得分:0)

检查此示例布局,您可以为自己的

自定义此布局
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >

  <ScrollView
    android:id="@+id/scrollView1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal" >

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:src="@drawable/ic_launcher" />

            <LinearLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:orientation="vertical" >

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

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

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal" >

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/ic_launcher" 
                android:layout_weight="1"/>
            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/ic_launcher"
                android:layout_weight="1" />
            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:src="@drawable/ic_launcher" 
                android:layout_weight="1"/>
        </LinearLayout>
    </LinearLayout>
  </ScrollView>
</RelativeLayout>