Iriska's
вторник, 13 сентября 2011 г.
Add AdMob AdView to PreferenceActivity
Simple solution to add AdMob advert to Live Wallpaper settings screen is create new type which will show AdMob AdView and then include it into PreferenceScreen.
1) Add new type AdmobPreference:
1) Add new type AdmobPreference:
public class AdmobPreference extends Preference
{
public AdmobPreference(Context context) {
super(context, null);
}
public AdmobPreference(Context context, AttributeSet attrs) {
super(context, attrs);
}
@Override
protected View onCreateView(ViewGroup parent) {
LayoutInflater inflater = (LayoutInflater) getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
return inflater.inflate(R.layout.admob_preference, null);
}
}
2) Add admob_preference.xml to res/layout:3) Now you can use your type within PreferenceScreen.
...
вторник, 10 августа 2010 г.
1.2 Update
среда, 10 февраля 2010 г.
Love letter application
I've just uploaded my application 'Love letters' to market.
My intention was creating an application for Valentine's Day which allows you send Valentine cards to your friends. No internet connection is needed if you just send MMS.
Also application allows to share picure and congratulation to your friends via our favourite app like FaceBook, twitter, flickr. You can also set images as wallpaper.
I'll appreciate all suggestions and comments. If you have any issues or found a bug - please let me know.
Have fun!
My intention was creating an application for Valentine's Day which allows you send Valentine cards to your friends. No internet connection is needed if you just send MMS.
Also application allows to share picure and congratulation to your friends via our favourite app like FaceBook, twitter, flickr. You can also set images as wallpaper.
I'll appreciate all suggestions and comments. If you have any issues or found a bug - please let me know.
Have fun!
Подписаться на:
Сообщения (Atom)

