0
<LinearLayout
                    android:layout_width="fill_parent"
                    android:layout_height="0.0dip"
                    android:layout_marginBottom="1.0dip"
                    android:layout_marginRight="1.0dip"
                    android:layout_weight="1.0"
                    android:background="@drawable/main_buttons_light"
                    android:onClick="btnProfileSettingsClick" >

                    <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_gravity="top|left"
                        android:gravity="left"
                        android:paddingLeft="8.0dip"
                        android:paddingTop="8.0dip"
                        android:text="@string/activity_main_button_profile_settings"
                        android:textSize="12.0sp"
                        android:color="@color/maintitletext" />

                    <ImageView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_gravity="bottom|left"
                        android:gravity="left"
                        android:paddingBottom="10.0dip"
                        android:paddingLeft="8.0dip"
                        android:src="@drawable/profile_settings" />
                </LinearLayout>

TextViewis位于顶部且ImageView位于底部,但图像位于右侧而不是左侧。如何在屏幕左侧依次设置?

4

3 回答 3

1

您可以使用 RelativeLayout 而不是 LinearLayout 作为 textView 和 imageView 的父视图并设置它们

layout_alignParentLeft
layout_alignParentRight
layout_alignParentTop
layout_alignParentBottom

特性。

此外,如果您使用 RelativeLayout 作为父视图,您可以使用

layout_toLeftOf
layout_toRightOf
layout_above
layout_below

属性依次添加子视图。

编辑:

<RelativeLayout 
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:id="@+id/containerLayout"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent">

<TextView 
android:layout_alignParentTop="true" 
android:layout_alignParentLeft="true" 
android:id="@+id/myText"  
android:text="Click Me" />

<ImageView 
android:layout_alignParentBottom="true" 
android:layout_alignParentLeft="true" 
android:id="@+id/myImage" />

</RelativeLayout>
于 2013-01-30T14:19:41.070 回答
1

尝试这个 :

<RelativeLayout  
android:layout_width="match_parent"
android:layout_height="match_parent">

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/hello_world" />

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

于 2013-01-30T14:47:16.813 回答
0

如果你想保持线性布局,只需要改变方向。将此添加到LinearLayout xml:

android:orientation="vertical"

让它在左边对齐,如果它是根布局,只需添加

android:gravity="left"

这将使所有孩子左对齐。

否则,如果 LinearLayout 是另一个布局的子级,则添加:

android:layout_alignParentLeft="true"
于 2013-01-30T14:30:25.553 回答