程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> interface-如何把 textviews 放置在 relative layout布局的右邊?

interface-如何把 textviews 放置在 relative layout布局的右邊?

編輯:編程綜合問答
如何把 textviews 放置在 relative layout布局的右邊?

我想把兩個 textviews 放置在 relative layout布局的右邊,但是這兩個 textviews一直在左邊,怎麼能放在布局的右邊呢?

<LinearLayout
            android:id="@+id/top_lay2"
            android:layout_width="fill_parent"
            android:layout_marginTop="10dp"
            android:orientation="vertical"
            android:layout_height="wrap_content"
            android:background="@drawable/customrect"
            android:layout_marginLeft="10dp"
            android:layout_marginRight="10dp">

<TextView
            android:id="@+id/font"
            android:layout_marginTop="6dp"
            android:textSize="36sp"
            android:layout_gravity="center"
            android:gravity="center"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:textColor="@color/white1"
            android:text="AllAroundMe"
            style="@style/shadow"
         />
        <RelativeLayout 
            android:background="@drawable/roundedbutton"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="4dp"
            android:layout_marginRight="4dp">

                <TextView

            android:id="@+id/desc1"
            android:color="@color/white1"
            android:gravity="right"
            android:layout_alignParentRight="true"
            android:layout_gravity="right"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="@string/desc1"
            android:textColor="@color/tabDark"
            android:padding="6dip"

    />
        <TextView
                    android:id="@+id/desc2"
                    android:color="@color/white1"
                    android:gravity="right"
                    android:layout_below="@id/desc1"
            android:layout_alignParentRight="true"
            android:layout_gravity="right"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="@string/desc2"
            android:textColor="@color/tabDark"
            android:textStyle="bold"
            android:padding="6dip"/>

           <ImageButton

            android:id="@+id/login"
             android:layout_below="@id/desc2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
             android:src="@drawable/facebooklogin"
             android:onClick="LoginClick"
             android:background="@null"
             android:layout_centerHorizontal="true"/>
                </RelativeLayout>
            <View
                android:layout_below="@id/top_lay2"
                    android:layout_width="fill_parent"
        android:layout_height="5dip"/>
</LinearLayout>

最佳回答:


我懷疑是你的layout的background有問題:

LinearLayout的android:background="@drawable/customrect";
RelativeLayout的android:background="@drawable/roundedbutton"
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved