在Relativelayout中使用表格布局

时间:2013-01-17 06:42:43

标签: android android-layout relativelayout tablelayout

enter image description here

我无法获得以下布局,有些人可以帮助获得以下布局......总背景应为白色。感谢任何帮助

下面是我的xml文件

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:src="@drawable/askabud" />

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:paddingLeft="5dp" >
    </LinearLayout>

    <EditText
        android:id="@+id/fbedittext"
        android:layout_width="250dp"
        android:layout_height="100dp"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/imageView1"
        android:layout_marginTop="33dp"
        android:ems="10"
        android:gravity="top"
        android:hint="@string/saysomething"
        android:lines="6"
        android:paddingRight="5dp"
        android:scrollHorizontally="true" />

    <ImageView
        android:id="@+id/imageView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:src="@drawable/fbcancel" />

    <ImageView
        android:id="@+id/imageView3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignTop="@+id/fbedittext"
        android:layout_toLeftOf="@+id/imageView2"
        android:src="@drawable/facebooks1" />

    <ImageView
        android:id="@+id/imageView4"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBottom="@+id/fbedittext"
        android:layout_alignLeft="@+id/imageView3"
        android:layout_marginBottom="18dp"
        android:src="@drawable/people" />

</RelativeLayout>

有人可以建议我如何获得编辑文本和下拉列表的圆角。感谢

2 个答案:

答案 0 :(得分:3)

对于editext的圆角,您可以在drawables文件夹中定义一个说明

的roundcorner.xml
<corners android:radius="14dp" />

然后在你的xml中提到它作为edittext的背景。

android:background="@drawable/roundcorner"

选中下拉列表http://developer.android.com/guide/topics/ui/controls/spinner.html

答案 1 :(得分:1)

检查我在代码中所做的更改:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:src="@drawable/ic_launcher" />

    <ImageView
        android:id="@+id/imageView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:src="@drawable/ic_launcher" />

    <EditText
        android:id="@+id/fbedittext"
        android:layout_width="250dp"
        android:layout_height="140dp"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/imageView1"
        android:layout_marginTop="33dp"
        android:ems="10"
        android:gravity="top"
        android:hint="saysomething"
        android:lines="6"
        android:paddingRight="5dp"
        android:scrollHorizontally="true" />

    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="130dp"
        android:layout_alignBaseline="@id/fbedittext"
        android:layout_alignParentRight="true"
        android:layout_marginRight="10dip"
        android:layout_toRightOf="@id/fbedittexts" >

        <ImageView
            android:id="@+id/imageView3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_alignParentTop="true"
            android:src="@drawable/ic_launcher" />

        <ImageView
            android:id="@+id/imageView4"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_alignParentRight="true"
            android:src="@drawable/ic_launcher" />
    </RelativeLayout>

    <Spinner
        android:id="@+id/spinner"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/fbedittext" />

</RelativeLayout>

您不需要LinearLayout。您可以使用android:layout_marginRight从右上角开始间距。 对于下拉菜单,您可以使用Spinner