Reputation: 2255
I am a beginner to android programming. So I am sorry if some of you find this trivial. I want to implement a functionality where a button is not separate from edittext. That is they have no physical distinction.
| aa | | aa |
In place of the a's there is the button. How do I implement this?
Upvotes: 0
Views: 437
Reputation: 1271
As far as I could understand your question, you are trying to put buttons into an EditText. Is that right?
If yes, I'm afraid there could occur some problems concerning focus etc., so try to avoid layouts like this.
Have you tried RelativeLayout?
Upvotes: 1