Showing posts with label FILL_PARENT. Show all posts
Showing posts with label FILL_PARENT. Show all posts

Wednesday, 11 January 2012

Diffrence between FILL_PARENT and MATCH_PARENT and WRAP_CONTENT in Android

FILL_PARENT (renamed MATCH_PARENT in API Level 8 and higher),
which means that the View wants to be as big as its parent (minus padding)

WRAP_CONTENT, which means that the View wants to be just big enough to enclose
its content (plus padding)

Android SQLite Database Viewer or Debuging with Stetho

Every Android Developer uses SQLite Database to store data into the Android Application data. But to view the data in SQLite have a lot of...