我有一个包含片段的视图寻呼机,每个片段包含一个带有两个图像视图的Framelayout我想要做的是在寻呼机片段的所有实例中更改顶部图像视图的alpha 她是我的片段布局
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFF"
android:orientation="vertical">
<ImageView
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="fitXY" />
<ImageView
android:id="@+id/blur"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:alpha="0.0"
android:scaleType="fitXY" />
</FrameLayout>
我在活动中做了什么
View view1 = inflater.inflate(R.layout.fragment_screen_slide_page, null);
ImageView imageView= (ImageView) view1.findViewById(R.id.blur);
imageView.setAlpha((float)0.5);
有任何帮助吗? 感谢