<LinearLayout
android:orientation="vertical"
android:layout_width="300dp"
android:layout_height="50dp">
<ImageView android:layout_height="40dp" android:id="@+id/imageView1"
android:background="@drawable/nicetab"
android:layout_width="300dp" ></ImageView>
<TextView
style="@style/DialogText.Title"
android:id="@+id/title"
android:paddingBottom="10dip"
android:paddingLeft="45dip"
android:paddingTop="7dip"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/codeFont"
android:textSize="15dip"
/>
</LinearLayout>
我怎么能把TextView放在ImageView上。在Android中有没有办法做到这一点,在HTML中我们很容易使用z-index,但是在这里 - 不知道
答案 0 :(得分:6)
一种非常简单的方法是使用RelativeLayout
<RelativeLayout
android:orientation="vertical"
android:layout_width="300dp"
android:layout_height="50dp" >
<ImageView
android:layout_height="40dp"
android:id="@+id/imageView1"
android:background="@drawable/nicetab"
android:layout_width="300dp" />
<TextView
style="@style/DialogText.Title"
android:id="@+id/title"
android:paddingBottom="10dip"
android:paddingLeft="45dip"
android:paddingTop="7dip"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/codeFont"
android:textSize="15dip" />
</RelativeLayout>
答案 1 :(得分:2)
在图像视图顶部进行文本视图的建议方法是使用textview的drawable。
android:drawable[Top|Left|Right|Bottom]="@your_drawable_here"
<TextView
style="@style/DialogText.Title"
android:id="@+id/title"
android:paddingBottom="10dip"
android:paddingLeft="45dip"
android:paddingTop="7dip"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/codeFont"
android:drawableTop="@drawable/your_drawable_from_imageview"
android:textSize="15dip" />
我不确定你的风格是什么,所以如果上面给出的内容不起作用,请尝试删除样式,或者在此处粘贴样式,我会帮助你。