0

我必须关注xml:

                    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                          android:id="@+id/layout_refresh"
                          android:layout_width="fill_parent"
                          android:layout_height="110dp"
                          android:orientation="horizontal"
                          android:layout_gravity="center_horizontal"
                          android:visibility="invisible"      
                          android:layout_alignLeft="@+id/layout_status_image"    
                          android:layout_marginTop="5dp"
                          android:layout_marginLeft="72dp"
                          >
                          <!-- 
                          android:clickable="true"
                          android:background="@android:drawable/list_selector_background" -->
                          <ImageView android:id="@+id/image_refresh"
                          android:layout_width="wrap_content"
                          android:layout_height="wrap_content"
                          android:src="@drawable/widget_bt_refresh_idle"
                          android:layout_gravity="center_horizontal"
                          android:paddingRight="6dp"
                          />

                          <TextView android:id="@+id/refresh_text"
                          android:layout_width="wrap_content"
                          android:layout_height="wrap_content"
                          android:textSize="18sp"
                          android:layout_marginTop="25dp"
                          android:layout_marginLeft="35dp"
                          android:textColor="@color/solid_white"                         
                          android:text="Click to refresh"                
                          />
                  </RelativeLayout>

在此处输入图像描述

我该如何解决以下问题?

1) 居中refresh imagein 与其父容器有关。

2)使文本Click to refresh适合视图

4

1 回答 1

0

1)把这个属性放在你的 ImageView

 android:layout_centerInParent="true"

2)您所说的适合视图是什么意思?你可以发布一个屏幕吗?

于 2013-07-23T08:30:25.790 回答