当前位置: 首页>>代码示例>>Java>>正文


Java ListView.setScrollingCacheEnabled方法代码示例

本文整理汇总了Java中android.widget.ListView.setScrollingCacheEnabled方法的典型用法代码示例。如果您正苦于以下问题:Java ListView.setScrollingCacheEnabled方法的具体用法?Java ListView.setScrollingCacheEnabled怎么用?Java ListView.setScrollingCacheEnabled使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在android.widget.ListView的用法示例。


在下文中一共展示了ListView.setScrollingCacheEnabled方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: show

import android.widget.ListView; //导入方法依赖的package包/类
public void show(String searchName,ArrayList<String> filePathList){
    // タイトル
    String strTitle = searchName+"駅を検索";
    // リストビュー
    ListView listview = new ListView( m_parent );
    listview.setScrollingCacheEnabled( false );
    listview.setOnItemClickListener( this );
    // ファイルリスト
    List<FileInfo> listFileInfo = new ArrayList<>();
    for( String filePath : filePathList ){
        File file=new File(filePath);
        if(!file.exists()){
            continue;
        }
        System.out.println(filePath);
        if(file.getName().endsWith(".oud")||file.getName().endsWith(".oud2")) {
            String[] stationName=loadStartEndStation(file);
            listFileInfo.add(new FileInfo(stationName[0]+"~"+stationName[1]+"\n"+file.getName(),file));
        }
    }
    Collections.sort( listFileInfo );

    m_fileinfoarrayadapter = new FileInfoArrayAdapter( m_parent, listFileInfo );
    listview.setAdapter( m_fileinfoarrayadapter );

    Builder builder = new AlertDialog.Builder( m_parent );
    builder.setTitle( strTitle );
    builder.setNeutralButton("キャンセル", null );
    builder.setView( listview );
    m_dlg = builder.show();
}
 
开发者ID:KameLong,项目名称:AOdia,代码行数:32,代码来源:SearchFileDialog.java

示例2: onCreate

import android.widget.ListView; //导入方法依赖的package包/类
@Override
public void onCreate(Bundle icicle) {
    super.onCreate(icicle);

    if (!QMail.isHideSpecialAccounts()) {
        createSpecialAccounts();
    }

    List<Account> accounts = Preferences.getPreferences(this).getAccounts();
    Intent intent = getIntent();
    //onNewIntent(intent);

    // see if we should show the welcome message
    if (ACTION_IMPORT_SETTINGS.equals(intent.getAction())) {
        onImport();
    } else if (accounts.size() < 1) {
        WelcomeMessage.showWelcomeMessage(this);
        finish();
        return;
    }

    if (UpgradeDatabases.actionUpgradeDatabases(this, intent)) {
        finish();
        return;
    }

    boolean startup = intent.getBooleanExtra(EXTRA_STARTUP, true);
    if (startup && QMail.startIntegratedInbox() && !QMail.isHideSpecialAccounts()) {
        onOpenAccount(mUnifiedInboxAccount);
        finish();
        return;
    } else if (startup && accounts.size() == 1 && onOpenAccount(accounts.get(0))) {
        finish();
        return;
    }

    requestWindowFeature(Window.FEATURE_PROGRESS);
    mActionBar = getActionBar();
    initializeActionBar();
    setContentView(R.layout.accounts);
    ListView listView = getListView();
    listView.setOnItemClickListener(this);
    listView.setItemsCanFocus(false);
    listView.setScrollingCacheEnabled(false);
    registerForContextMenu(listView);


    if (icicle != null && icicle.containsKey(SELECTED_CONTEXT_ACCOUNT)) {
        String accountUuid = icicle.getString("selectedContextAccount");
        mSelectedContextAccount = Preferences.getPreferences(this).getAccount(accountUuid);
    }

    restoreAccountStats(icicle);
    mHandler.setViewTitle();

    // Handle activity restarts because of a configuration change (e.g. rotating the screen)
    mNonConfigurationInstance = (NonConfigurationInstance) getLastNonConfigurationInstance();
    if (mNonConfigurationInstance != null) {
        mNonConfigurationInstance.restore(this);
    }

    ChangeLog cl = new ChangeLog(this);
    if (cl.isFirstRun()) {
        cl.getLogDialog().show();
    }
}
 
开发者ID:philipwhiuk,项目名称:q-mail,代码行数:67,代码来源:Accounts.java


注:本文中的android.widget.ListView.setScrollingCacheEnabled方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。