I am trying to do something along the following lines:
SELECT bytes from user_segments where segment_name = 'TABLE_NAME';
I know that I can get the size of the whole database by
mDb = SQLiteDatabase;
long size = new File(mDb.getPath()).length();
Is it possible to get how much space an individual table takes up in storage in Android's SQLiteDatabase?
EDIT--
By the lack of response, I guess that it's not possible with SQLite. I am currently using a hack-ish way where I count the number of rows in the table and estimate how much space a single row takes (based on the given table schema).