2010-06-16 52 views

回答

2

我usedthe如下代碼,但它仍然有一些不足之處:你應該修改值:

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

android:layout_gravity="center_horizontal|center_vertical" 
> 
<EditText 
    android:id="@+id/bullet" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 

    android:paddingRight="4dip" 
    android:includeFontPadding="false" 
    android:lines="4" 
    android:text="hidhidihfidhfdifhdifhdifhidhfidf" /> 
<ImageView 
    android:id="@+id/icon" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:background="#ffff00" 
    android:src="@drawable/icon" 
    android:layout_alignTop="@id/bullet" 

    android:layout_marginLeft="50dip" /> 

    <ImageView 
    android:id="@+id/icon1" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 

    android:background="#ff00ff" 
    android:layout_alignBottom="@id/bullet" 

    android:layout_marginLeft="100dip" 
    android:src="@drawable/star_logo" /> 

    </RelativeLayout> 
1

@pengwang和人可能關注

基線是指線在任何視圖的底部,按鈕,圖像視圖或任何控件。當你使用基線屬性時,你給出了你想要引用的基地的任何標識,或者是你想要的按鈕或任何地方。當您切換到圖形視圖,它會告訴它如何爲不會忽略你已經定義

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical" > 
    <RelativeLayout 
     android:id="@+id/relativeLayout1" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" > 
     <ImageButton 
      android:id="@+id/iB" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:src="@drawable/ic_launcher" 
      android:layout_alignParentBottom="true" /> 

     <Button 
      android:id="@+id/button1" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:text="Button" 
      android:layout_alignParentBottom="true" 
      android:layout_toRightOf="@id/iB" 
      android:layout_alignBaseline="@id/relativeLayout1" /> 
    </RelativeLayout> 
</LinearLayout> 
0

做這樣的事情

<EditText 
     android:id="@+id/searchedittext" 
     android:layout_width="fill_parent" 
     android:layout_height="50dip" 
     android:hint="Search Events, Restaurants, Businesses" 
     android:singleLine="true" 
     android:textSize="15dip" /> 

    <Button 
     android:id="@+id/searchbtn" 
     android:layout_width="40dip" 
     android:layout_height="40dip" 
     android:layout_marginLeft="-50dip" 
     android:background="@drawable/ic_menu_search" /> 
    <Button 
     android:id="@+id/searchbtn2" 
     android:layout_width="40dip" 
     android:layout_height="40dip" 
     android:layout_marginLeft="-30dip" 
     android:background="@drawable/ic_menu_search" /> 
</LinearLayout> 
-1

基線放置您的觀察中心的父視圖您只需指定此屬性 android:gravity =「center」

相關問題