When you want to change layout like that, somepeople add some code on file.java, but I have simple trick to change background of image button or EditText to transparant, it easy...you can add it's code android:background="#00ffffff" to your file.xml example:
Before:
<EditText
android:id="@+id/I1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_x="1dp"
android:layout_y="86dp"
android:ems="10"
android:gravity="center"
android:hint="Input First Number"
android:numeric="integer"
android:textColorHint="#FAFAD2"
android:textColor="#FAFAD2" />
After:
<EditText
android:id="@+id/I1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_x="1dp"
android:layout_y="86dp"
android:background="#00ffffff"
android:ems="10"
android:gravity="center"
android:hint="Input First Number"
android:numeric="integer"
android:textColorHint="#FAFAD2"
android:textColor="#FAFAD2" />
save and run your project, and see the magic :D
okay...#keep coding, and be a programmer....
skip to main |
skip to sidebar
it's my story...
Senin, 24 Februari 2014
Translate
PROFIL
Teman
Labels
- adt
- android
- AVD
- backbox
- background button transparant
- best virtual machine linux
- button
- button effect
- button style
- can't launch emulator in eclipse
- cara menampilkan button transparant
- cara rubah cpu core
- change button transparent
- change cores
- creator b
- creator-b
- creatorb
- creatorb1
- download sticky notes for ubuntu
- dual core
- eclipse
- effect button android
- emulator error
- emulator not working
- emulator tidak bisa jalan
- how to change CPU cores
- how to create button android
- how to create virtual machine linux
- how to install slackware virtual
- how to install sticky notes on linux ubuntu
- how to installation kvm-qemu
- java
- Linux
- modify android button
- multicore
- no target selected
- performance
- problem eclipse
- problem virtual can't boot
- processor
- quad core
- sdk
- setting button
- solusi avd tidak jalan
- speed up
- sticky notes
- sticky notes for linux
- sticky notes for ubuntu
- sudo
- terminal
- terminal. linux
- transparant
- transparent
- ubuntu
- unable to boot virtual
- virtual box
Blog Archive
Statistik
7,423
Recent Posts
Me
Random
Recent Comments
BlogRoll
Diberdayakan oleh Blogger.
Popular Posts
-
How To Change CPU Cores on LINUX Multicore Processor Opinion: Some choose to use a single core or one processor core reas...
-
Today, i'm coding on my eclipse workspace but something wrong because when i'm create android emulator 4.1 in AVD isn't working,...
-
Virtual machine ( VM ) is a s oftware -based emulation of a computer. Virtual machines operate based on the computer architecture and func...
-
Are you looking for sticky notes and ot...
-
When you want to change layout like that, somepeople add some code on file.java, but I have simple trick to change background of image butto...
-
When i log in as root on terminal i see error like this " sudo: /var/lib/sudo/username writable by non-owner (040777), should be mode 0...
-
State List Drawables In the last article we covered the styling of a dialog box using vector drawables. In this article we are going to a...
1 komentar:
Thank you!!! :D
Posting Komentar