0

for design layout in my app, i use <AbsoluteLayout> for my main layout & set a image for background such :

    android:background="@drawable/main"

But in typing in edittext(s) i have tow problem:

  1. hiding edittext(s)

  2. Background Image retraction

  3. Problem with textview, when i change position with mouse(it's right when i change X/Y position in Properties)

    this problems is from my layout designing or another Bugs?

4

1 回答 1

1

停止使用 AbsoluteLayout,它在 4 年前就被弃用了,并且遇到了很多类似的问题。

改用相对布局:

http://developer.android.com/reference/android/widget/RelativeLayout.html

于 2014-02-19T11:09:28.957 回答