Re: [android-developers] Save RecyclerView Item with Activity reference in SharedPreferences

2017-01-02 Thread toneymessina via Android Developers


On Tue, 1/3/17, lekishahendrix via Android Developers 
 wrote:

 Subject: Re: [android-developers] Save RecyclerView Item with Activity 
reference in SharedPreferences
 To: android-developers@googlegroups.com
 Date: Tuesday, January 3, 2017, 9:02 AM
 
 
 
 On Tue, 1/3/17, Martiman Henry 
 wrote:
 
  Subject: Re: [android-developers] Save RecyclerView Item
 with Activity reference in SharedPreferences
  To: android-developers@googlegroups.com
  Date: Tuesday, January 3, 2017, 5:34 AM
  
  
  
  Hi
  Marina, hope all is well. I made some
  adjustments to my code and would really appreciate it if
 you
  were able to help
  me implement the Database Helper.
  
   
  
   
  
   
  
  View
  Class:
  
  public
  class ViewDB {
  
   
  
      private Bitmap icon,
  fav;
  
      private String name,
  desp;
  
      private int
  icRecipe;
  
      private boolean
  cbFav;
  
   
  
      public ViewDB()
  {
  
     
  super();
  
      }
  
   
  
      public ViewDB(int
  icRecipe, String name,
  String desp, boolean cbFav) {
  
     
  super();
  
     
  this.setIcRecipe(icRecipe);
  
     
  this.setName(name);
  
     
  this.setDesp(desp);
  
     
  this.setCbFav(cbFav);
  
      }
  
   
  
      public ViewDB(Bitmap
  icon, String name,
  String desp) {
  
      icon =
  icon;
  
      name =
  name;
  
      desp =
  desp;
  
      }
  
   
  
      public Bitmap
  getIcon() {
  
      return
  icon;
  
      }
  
   
  
      public void
  setIcon(Bitmap icon) {
  
      this.icon =
  icon;
  
      }
  
   
  
      public Bitmap
  getFav() {
  
      return
  fav;
  
      }
  
   
  
      public void
  setFav(Bitmap fav) {
  
      this.fav =
  fav;
  
      }
  
   
  
      public String
  getName() {
  
      return
  name;
  
      }
  
   
  
      public void
  setName(String name) {
  
      this.name = name;
  
      }
  
   
  
      public String
  getDesp() {
  
     
  return desp;
  
      }
  
   
  
      public void
  setDesp(String desp) {
  
      this.desp =
  desp;
  
      }
  
   
  
      public int
  getIcRecipe() {
  
      return
  icRecipe;
  
      }
  
   
  
      public void
  setIcRecipe(int icRecipe) {
  
     
  this.icRecipe = icRecipe;
  
      }
  
   
  
      public boolean
  isCbFav() {
  
      return
  cbFav;
  
      }
  
   
  
      public void
  setCbFav(boolean cbFav) {
  
      this.cbFav =
  cbFav;
  
      }
  
  }
  
   
  
   
  
   
  
   
  
  Database Helper class:
  
  public
  class
  DBHelper  extends SQLiteOpenHelper
  {
  
   
  
      public static final
  String DB_NAME =
  "Recipes.db";
  
      private static final
  String DB_TABLE =
  "recipe_table";
  
      private static final
  int DB_VERSION = 1;
  
      private static final
  String RECIPE_ID =
  "ID";
  
      private static final
  String RECIPE_ICON =
  "ICON";
  
      private static final
  String RECIPE_NAME =
  "NAME";
  
      private static final
  String RECIPE_DESP =
  "DESCRIPTION";
  
      private static final
  String RECIPE_FAV =
  "FAVOURITE";
  
      private static final
  String
  CREATE_RECIPE_TABLE = "create table "
  
      +
  DB_NAME + " (" +
  RECIPE_ID + "integer primary key autoincrement,
  "
  
      +
  RECIPE_ICON + " blob not
  null, " + RECIPE_NAME + " text not null unique,
  "
  
      +
  RECIPE_DESP + " text not
  null);";
  
      public static final
  Object[] databaseLock =
  new Object[0];
  
      private Context
  mContext;
  
   
  
      public
  DBHelper(Context context) {
  
     
  super(context, DB_NAME, null,
  DB_VERSION);
  
      }
  
   
  
      @Override
  
      public void
  onCreate(SQLiteDatabase
  sqLiteDatabase) {
  
     
  sqLiteDatabase.execSQL(CREATE_RECIPE_TABLE);
  
      }
  
   
  
      @Override
  
      public void
  onUpgrade(SQLiteDatabase
  sqLiteDatabase, int i, int i1) {
  
     
  sqLiteDatabase.execSQL("DROP TABLE
  IF EXIST " + DB_TABLE);
  
     
  onCreate(sqLiteDatabase);
  
      }
  
   
  
      //Add
  Favourite
  
      public void
  addFav(ViewDB viewDB) throws
  SQLiteException {
  
   
  
    
   synchronized (databaseLock)
  {
  
     
  SQLiteDatabase db =
  this.getWritableDatabase();
  
      if
  (db != null) {
  
     
  ContentValues contentValues =
  new ContentValues();
  
     
  contentValues.put(RECIPE_ICON,
  DBBitmapUtility.getBytes(viewDB.getIcon()));
  
     
  contentValues.put(RECIPE_NAME,
  viewDB.getName());
  
     
  contentValues.put(RECIPE_DESP,
  viewDB.getDesp());
  
   
  
     
  try {
  
     
  db.insert(DB_TABLE, null,
  contentValues);
  
     
  } catch (Exception e) {
  
     
  Toast.makeText(mContext,
  "Unable to add 

Re: [android-developers] Save RecyclerView Item with Activity reference in SharedPreferences

2017-01-02 Thread lekishahendrix via Android Developers


On Tue, 1/3/17, Martiman Henry  wrote:

 Subject: Re: [android-developers] Save RecyclerView Item with Activity 
reference in SharedPreferences
 To: android-developers@googlegroups.com
 Date: Tuesday, January 3, 2017, 5:34 AM
 
 
 
 Hi
 Marina, hope all is well. I made some
 adjustments to my code and would really appreciate it if you
 were able to help
 me implement the Database Helper.
 
  
 
  
 
  
 
 View
 Class:
 
 public
 class ViewDB {
 
  
 
     private Bitmap icon,
 fav;
 
     private String name,
 desp;
 
     private int
 icRecipe;
 
     private boolean
 cbFav;
 
  
 
     public ViewDB()
 {
 
    
 super();
 
     }
 
  
 
     public ViewDB(int
 icRecipe, String name,
 String desp, boolean cbFav) {
 
    
 super();
 
    
 this.setIcRecipe(icRecipe);
 
    
 this.setName(name);
 
    
 this.setDesp(desp);
 
    
 this.setCbFav(cbFav);
 
     }
 
  
 
     public ViewDB(Bitmap
 icon, String name,
 String desp) {
 
     icon =
 icon;
 
     name =
 name;
 
     desp =
 desp;
 
     }
 
  
 
     public Bitmap
 getIcon() {
 
     return
 icon;
 
     }
 
  
 
     public void
 setIcon(Bitmap icon) {
 
     this.icon =
 icon;
 
     }
 
  
 
     public Bitmap
 getFav() {
 
     return
 fav;
 
     }
 
  
 
     public void
 setFav(Bitmap fav) {
 
     this.fav =
 fav;
 
     }
 
  
 
     public String
 getName() {
 
     return
 name;
 
     }
 
  
 
     public void
 setName(String name) {
 
     this.name = name;
 
     }
 
  
 
     public String
 getDesp() {
 
    
 return desp;
 
     }
 
  
 
     public void
 setDesp(String desp) {
 
     this.desp =
 desp;
 
     }
 
  
 
     public int
 getIcRecipe() {
 
     return
 icRecipe;
 
     }
 
  
 
     public void
 setIcRecipe(int icRecipe) {
 
    
 this.icRecipe = icRecipe;
 
     }
 
  
 
     public boolean
 isCbFav() {
 
     return
 cbFav;
 
     }
 
  
 
     public void
 setCbFav(boolean cbFav) {
 
     this.cbFav =
 cbFav;
 
     }
 
 }
 
  
 
  
 
  
 
  
 
 Database Helper class:
 
 public
 class
 DBHelper  extends SQLiteOpenHelper
 {
 
  
 
     public static final
 String DB_NAME =
 "Recipes.db";
 
     private static final
 String DB_TABLE =
 "recipe_table";
 
     private static final
 int DB_VERSION = 1;
 
     private static final
 String RECIPE_ID =
 "ID";
 
     private static final
 String RECIPE_ICON =
 "ICON";
 
     private static final
 String RECIPE_NAME =
 "NAME";
 
     private static final
 String RECIPE_DESP =
 "DESCRIPTION";
 
     private static final
 String RECIPE_FAV =
 "FAVOURITE";
 
     private static final
 String
 CREATE_RECIPE_TABLE = "create table "
 
     +
 DB_NAME + " (" +
 RECIPE_ID + "integer primary key autoincrement,
 "
 
     +
 RECIPE_ICON + " blob not
 null, " + RECIPE_NAME + " text not null unique,
 "
 
     +
 RECIPE_DESP + " text not
 null);";
 
     public static final
 Object[] databaseLock =
 new Object[0];
 
     private Context
 mContext;
 
  
 
     public
 DBHelper(Context context) {
 
    
 super(context, DB_NAME, null,
 DB_VERSION);
 
     }
 
  
 
     @Override
 
     public void
 onCreate(SQLiteDatabase
 sqLiteDatabase) {
 
    
 sqLiteDatabase.execSQL(CREATE_RECIPE_TABLE);
 
     }
 
  
 
     @Override
 
     public void
 onUpgrade(SQLiteDatabase
 sqLiteDatabase, int i, int i1) {
 
    
 sqLiteDatabase.execSQL("DROP TABLE
 IF EXIST " + DB_TABLE);
 
    
 onCreate(sqLiteDatabase);
 
     }
 
  
 
     //Add
 Favourite
 
     public void
 addFav(ViewDB viewDB) throws
 SQLiteException {
 
  
 
   
  synchronized (databaseLock)
 {
 
    
 SQLiteDatabase db =
 this.getWritableDatabase();
 
     if
 (db != null) {
 
    
 ContentValues contentValues =
 new ContentValues();
 
    
 contentValues.put(RECIPE_ICON,
 DBBitmapUtility.getBytes(viewDB.getIcon()));
 
    
 contentValues.put(RECIPE_NAME,
 viewDB.getName());
 
    
 contentValues.put(RECIPE_DESP,
 viewDB.getDesp());
 
  
 
    
 try {
 
    
 db.insert(DB_TABLE, null,
 contentValues);
 
    
 } catch (Exception e) {
 
    
 Toast.makeText(mContext,
 "Unable to add favourite.",
 Toast.LENGTH_LONG).show();
 
    
 }
 
    
 db.close();
 
    
 }
 
     }
 
     }
 
  
 
     //Open
 Database
 
     public DBHelper
 open() throws SQLException
 {
 
    
 this.getWritableDatabase();
 
     return
 this;
 
     }
 
  
 
     // Close
 Database
 
     public void close()
 {
 
    
 this.close();
 
     }
 
  
 
     //Delete
 Favourite
 
     public Integer
 deleteFav(String id) {
 
    
 SQLiteDatabase db =
 this.getWritableDatabase();
 
     return
 db.delete(DB_TABLE,
 "ID=?", new String[]{id});
 
     }
 
  
 
     //Show All
 Favourites
 
     public ViewDB
 getAllFav() throws
 

[android-developers] COGNOS Data Designer course | Online Training at CSRCIND

2017-01-02 Thread CSRCIND Online Training


Learn and examine the purpose of COGNOS Data Designer by our vast 
experienced trainers. CSRCIND web portal gives info on all IT training 
needs at one place.


CSRCIND is a One Stop Global Online Training Portal for all IT and Non-IT 
Global. We are serving all over the world with our best simplified online 
training services. Start out your CAREER with our IT Online Training 
Courses.


For more visit : 
http://csrcind.com/online-training/cognos-data-designer/index.html




For the Demo Classes:

Call us +91 7207743377

Land Line: 040-42626527
MAIL: training24@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/ec7059f4-962a-444d-b34f-f0b1ab8fbeb9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Save RecyclerView Item with Activity reference in SharedPreferences

2017-01-02 Thread Martiman Henry
Hi Marina, hope all is well. I made some adjustments to my code and would
really appreciate it if you were able to help me implement the Database
Helper.







View Class:

public class ViewDB {



private Bitmap icon, fav;

private String name, desp;

private int icRecipe;

private boolean cbFav;



public ViewDB() {

super();

}



public ViewDB(int icRecipe, String name, String desp, boolean cbFav) {

super();

this.setIcRecipe(icRecipe);

this.setName(name);

this.setDesp(desp);

this.setCbFav(cbFav);

}



public ViewDB(Bitmap icon, String name, String desp) {

icon = icon;

name = name;

desp = desp;

}



public Bitmap getIcon() {

return icon;

}



public void setIcon(Bitmap icon) {

this.icon = icon;

}



public Bitmap getFav() {

return fav;

}



public void setFav(Bitmap fav) {

this.fav = fav;

}



public String getName() {

return name;

}



public void setName(String name) {

this.name = name;

}



public String getDesp() {

return desp;

}



public void setDesp(String desp) {

this.desp = desp;

}



public int getIcRecipe() {

return icRecipe;

}



public void setIcRecipe(int icRecipe) {

this.icRecipe = icRecipe;

}



public boolean isCbFav() {

return cbFav;

}



public void setCbFav(boolean cbFav) {

this.cbFav = cbFav;

}

}









Database Helper class:

public class DBHelper  extends SQLiteOpenHelper {



public static final String DB_NAME = "Recipes.db";

private static final String DB_TABLE = "recipe_table";

private static final int DB_VERSION = 1;

private static final String RECIPE_ID = "ID";

private static final String RECIPE_ICON = "ICON";

private static final String RECIPE_NAME = "NAME";

private static final String RECIPE_DESP = "DESCRIPTION";

private static final String RECIPE_FAV = "FAVOURITE";

private static final String CREATE_RECIPE_TABLE = "create table "

+ DB_NAME + " (" + RECIPE_ID + "integer primary key
autoincrement, "

+ RECIPE_ICON + " blob not null, " + RECIPE_NAME + " text not
null unique, "

+ RECIPE_DESP + " text not null);";

public static final Object[] databaseLock = new Object[0];

private Context mContext;



public DBHelper(Context context) {

super(context, DB_NAME, null, DB_VERSION);

}



@Override

public void onCreate(SQLiteDatabase sqLiteDatabase) {

sqLiteDatabase.execSQL(CREATE_RECIPE_TABLE);

}



@Override

public void onUpgrade(SQLiteDatabase sqLiteDatabase, int i, int i1) {

sqLiteDatabase.execSQL("DROP TABLE IF EXIST " + DB_TABLE);

onCreate(sqLiteDatabase);

}



//Add Favourite

public void addFav(ViewDB viewDB) throws SQLiteException {



synchronized (databaseLock) {

SQLiteDatabase db = this.getWritableDatabase();

if (db != null) {

ContentValues contentValues = new ContentValues();

contentValues.put(RECIPE_ICON,
DBBitmapUtility.getBytes(viewDB.getIcon()));

contentValues.put(RECIPE_NAME, viewDB.getName());

contentValues.put(RECIPE_DESP, viewDB.getDesp());



try {

db.insert(DB_TABLE, null, contentValues);

} catch (Exception e) {

Toast.makeText(mContext, "Unable to add favourite.",
Toast.LENGTH_LONG).show();

}

db.close();

}

}

}



//Open Database

public DBHelper open() throws SQLException {

this.getWritableDatabase();

return this;

}



// Close Database

public void close() {

this.close();

}



//Delete Favourite

public Integer deleteFav(String id) {

SQLiteDatabase db = this.getWritableDatabase();

return db.delete(DB_TABLE, "ID=?", new String[]{id});

}



//Show All Favourites

public ViewDB getAllFav() throws SQLException {

SQLiteDatabase db = this.getWritableDatabase();

Cursor cur = db.query(true, DB_TABLE, new String[]{RECIPE_ICON,
RECIPE_NAME,

RECIPE_DESP, RECIPE_FAV}, null, null, null, null, null,
null);



if (cur.moveToFirst()) {

byte[] icon = cur.getBlob(cur.getColumnIndex(RECIPE_ICON));

String name = cur.getString(cur.getColumnIndex(RECIPE_NAME));

String desp = cur.getString(cur.getColumnIndex(RECIPE_DESP));

cur.close();

return new ViewDB(DBBitmapUtility.getImage(icon), name, desp);

}

cur.close();

return null;

}



//Auto-refresh Favourite





}







Bitmap Converter class:

public class DBBitmap

[android-developers] Need UI Developer at Minneapolis, MN.

2017-01-02 Thread Shaik Salam
Hi Everyone,

Hope you are doing great,
We have an immediate opportunity for UI Developer at Minneapolis, MN. Below
is the job description and if you’d like to pursue this, please include a
word copy of your latest resume along with a daytime phone number and rate
in your response.

*Send resumes to s...@nytpartner.com *

*Work Location:Minneapolis, MN*
*Duration: 8 Months+*
*Position: 3*

*Role UI Developer (Very strong in java script) *

*Mandatory Technical / Functional Skills *

1 - Advance knowledge and experience in HTML5 and CSS
2 - Very strong concepts and hands-on experience on Node.js, backbone.js
and angular.js
3 - Advanced object oriented JavaScript
4 - Free marker Templates
5 - Advanced JQuery
6 - Solid understanding of JSON data transfer techniques and patterns
7 - Good knowledge of Object Oriented Inheritance
8-  Experience working in java/j2ee projects
9 -Qunit

Thanks and Regards,

Sam Salam
New York Technology Partners – Rochester
T1: (201) 680-0200 x 7026
s...@nytpartners.com
www.nytp.com

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAHWKL1gigmPNjhEdY%2BE6Oc1b%3DJ9tfXZr9Fo6ZWjnvsQLFH-q4w%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Need Data Architect at Cleveland, OH

2017-01-02 Thread Shaik Salam
Hi Everyone ,

Hope you are doing great,
We have an immediate opportunity for Data Architect , at Cleveland, OH.
Below is the job description and if you’d like to pursue this, please
include a word copy of your latest resume along with a daytime phone number
and rate in your response.

*Send Resume at s...@nytpartners.com *

*Job Role:  *
*Location: Cleveland, OH*
*Duration: 12 months*

*job Description: *

   - Be accountable for creating end-to-end solution design and development
   approach in a Hadoop/Spark environment
   - Be accountable for integration solution design and development for
   integration Hadoop/Spark environments with analytic platforms (e.g., SAS,
   SPSS) and Enterprise Information Management (EIM) and Data Warehouse (DW)
   platforms
   - Design, test, and continuously improve performance of Hadoop/Spark
   based solutions
   - Expertly utilize distributed/parallel processing for information
   management solution design and development
   - Perform hands on development, coaching and leadership through all
   project phases
   - Provide advisory help in selecting products and components as part of
   sales solutioning
   - Create new methods for Big Data and lead teams that are developing
   accelerators


Thanks and Regards,
Sam
New York Technology Partners – Rochester
332 Jefferson Rd.
Rochester, NY 14623
201 680 0200 Ext: 7026
s...@nytpartners.com
www.nytp.com
Skype&Gtalk: sam.staffing

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAHWKL1g2CKyUDyhFmf-OXt30U3UztrnjEMLoL_Ydm-cw9GZKBg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Urgent requirement || Sr. Java developer/Lead @ Denver, CO

2017-01-02 Thread Vasanth Kumar
Hi,

Greetings from American IT Resource Group Inc.!

I would like to touch-base you regarding a job opportunity with our client,
appreciate if you could go through below job detail and let me know your
thoughts as soon as possible.

*Reply only to vasa...@aitrg.com *

*Role: Sr. Java developer/Lead*

Location: Denver, CO

Duration: 6+ Months contract



*Job Description:*

- Strong in Java programming language with hands-on coding skills.

- Good knowledge of Data structures and algorithms.

- Experience to lead a team of engineers.

- Ability to work in Agile environment.

§  Need candidates who are strong in Core Java, the self-assessment table
below reflects some other those areas. So those areas including
multi-threading are more important.

§  REST is important and is included below. WebServices is also fine.

§  Spring is nice to have but not at expense of core java skills.
Similarly, for J2EE skills, we do not want those who have J2EE knowledge
but not core Java.

§  Junit is not important, rather tool knowledge like Git/Github, Maven,
Jenkins is more important.

*Nice to have:*

- github.com link.

- blog link.





Looking forward to hear from you!



Thanks & Regards,



Vasanth || American IT Resource Group, Inc.

, Plaza Dr., Suite 640, Schaumburg, IL - 60173

Email: vasa...@aitrg.com

Skype: vasanth.aitrg  || Gtalk: vasanth.aitrg


Web: www.aitrg.com

Please do not print unless it is absolutely necessary. Spread environmental
awareness.

Note: Under Bills. Title III passed by the 105th U.S. Congress this mail
cannot be considered spam as long as we include contact information and a
remove link for removal from our mailing list. To be removed from our
mailing list reply with "remove" and include your "original email
address/addresses" in the subject header.

*To Unsubscribe, Click **Remove me*


-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/CAPcvYBJ%2B3hXYCMqS2-nAkHC6UoXSFB0u2XX3%2BT_Kin6SY%2BBDbw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [android-developers] Why is there NO good Viewpager tutorial on the Internet??

2017-01-02 Thread lekishahendrix via Android Developers


On Mon, 1/2/17, toneymessina via Android Developers 
 wrote:

 Subject: Re: [android-developers] Why is there NO good Viewpager tutorial on 
the Internet??
 To: android-developers@googlegroups.com
 Date: Monday, January 2, 2017, 1:31 AM
 
 
 
 On Sun, 1/1/17, Mark Phillips 
 wrote:
 
  Subject: Re: [android-developers] Why is there NO good
 Viewpager tutorial on the Internet??
  To: "Android Developers" 
  Date: Sunday, January 1, 2017, 10:39 PM
  
  Considering the fact that everyone on
  this list is a volunteer, I suggest you moderate your tone
  if you want to get any help at all.
  
  If no one has written a viewpager
  tutorial that meets your needs, then probably no one
 needed
  one. I suggest you look at the source code and api
  documentation, build some simple test apps so you learn
 how
  the view pager works, and then write the best viewpager
  tutorial that has ever been written. You will surely
 receive
  all the accolades you deserve for your efforts.
  
  Mark
  
  On Sun, Jan 1, 2017 at
  10:41 AM, Niklas Daute 
  wrote:
  
  Hello guys,
  
   I need to get this out before
  I go completely insane.
  
   Currently I am developing an
  app which creates PieCharts based on user entries, and i
  have a working single screen/ viegroup/ activity whatever
  version of the app running and complete. 
  
   However, i want
  to improve the layout of this application
  a little bit and it would help tremendously to have a
  viewpager with three different pages to host three
  diffreerent fragments with their own purpose each. 
  
  
  When I got the idea, i was rather optimistic about
 achieving
  my goal, one week has passed since then.
  
      What have I found
  on the Internet?
  
      One great tutorial,
  which shows in detail how to create and define
  a ViewPager with all its components and listeners and
  adapters and whatsoever, with the goal to allow a young
  fresh developer to create a simple ui which would help him
  create a GREAT application?
  
   NOPE
  
     Half
  assed information and so called "tutorials" which
  leave out important information alà:
  
                      "How to draw
  an Elephant
  
    STEP 1: Draw
  the Elephant.
      
    STEP 2:
  Done."
  
     YES
  
      However the
  biggest joke is the official View
  Pager Documentation on the android developers web page,
  which explains nothing and leaves me with more questions
  than i started out with. 
  
     Words cannot explain how
  frustrated I am about this. How can such a elementary UI
  element which is found in the most famous applications on
  google play be so poorly documented and accessable fore
 new
  developers?
  
     I
  hope someone can understand my struggle and help me out,
  because this issue is deeply frustrating to me. I am not
  trying to outsource my anger/misfortune to anyone here. I
 am
  just irritated by the sheer ridicule of this viewpager
  situation. 
  
     If
  someone can provide me with ONE good
  VIEWPAGER TUTORIAL i would be very thankful.
  
  
  
  
  
  
  
  
  -- 
  
  You received this message because you are subscribed to
 the
  Google Groups "Android Developers" group.
  
  To unsubscribe from this group and stop receiving emails
  from it, send an email to android-developers+
  unsubscr...@googlegroups.com.
  
  To post to this group, send email to android-developers@
  googlegroups.com.
  
  Visit this group at https://groups.google.com/
  group/android-developers.
  
  To view this discussion on the web visit https://groups.google.com/d/
  msgid/android-developers/ aa409c37-ffdb-4f5a-85d1-
  8f02498fde1b%40googlegroups. com.
  
  For more options, visit https://groups.google.com/d/
  optout.
  
  
  
  
  
  
  -- 
  
  You received this message because you are subscribed to
 the
  Google Groups "Android Developers" group.
  
  To unsubscribe from this group and stop receiving emails
  from it, send an email to android-developers+unsubscr...@googlegroups.com.
  
  To post to this group, send email to android-developers@googlegroups.com.
  
  Visit this group at
 https://groups.google.com/group/android-developers.
  
  To view this discussion on the web visit
 
https://groups.google.com/d/msgid/android-developers/CAEqej2O5%2BotBQQjeTR95Zxn1%2B--VK1OO7qSV-kpPNC3-7eQO_w%40mail.gmail.com.
  
  For more options, visit
 https://groups.google.com/d/optout.
  rincipalele institutii de cultura. O scurta enumerare a
 principalelor institutii de cultura  miscari si
 initiative culturale se impune pentru conturarea cadrului in
 care s-a desfasurat aceasta componenta a istoriei romanesti
 in perioada cuprinsa intre 1918-1948.
 
 -- 
 You received this message because you are subscribed to the
 Google Groups "Android Developers" group.
 To u

[android-developers] Seup DHT11 Humidity&Temperature sensor on AndroidThing for RPi

2017-01-02 Thread Moontain
Hi,

I tried to setup DHT11 sensor on the latest AndroidThing Preview 1, by 
following the GPIO SDK 
, but failed. Data 
can't be received successfully.

Looks like each function call of the Gpio.getValue() may take about 270us. 
It can't fit the timing requirement of DHT11, which needs about 20us or 
less.

Any suggestions or idea to work it out on AndroidThings? Thanks.

Reference: DHT11 Humidity & Temperature Sensor 
 

Regards,
Moontain

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/7da1ebd1-fd93-4aef-a381-3d8210f0dc69%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Builders in Bangalore |Home Builders in Bangalore

2017-01-02 Thread pushpabusy123


Home Builders in Bangalore - List of house construction companies, 
contractors in Bangalore and get professional home building companies 
contact addresses, phone numbers, ratings and reviews to your mobile 
instantly from Busybizz.com.

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/3c54d326-e14f-4021-8230-2f018ae3c0b6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Develop Private Androïd App for entreprise

2017-01-02 Thread Sami
Hi,

First of all, happy new year 2017.

Context:
For my job, we need to develop an Android application. This app will be 
entended to employees. The app will need to use push notifications through 
Google Notification Server (GCM).

Question 1:
How to ensure that once installed on smartphone there will be no alert to 
the fact that this app does not come from the PlayStore. Is there a 
specific way to sign the application or other to achieve it.

Question 2:
Is it possible to use the Google Notification Server (GCM) only with the 
Google Developer account without broadcasting it one the PlayStore (Public 
and Private channel)

Thank you in advance for your answers.

Regards,

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/1de84bc9-b5fb-41be-af27-43d6d4cf9627%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Web Design company in Malaysia | Ecommerce Site Development

2017-01-02 Thread krishnasrichowdary




*In this track, you’ll learn how to design and build beautiful websites by 
learning the basic principles of design like HTML, CMS etc.*

To know more, please contact us at:

http://ooisolutions.com/webdesigningmalaysia

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/9c7cb37c-eea6-4691-996c-a64d1fb54413%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] Identifying fake calls added in Call log

2017-01-02 Thread prasad rao
How to identify difference between calls added through Content provider 
programmatically and original calls?

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/0661b83d-58aa-405c-9b27-d708dbe0e820%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] [Job] Ruby on Rails Developer in London

2017-01-02 Thread Pandiyan N
Job Title: Ruby on Rails Developer
Location: London

Our leading Client, a household name in the Gaming industry are currently 
seeking a Ruby on Rails Developer with extensive Rails, JavaScript and 
Heroku experience to come on board an work on a new project.

Key skills and experience required:

Ruby on Rails
 
Javascript (in particular angularjs)
 
Heroku
 
Web security

This is an exciting opportunity for an experienced RoR Developer to take 
the lead on various projects and work with cutting edge technology.

To apply click the below link,
http://thulya.com/FPrint/a8rKzPR6c0yh5rX8onX8HQ

For more job opportunities please visit 
http://thulya.com/Apps/Jobs/Jobseeker/

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/5982e1e5-9af6-4e6c-9014-da4cf2a169a2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[android-developers] [Job] PHP Developer - ZEND - MySQL in Sussex

2017-01-02 Thread Pandiyan N
Job Title: PHP Developer - ZEND - MySQL
Location: Sussex

PHP Developer - Back End - PHP, OOP, ZEND, MySQL, HTML5, CSS, JavaScript, 
JQuery, GIT

Our Media Client based in West Sussex are currently looking to recruit a 
PHP Developer with extensive Back End development skills using PHP, ZEND 
Framework and MySQL.

This role will suit a PHP Developer with extensive experience with PHP and 
MySQL as well as some Front End knowledge with HTML5, CSS, JavaScript, 
JQuery working in a GIT environment.

The PHP Developer will join a small team and will be required to develop, 
propose, drive, review and implement enhancements to the current website 
and mobile applications: you must have extensive experience with PHP, 
MySQL. Knowledge of HTML 5, CSS, JavaScript, JQuery and experience working 
with GIT.

To qualify for this role, PHP Developer must have the following technical 
skills:

PHP
 
MySQL
 
ZEND 2 framework
 
Object Orientated Programming (OOP)
 
Excellent knowledge of integration and exchange (XML, Soap, Json)
 
Knowledge of HTML5, CSS, JavaScript, JQuery
 
Experience with GIT

To apply click the below link,
http://thulya.com/FPrint/GTwQTkTyt0ieEiHPZS8Dlg

For more job opportunities please visit 
http://thulya.com/Apps/Jobs/Jobseeker/

-- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to android-developers+unsubscr...@googlegroups.com.
To post to this group, send email to android-developers@googlegroups.com.
Visit this group at https://groups.google.com/group/android-developers.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-developers/1a22bbfa-8c7d-482a-af7c-ee544f45668e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.