我当前正在编写程序,并且在我的一项活动中,屏幕上的所有图标都将其不透明度降低到几乎透明。
这仅在Android 5.0及更低版本上发生。我使用模拟器进行了测试,Android 5.0以上的版本都非常完美。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<RelativeLayout
android:id="@+id/clockinoutbtn"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="5dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:layout_weight="1"
android:background="@drawable/rounded_corners"
android:backgroundTint="#357780">
<ImageView
android:id="@+id/clockInOutImgView"
android:layout_width="65dp"
android:layout_height="65dp"
android:layout_above="@+id/clockinorouttext"
android:layout_centerHorizontal="true"
app:srcCompat="@drawable/chimetimewhite" />
<EditText
android:id="@+id/clockinorouttext"
android:layout_width="300dp"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="5dp"
android:backgroundTint="#357780"
android:enabled="false"
android:gravity="center"
android:inputType="none"
android:text="CLOCK WORKER IN/ OUT"
android:textColor="#FFF"
android:textSize="20sp"
android:textStyle="normal" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/personnellogbtn"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="5dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="5dp"
android:layout_weight="1"
android:background="@drawable/rounded_corners"
android:backgroundTint="#1E3059">
<ImageView
android:id="@+id/personnellogimgview"
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_above="@+id/personnellogtext"
android:layout_centerHorizontal="true"
app:srcCompat="@drawable/personnellogwhite" />
<EditText
android:id="@+id/personnellogtext"
android:enabled="false"
android:layout_width="300dp"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="5dp"
android:backgroundTint="#1E3059"
android:gravity="center"
android:inputType="none"
android:text="PERSONNEL LOG"
android:textColor="#FFF"
android:textSize="20sp"
android:textStyle="normal" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/addnewworkerbtn"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="5dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="5dp"
android:layout_weight="1"
android:background="@drawable/rounded_corners"
android:backgroundTint="#357780">
<ImageView
android:id="@+id/addworkerimgview"
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_above="@+id/addworkertext"
android:layout_centerHorizontal="true"
app:srcCompat="@drawable/addnewworkerwhite" />
<EditText
android:id="@+id/addworkertext"
android:enabled="false"
android:layout_width="300dp"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="5dp"
android:backgroundTint="#357780"
android:gravity="center"
android:inputType="none"
android:text="ADD NEW OPERATIVE"
android:textColor="#FFF"
android:textSize="20sp"
android:textStyle="normal" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/timesheetsbtn"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="5dp"
android:layout_weight="1"
android:background="@drawable/rounded_corners"
android:backgroundTint="#1E3059">
<ImageView
android:id="@+id/timesheetsimgview"
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_above="@+id/timesheettext"
android:layout_centerHorizontal="true"
app:srcCompat="@drawable/timesheetswhite" />
<EditText
android:id="@+id/timesheettext"
android:enabled="false"
android:layout_width="300dp"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="5dp"
android:backgroundTint="#1E3059"
android:gravity="center"
android:inputType="none"
android:text="TIMESHEETS"
android:textColor="#FFF"
android:textSize="20sp"
android:textStyle="normal" />
</RelativeLayout>
</LinearLayout>
任何想法都将不胜感激。谢谢