1
0
mirror of https://github.com/tateisu/SubwayTooter synced 2025-01-28 01:29:23 +01:00

開発時にDB初期化を過剰にかけていたのを外した。カラム中のListViewのfastScrollerを有効にした。PullToRefreshとの相性はイマイチ

This commit is contained in:
tateisu 2017-04-24 01:19:39 +09:00
parent a62aaed891
commit 89f9c2ed1c
3 changed files with 3 additions and 1 deletions

View File

@ -41,7 +41,6 @@ public class App1 extends Application {
if( db_open_helper == null ){
db_open_helper = new DBOpenHelper( getApplicationContext() );
db_open_helper.onCreate( getDB() );
}
if( image_loader == null ){

View File

@ -47,6 +47,8 @@ public class Column {
final int type;
final long who_id;
long status_id;
int profile_tab = 0;
public int scroll_pos;
public int scroll_y;

View File

@ -117,6 +117,7 @@
android:paddingEnd="12dp"
android:paddingStart="12dp"
android:scrollbarStyle="outsideOverlay"
android:fastScrollEnabled="true"
/>
</com.omadahealth.github.swipyrefreshlayout.library.SwipyRefreshLayout>