Back to project page azb-finance.
The source code is released under:
Apache License
If you think the Android project azb-finance listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright 2014 Andrey Zubkov. All rights reserved. *// w w w . ja va2 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.azubkov.azbfinance; import android.content.Context; import android.database.Cursor; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.CursorAdapter; import android.widget.ImageView; import android.widget.TextView; import com.azubkov.azbfinance.data.FinContract.Accounts; /** * Created by oxymoron on 02.10.2014. */ public class AccountAdapter extends CursorAdapter { public AccountAdapter(Context context, Cursor c, int flags) { super(context, c, flags); } private static class ViewHolder { public final ImageView iconView; public final TextView bankView; public final TextView amountView; public final TextView convertedAmountView; private ViewHolder(View view) { iconView = (ImageView) view.findViewById(R.id.image_view_account_logo); bankView = (TextView) view.findViewById(R.id.text_view_bank); amountView = (TextView) view.findViewById(R.id.text_view_amount); convertedAmountView = (TextView) view.findViewById(R.id.text_view_converted_amount); } } @Override public View newView(Context context, Cursor cursor, ViewGroup viewGroup) { View view = LayoutInflater.from(context).inflate(R.layout.list_item_account, viewGroup, false); ViewHolder viewHolder = new ViewHolder(view); view.setTag(viewHolder); return view; } @Override public void bindView(View view, Context context, Cursor cursor) { ViewHolder viewHolder = (ViewHolder) view.getTag(); double amount = cursor.getDouble(cursor.getColumnIndex(Accounts.ACCOUNT_AMOUNT)); String bank = cursor.getString(cursor.getColumnIndex(Accounts.ACCOUNT_BANK)); String currency = cursor.getString(cursor.getColumnIndex(Accounts.ACCOUNT_CURRENCY)); Curr curr = Curr.valueOf(currency); viewHolder.bankView.setText(bank); viewHolder.amountView.setText(Util.toCurr(context, amount, curr)); Curr targetCurr = Curr.RUB; double targetAmount = Util.convert(amount, curr, targetCurr); viewHolder.convertedAmountView.setText(Util.toCurr(context, targetAmount, targetCurr)); if (bank.contains("C???")) { viewHolder.iconView.setImageResource(R.drawable.ic_sb_logo); } else if (bank.contains("KEB")) { viewHolder.iconView.setImageResource(R.drawable.ic_keb_logo); } else { viewHolder.iconView.setImageResource(R.drawable.ic_account); } } }