在Android中重复图像的问题

时间:2015-09-04 09:24:27

标签: android android-layout

我有看到哪个应该显示中间的赢家,我想添加底部之字形边框,到目前为止这么好。只有当我添加图像并使其适合时它才会出现问题它只会重复直到视图中间(TableRow)。知道如何让它全屏显示吗?

这是winner.xml

  <RelativeLayout
    android:id="@+id/winner"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@color/red_transparent"
    android:visibility="invisible" >

    <TableLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:gravity="center"
        android:stretchColumns="field"
        android:weightSum="9" >

        <TableRow
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="3"
            android:gravity="bottom" >

            <ImageView
                android:layout_width="fill_parent"
                android:layout_height="12dp"
                android:adjustViewBounds="true"
                android:gravity="bottom"
                android:scaleType="fitXY"
                android:src="@drawable/zigzag_bottom" />
        </TableRow>

        <TableRow
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="2"
            android:background="#ffffff"
            android:gravity="center_horizontal|center_vertical" >

            <RelativeLayout
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:background="@drawable/back"
                android:gravity="center_horizontal|center_vertical" >

                <ImageView
                    android:id="@+id/winner_logo"
                    android:layout_width="50sp"
                    android:layout_height="50sp"
                    android:layout_centerHorizontal="true"
                    android:background="@drawable/back"
                    android:contentDescription="@string/app_name"
                    android:src="@drawable/vertical" />

                <TextView
                    android:id="@+id/winner_info"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_below="@+id/winner_logo"
                    android:layout_centerHorizontal="true"
                    android:background="@drawable/back"
                    android:contentDescription="@string/app_name"
                    android:src="@drawable/horizon"
                    android:text="@string/winner"
                    android:textColor="#880000"
                    android:textSize="64sp" />
            </RelativeLayout>
        </TableRow>

        <TableRow
            android:layout_width="0dp"
            android:layout_height="fill_parent"
            android:layout_weight="4" >

            <ImageView
                android:layout_width="fill_parent"
                android:layout_height="12dp"
                android:adjustViewBounds="true"
                android:background="@drawable/back"
                android:gravity="top"
                android:scaleType="fitXY"
                android:src="@drawable/zigzag_bottom" />
        </TableRow>
    </TableLayout>
   </RelativeLayout>

这是可重复的图像

<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
    android:antialias="true"
    android:src="@drawable/zigzagdown"
    android:tileMode="repeat" />

1 个答案:

答案 0 :(得分:0)

我发现了问题

机器人:stretchColumns =&#34;字段&#34;

应该是android:stretchColumns =&#34; *&#34;,所以它会拉伸所有列