我有一个带有imageview和textview的布局。
我想有这样的事情:
带有标题的图像视图,但我希望标题的布局是透明的,以便在背景中显示图像视图。
以下是我的布局代码:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="230dp"
android:layout_marginBottom="3dp" >
<ImageView
android:id="@+id/imgimg"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/ic_action_picture"
android:scaleType="centerCrop" />
<TextView
android:id="@+id/titlenew"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:text="TextView"
android:textColor="@color/blanc" />
</RelativeLayout>
</LinearLayout>
答案 0 :(得分:4)
试试这个
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="230dp"
android:layout_marginBottom="3dp" >
<ImageView
android:id="@+id/imgimg"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="centerCrop"
android:src="@drawable/ic_launcher" />
<TextView
android:id="@+id/titlenew"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="#80000000"
android:gravity="center"
android:padding="5dp"
android:text="TextView"
android:textColor="#fff" />
</RelativeLayout>
答案 1 :(得分:1)
尝试在android:background="@android:color/transparent"
上设置TextView
。
答案 2 :(得分:0)
您可以将其添加到textview:
android:background="#00000000"
如果你想用alpha值控制backgrounf play的透明度:
android:background="#CCFF0000"
答案 3 :(得分:0)
在这里你去:)
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<ImageView
android:id="@+id/imgimg"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/ic_action_picture"
android:scaleType="centerCrop" />
<TextView
android:id="@+id/titlenew"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="TextView"
android:gravity="bottom"
android:paddingTop="5dp"
android:paddingBottom="5dp"
android:layout_gravity="bottom"
android:background="#99000000"
android:textColor="@color/blanc" />
</FrameLayout>