透明图像按钮未加载

时间:2015-06-30 07:28:16

标签: android xml image png imagebutton

我有10个图像按钮,其中35%的图像区域是完全透明的。在发布这个应用程序后,我迷上了Note 2& Galaxy S5。然后,在对这些设备进行测试之后,我注意到当我将图像背景移除为此图像时,否则它将起作用。

那我现在该怎么办?

对我来说,保持透明是非常必要的。

来自setContentView的App粉碎: 的setContentView(R.layout.activity_main);

ImageButton的XML部分:

     <ScrollView
            android:id="@+id/scrollViewImageType"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center">

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:orientation="vertical">


                <ImageButton
                    android:id="@+id/ImageButtonType0"
                    android:layout_width="184dp"
                    android:layout_height="198dp"
                    android:layout_margin="7dp"
                    android:background="@drawable/robindronath_thakur" />


                <ImageButton
                    android:id="@+id/ImageButtonType1"
                    android:layout_width="184dp"
                    android:layout_height="198dp"
                    android:layout_margin="7dp"
                    android:background="@drawable/kaji_nazrul_islam" />


                <ImageButton
                    android:id="@+id/ImageButtonType2"
                    android:layout_width="180dp"
                    android:layout_height="195dp"
                    android:layout_margin="7dp"
                    android:background="@drawable/jibonanondo_das" />


                <ImageButton
                    android:id="@+id/ImageButtonType3"
                    android:layout_width="180dp"
                    android:layout_height="195dp"
                    android:layout_margin="7dp"
                    android:background="@drawable/sukanto_vottacarjo" />


                <ImageButton
                    android:id="@+id/ImageButtonType4"
                    android:layout_width="180dp"
                    android:layout_height="195dp"
                    android:layout_margin="7dp"
                    android:background="@drawable/sukumar_ray" />


                <ImageButton
                    android:id="@+id/ImageButtonType5"
                    android:layout_width="180dp"
                    android:layout_height="195dp"
                    android:layout_margin="7dp"
                    android:background="@drawable/josim_huddin" />


                <ImageButton
                    android:id="@+id/ImageButtonType6"
                    android:layout_width="180dp"
                    android:layout_height="195dp"
                    android:layout_margin="7dp"
                    android:background="@drawable/ahosan_habib" />

                <ImageButton
                    android:id="@+id/ImageButtonType7"
                    android:layout_width="180dp"
                    android:layout_height="195dp"
                    android:layout_margin="7dp"
                    android:background="@drawable/sotendronath_datto" />

                <ImageButton
                    android:id="@+id/ImageButtonType8"
                    android:layout_width="180dp"
                    android:layout_height="195dp"
                    android:layout_margin="7dp"
                    android:background="@drawable/forrukh_ahmed" />

                <ImageButton
                    android:id="@+id/ImageButtonType9"
                    android:layout_width="180dp"
                    android:layout_height="195dp"
                    android:layout_margin="7dp"
                    android:background="@drawable/issorcandro_gupto" />

            </LinearLayout>

        </ScrollView>

0 个答案:

没有答案