Android Open Source - SyncedListView Sync List View Activity






From Project

Back to project page SyncedListView.

License

The source code is released under:

Apache License

If you think the Android project SyncedListView listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright 2013 Wenhui Yao/*from w  ww.jav  a  2 s . c  o m*/
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.wenhui.syncedListView.demo.demo;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentTransaction;

public class SyncListViewActivity extends FragmentActivity {

  private static final String TAG = "SyncListViewActivity";
  
  @Override
  protected void onCreate(Bundle arg0) {
    super.onCreate(arg0);

        getWindow().setBackgroundDrawable(null);

    SyncListViewContainerFragment fragment;
    if (getSupportFragmentManager().findFragmentByTag(TAG) == null) {
      final FragmentTransaction ft = getSupportFragmentManager().beginTransaction();
      fragment = SyncListViewContainerFragment.newInstance();
      ft.add(android.R.id.content, fragment, TAG);
      ft.commit();
    }
  }
  

}




Java Source Code List

com.wenhui.syncedListView.demo.demo.Images.java
com.wenhui.syncedListView.demo.demo.SyncListViewActivity.java
com.wenhui.syncedListView.demo.demo.SyncListViewContainerFragment.java
com.wenhui.syncedListView.lib.InfiniteListAdapter.java
com.wenhui.syncedListView.lib.SyncedListLayout.java