Skip to content
Snippets Groups Projects
Commit 74b579db authored by Adrien Béraud's avatar Adrien Béraud
Browse files

cleanup unused ressources

Remove unused icons and components

Tuleap: #124
Change-Id: I696a72604b880fd13b9c406bffe3371aab2ec189
parent 12b8ddca
No related branches found
No related tags found
No related merge requests found
Showing
with 1 addition and 258 deletions
/*
* Copyright (C) 2004-2014 Savoir-Faire Linux Inc.
*
* Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* Additional permission under GNU GPL version 3 section 7:
*
* If you modify this program, or any covered work, by linking or
* combining it with the OpenSSL project's OpenSSL library (or a
* modified version of that library), containing parts covered by the
* terms of the OpenSSL or SSLeay licenses, Savoir-Faire Linux Inc.
* grants you additional permission to convey the resulting work.
* Corresponding Source for a non-source form of such a combination
* shall include the source code for the parts of OpenSSL used as well
* as that of the covered work.
*/
package cx.ring.adapters;
import java.util.ArrayList;
import java.util.Locale;
import android.app.Fragment;
import android.app.FragmentManager;
import cx.ring.R;
import cx.ring.fragments.CallListFragment;
import cx.ring.fragments.DialingFragment;
import cx.ring.fragments.HistoryFragment;
import com.astuetz.PagerSlidingTabStrip;
import android.content.Context;
import android.support.v13.app.FragmentStatePagerAdapter;
import android.util.Log;
public class SectionsPagerAdapter extends FragmentStatePagerAdapter implements PagerSlidingTabStrip.IconTabProvider {
private static final String TAG = SectionsPagerAdapter.class.getSimpleName();
Context mContext;
private final ArrayList<Fragment> fragments = new ArrayList<>();
public SectionsPagerAdapter(Context c, FragmentManager fm) {
super(fm);
mContext = c;
fragments.add(new DialingFragment());
fragments.add(new CallListFragment());
fragments.add(new HistoryFragment());
}
@Override
public Fragment getItem(int i) {
return fragments.get(i);
}
public String getClassName(int i) {
String name;
switch (i) {
case 0:
name = DialingFragment.class.getName();
break;
case 1:
name = CallListFragment.class.getName();
break;
case 2:
name = HistoryFragment.class.getName();
break;
default:
Log.e(TAG, "getClassName: unknown fragment position " + i);
return null;
}
// Log.w(TAG, "getClassName: name=" + name);
return name;
}
@Override
public int getCount() {
return fragments.size();
}
@Override
public CharSequence getPageTitle(int position) {
switch (position) {
case 0:
return mContext.getString(R.string.title_section0).toUpperCase(Locale.getDefault());
case 1:
return mContext.getString(R.string.title_section1).toUpperCase(Locale.getDefault());
case 2:
return mContext.getString(R.string.title_section2).toUpperCase(Locale.getDefault());
default:
Log.e(TAG, "getPageTitle: unknown tab position " + position);
break;
}
return null;
}
@Override
public int getPageIconResId(int position) {
switch (position) {
case 0:
return R.drawable.ic_action_dial_pad_light;
case 1:
return R.drawable.ic_action_call;
case 2:
return R.drawable.ic_action_time;
default:
Log.e(TAG, "getPageTitle: unknown tab position " + position);
break;
}
return 0;
}
}
\ No newline at end of file
......@@ -50,14 +50,11 @@ import android.view.MenuItem;
import cx.ring.R;
import cx.ring.fragments.AdvancedAccountFragment;
import cx.ring.fragments.AudioManagementFragment;
import cx.ring.fragments.HomeFragment;
import cx.ring.fragments.MenuFragment;
import cx.ring.fragments.NestedSettingsFragment;
import cx.ring.fragments.SecurityAccountFragment;
import cx.ring.model.account.Account;
import cx.ring.service.ISipService;
import cx.ring.service.LocalService;
import cx.ring.service.SipService;
import com.astuetz.PagerSlidingTabStrip;
import java.util.ArrayList;
import java.util.Locale;
......
/*
* Copyright (C) 2004-2014 Savoir-Faire Linux Inc.
*
* Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* Additional permission under GNU GPL version 3 section 7:
*
* If you modify this program, or any covered work, by linking or
* combining it with the OpenSSL project's OpenSSL library (or a
* modified version of that library), containing parts covered by the
* terms of the OpenSSL or SSLeay licenses, Savoir-Faire Linux Inc.
* grants you additional permission to convey the resulting work.
* Corresponding Source for a non-source form of such a combination
* shall include the source code for the parts of OpenSSL used as well
* as that of the covered work.
*/
package cx.ring.fragments;
import cx.ring.R;
import cx.ring.adapters.SectionsPagerAdapter;
import cx.ring.client.HomeActivity;
import com.astuetz.PagerSlidingTabStrip;
import android.app.Activity;
import android.app.Fragment;
import android.content.Intent;
import android.os.Bundle;
import android.support.v4.view.ViewPager;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
public class HomeFragment extends Fragment {
static final String TAG = HomeFragment.class.getSimpleName();
/**
* The {@link ViewPager} that will host the section contents.
*/
ViewPager mViewPager;
SectionsPagerAdapter mSectionsPagerAdapter;
@Override
public void onResume() {
super.onResume();
((HomeActivity)getActivity()).setToolbarState(false, R.string.app_name);
}
@Override
public void onAttach(Activity activity) {
super.onAttach(activity);
}
@Override
public void onDetach() {
super.onDetach();
}
@Override
public void onCreate(Bundle savedBundle) {
super.onCreate(savedBundle);
mSectionsPagerAdapter = new SectionsPagerAdapter(getActivity(), getChildFragmentManager());
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
ViewGroup rootView = (ViewGroup) inflater.inflate(R.layout.frag_home, container, false);
// Set up the ViewPager with the sections adapter.
mViewPager = (ViewPager) rootView.findViewById(R.id.pager);
mViewPager.setPageTransformer(true, new ZoomOutPageTransformer(0.7f));
mViewPager.setOffscreenPageLimit(2);
mViewPager.setAdapter(mSectionsPagerAdapter);
mViewPager.setCurrentItem(1);
final PagerSlidingTabStrip strip = PagerSlidingTabStrip.class.cast(rootView.findViewById(R.id.pts_main));
strip.setViewPager(mViewPager);
return rootView;
}
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
}
public class ZoomOutPageTransformer implements ViewPager.PageTransformer {
private static final float MIN_ALPHA = .6f;
public ZoomOutPageTransformer(float scalingStart) {
super();
}
@Override
public void transformPage(View page, float position) {
final float normalizedposition = Math.abs(Math.abs(position) - 1);
page.setAlpha(MIN_ALPHA + (1.f - MIN_ALPHA) * normalizedposition);
}
}
public SectionsPagerAdapter getSectionsPagerAdapter() {
return mSectionsPagerAdapter;
}
public ViewPager getViewPager() {
return mViewPager;
}
}
\ No newline at end of file
......@@ -153,7 +153,7 @@ public class SipNotifications {
Builder nb = new NotificationCompat.Builder(context);
nb.setLargeIcon(BitmapFactory.decodeResource(context.getResources(), R.drawable.ic_launcher));
nb.setSmallIcon(R.drawable.ic_action_call);
nb.setSmallIcon(R.drawable.ic_call_white_24dp);
nb.setTicker(tickerText);
nb.setWhen(when);
......
ring-android/app/src/main/res/drawable-hdpi/ic_action_call.png

605 B

ring-android/app/src/main/res/drawable-hdpi/ic_action_chat.png

294 B

ring-android/app/src/main/res/drawable-hdpi/ic_action_dial_pad.png

344 B

ring-android/app/src/main/res/drawable-hdpi/ic_action_dial_pad_light.png

330 B

ring-android/app/src/main/res/drawable-mdpi/ic_action_call.png

464 B

ring-android/app/src/main/res/drawable-mdpi/ic_action_chat.png

263 B

ring-android/app/src/main/res/drawable-mdpi/ic_action_dial_pad.png

347 B

ring-android/app/src/main/res/drawable-mdpi/ic_action_dial_pad_light.png

336 B

ring-android/app/src/main/res/drawable-xhdpi/ic_action_call.png

792 B

ring-android/app/src/main/res/drawable-xhdpi/ic_action_chat.png

307 B

ring-android/app/src/main/res/drawable-xhdpi/ic_action_dial_pad.png

326 B

ring-android/app/src/main/res/drawable-xhdpi/ic_action_dial_pad_light.png

307 B

ring-android/app/src/main/res/drawable-xxhdpi/ic_action_call.png

1.13 KiB

ring-android/app/src/main/res/drawable-xxhdpi/ic_action_chat.png

422 B

ring-android/app/src/main/res/drawable-xxhdpi/ic_action_dial_pad.png

474 B

ring-android/app/src/main/res/drawable-xxhdpi/ic_action_dial_pad_light.png

459 B

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment