12
Android में दृश्य के लिए अपारदर्शिता (अल्फा) कैसे सेट करें
मेरे पास निम्नलिखित के रूप में एक बटन है: <Button android:text="Submit" android:id="@+id/Button01" android:layout_width="fill_parent" android:layout_height="wrap_content"> </Button> मेरी onCreate()घटना में, मैं इस तरह से Button01 कॉल कर रहा हूं: setContentView(R.layout.main); View Button01 = this.findViewById(R.id.Button01); Button01.setOnClickListener(this); आवेदन में एक पृष्ठभूमि है, और मैं इस सबमिट बटन पर एक अस्पष्टता सेट करना चाहता हूं। …