我正在尝试将TextView放在ImageView上方。现在我希望将TextView背景的可见性设置为40%。这是我目前的状态。
...
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/framelayout">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/imageView"/>
<TextView
android:id="@+id/title"
android:layout_width="378dp"
android:layout_height="35dp"
android:background="#000000"
android:text="Caption"
android:gravity="start"
android:textColor="@android:color/white"
android:layout_marginTop="165dp"
android:textSize="30dp"
android:layout_alignBottom="@+id/imageView"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:visibility="visible" />
</FrameLayout>
...
有人可以指导我,我应该怎么做呢?
答案 0 :(得分:1)
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/framelayout"
xmlns:android="http://schemas.android.com/apk/res/android">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/title"
android:layout_width="378dp"
android:layout_height="35dp"
android:background="#000000"
android:text="Caption"
android:gravity="start"
android:alpha="0.5"
android:textColor="@android:color/white"
android:layout_marginTop="30dp"
android:textSize="20sp"
/>
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/title"
android:id="@+id/imageView" />
</RelativeLayout>
</FrameLayout>
要调整透明度,您必须使用android:alpha=""
属性,文字大小不在dp
,sp
。希望能帮助到你。快乐的编码!