在Android上的LinearLayout中覆盖paddingLeft

时间:2011-12-20 19:11:40

标签: java android

我目前正在创建一个Android应用程序,我模式标题栏,所以标题栏的所有内容都在window_title.xml中保存,其中我有LinearLayout设置:paddingLeft =“5dip”。现在我需要在这个titleBar的右侧加载一个imageView我怎么能够覆盖这个paddingLeft我不能删除它,因为左边的文本和图像需要但我也需要它...

这是当前的xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="50dip"
    android:gravity="center_vertical"
    android:paddingLeft="5dip"
    android:background="#222222">

    <ImageView
        android:id="@+id/header"
        android:src="@drawable/header"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>    

    <TextView         
        android:text="TextTexast"
        android:textSize="10pt"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:paddingLeft="5dip"
        android:textColor="#F7F7F7"
        />

</LinearLayout>

2 个答案:

答案 0 :(得分:3)

如果我正确理解了您的问题,您正在寻找将一些填充应用于显示在标题栏TextView右侧的ImageView。您可以在根android:paddingRight中使用LinearLayout,如下所示:

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="50dip"
    android:gravity="center_vertical"
    android:paddingLeft="5dip"
    android:paddingRight="5dip
    android:background="#222222">

或者,您可以在android:paddingRight中指定要与右侧对齐的ImageView属性。

答案 1 :(得分:0)

要将灰色图移到右侧,只需将android:layout_gravity设置为"right"