tmarzeion / drawable-notepad

Drawable Notepad is lightweight aplication that allows user to write some notes and draw on them.
GNU Lesser General Public License v3.0
67 stars 20 forks source link

Drawing line has an offset from my touch #27

Open sneetsher opened 7 years ago

sneetsher commented 7 years ago

I have Toshiba Thrive AT100 tablet, Android 4.0.4. With notepad 1.12.

See screenshots with Android touch debug active.

screenshot_2017-06-12-04-07-08 screenshot_2017-06-12-04-03-30 screenshot_2017-06-12-04-07-53

nht178 commented 7 years ago

I have fixed the above error by : Change Layout XML "activity_note" <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:id="@+id/note_layout" android:layout_width="match_parent" android:layout_height="match_parent" android:weightSum="1" android:paddingLeft="0dp" android:paddingRight="0dp"> to <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:id="@+id/note_layout" android:layout_width="match_parent" android:layout_height="match_parent" android:weightSum="1" android:paddingLeft="0dp" android:paddingRight="0dp"> However layout will change. You must design again for your layout