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 image親コンテナに関連付けて中心に配置します。

2) テキストClick to refreshをビューに合わせる

4

1 に答える 1

0

1)この属性をImageViewに入れます

 android:layout_centerInParent="true"

2) ビューにフィットするとはどういう意味ですか? 画面を投稿できますか?

于 2013-07-23T08:30:25.790 に答える