/******************************************************************************* * Copyright (c) 2013 Gabriele Mariotti. * * 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 it.gmariotti.changelibs.library.view; import it.gmariotti.changelibs.library.Constants; import it.gmariotti.changelibs.library.Util; import it.gmariotti.changelibs.library.internal.ChangeLog; import it.gmariotti.changelibs.library.internal.ChangeLogAdapter; import it.gmariotti.changelibs.library.internal.ChangeLogRow; import it.gmariotti.changelibs.library.parser.XmlParser; import android.content.Context; import android.content.res.TypedArray; import android.os.AsyncTask; import android.os.Build; import android.util.AttributeSet; import android.util.Log; import android.view.View; import android.widget.AdapterView; import android.widget.ListView; import android.widget.Toast; import com.m.R; /** * ListView for ChangeLog * * * @author Gabriele Mariotti (gabri.mariotti@gmail.com) */ public class ChangeLogListView extends ListView implements AdapterView.OnItemClickListener { //-------------------------------------------------------------------------- // Custom Attrs //-------------------------------------------------------------------------- protected int mRowLayoutId= Constants.mRowLayoutId; protected int mRowHeaderLayoutId=Constants.mRowHeaderLayoutId; protected int mChangeLogFileResourceId=Constants.mChangeLogFileResourceId; protected String mChangeLogFileResourceUrl=null; //-------------------------------------------------------------------------- protected static String TAG="ChangeLogListView"; // Adapter protected ChangeLogAdapter mAdapter; //-------------------------------------------------------------------------- // Constructors //-------------------------------------------------------------------------- public ChangeLogListView(Context context) { super(context); init(null, 0); } public ChangeLogListView(Context context, AttributeSet attrs) { super(context, attrs); init(attrs,0); } public ChangeLogListView(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); init(attrs,defStyle); } //-------------------------------------------------------------------------- // Init //-------------------------------------------------------------------------- /** * Initialize * * @param attrs * @param defStyle */ protected void init(AttributeSet attrs, int defStyle){ //Init attrs initAttrs(attrs,defStyle); //Init adapter initAdapter(); //Set divider to 0dp setDividerHeight(0); } /** * Init custom attrs. * * @param attrs * @param defStyle */ protected void initAttrs(AttributeSet attrs, int defStyle) { TypedArray a = getContext().getTheme().obtainStyledAttributes( attrs, R.styleable.ChangeLogListView, defStyle, defStyle); try { //Layout for rows and header mRowLayoutId = a.getResourceId(R.styleable.ChangeLogListView_rowLayoutId, mRowLayoutId); mRowHeaderLayoutId = a.getResourceId(R.styleable.ChangeLogListView_rowHeaderLayoutId, mRowHeaderLayoutId); //Changelog.xml file mChangeLogFileResourceId = a.getResourceId(R.styleable.ChangeLogListView_changeLogFileResourceId,mChangeLogFileResourceId); mChangeLogFileResourceUrl = a.getString(R.styleable.ChangeLogListView_changeLogFileResourceUrl); //String which is used in header row for Version //mStringVersionHeader= a.getResourceId(R.styleable.ChangeLogListView_StringVersionHeader,mStringVersionHeader); } finally { a.recycle(); } } /** * Init adapter */ protected void initAdapter() { try{ //Read and parse changelog.xml XmlParser parse; if (mChangeLogFileResourceUrl!=null) parse = new XmlParser(getContext(),mChangeLogFileResourceUrl); else parse = new XmlParser(getContext(),mChangeLogFileResourceId); //ChangeLog chg=parse.readChangeLogFile(); ChangeLog chg = new ChangeLog(); if (chg!=null){ //Create adapter and set custom attrs mAdapter = new ChangeLogAdapter(getContext(),chg.getRows()); mAdapter.setmRowLayoutId(mRowLayoutId); mAdapter.setmRowHeaderLayoutId(mRowHeaderLayoutId); //Parse in a separate Thread to avoid UI block with large files if (mChangeLogFileResourceUrl==null || (mChangeLogFileResourceUrl!=null && Util.isConnected(getContext()))) new ParseAsyncTask(mAdapter,parse).execute(); else Toast.makeText(getContext(),R.string.changelog_internal_error_internet_connection,Toast.LENGTH_LONG).show(); setAdapter(mAdapter); }else{ setAdapter(null); } }catch (Exception e){ Log.e(TAG,getResources().getString(R.string.changelog_internal_error_parsing),e); } } /** * Async Task to parse xml file in a separate thread * */ protected class ParseAsyncTask extends AsyncTask<Void, Void, ChangeLog>{ private ChangeLogAdapter mAdapter; private XmlParser mParse; public ParseAsyncTask(ChangeLogAdapter adapter,XmlParser parse){ mAdapter=adapter; mParse= parse; } @Override protected ChangeLog doInBackground(Void... params) { try{ if (mParse!=null){ ChangeLog chg=mParse.readChangeLogFile(); return chg; } }catch (Exception e){ Log.e(TAG,getResources().getString(R.string.changelog_internal_error_parsing),e); } return null; } protected void onPostExecute(ChangeLog chg) { //Notify data changed if (chg!=null){ if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB){ mAdapter.addAll(chg.getRows()); }else{ if(chg.getRows()!=null){ for(ChangeLogRow row:chg.getRows()){ mAdapter.add(row); } } } mAdapter.notifyDataSetChanged(); } } } /** * Sets the list's adapter, enforces the use of only a ChangeLogAdapter */ public void setAdapter(ChangeLogAdapter adapter) { super.setAdapter(adapter); } @Override public void onItemClick(AdapterView<?> parent, View view, int position, long id) { //TODO } }