Re: [android-developers] Google spreadsheet workaround

2013-02-07 Thread Keith Zettler
yes but the suitable app is Drive. Within the drive app on my android 
device charts and drop downs are not available on the spreadsheets.

On Sunday, February 3, 2013 7:15:09 PM UTC-5, Fred Niggle wrote:
>
> yes, install dropbox or other sync-able remote storage software on both 
> desktop and android, then open the spreadsheet with a suitable android app.
>
> Your mileage will vary depending on spreadsheet suit used to create the 
> spreadsheet, and how much formating is used.
> In some cases it is viable to 'port' a copy to a different format for 
> experimentation.
>
>
> On 3 February 2013 16:59, leftc...@gmail.com  <
> leftc...@gmail.com > wrote:
>
>> http://support.google.com/drive/bin/answer.py?hl=en&answer=2761244
>>
>> Are there any known workarounds to having charts on my google drive 
>> spreadsheet display on android?
>>
>> -- 
>> -- 
>> You received this message because you are subscribed to the Google
>> Groups "Android Developers" group.
>> To post to this group, send email to 
>> android-d...@googlegroups.com
>> To unsubscribe from this group, send email to
>> android-developers+unsubscr...@googlegroups.com 
>> For more options, visit this group at
>> http://groups.google.com/group/android-developers?hl=en
>> --- 
>> 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 .
>> For more options, visit https://groups.google.com/groups/opt_out.
>>  
>>  
>>
>
>
>
> -- 
> Sent from an Ubuntu Desktop.
>
> Ubuntu Speech 
> inputis
>  now available on Google Play, along with Magnetic 
> Door Alarm 
> app
> .
>  

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
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.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Seekbar Save state and restore

2013-07-11 Thread Keith Zettler
How exactly can i save/restore this seekbar if user uses back button or 
activity is destyroyed?
I have not been able to find a specific example anywhere


public class MainActivity extends Activity  implements 
SeekBar.OnSeekBarChangeListener {

SeekBar seekBar;
SeekBar seekBar1;
TextView textView;
TextView textView1;
TextView textView2;
TextView textView3;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

seekBar=(SeekBar)findViewById(R.id.seekbar);
seekBar1=(SeekBar)findViewById(R.id.seekBar1);
textView=(TextView)findViewById(R.id.textview);
textView1=(TextView)findViewById(R.id.textView1);
textView2=(TextView)findViewById(R.id.textView2);
textView3=(TextView)findViewById(R.id.textView3);
   
   

seekBar.setOnSeekBarChangeListener(this);

}

@Override
public void onProgressChanged(SeekBar seekBar, int progress,
boolean fromUser) {
//  Notify that the progress level has changed.

int A= (progress+250);
textView.setText("SeekBar now at the value of:"+progress);
textView1.setText("SeekBar now at the value of:"+A);


}

@Override
public void onStartTrackingTouch(SeekBar seekBar) {
// Notify that the user has started a touch gesture.
//textView.setText(textView.getText()+"\n"+"SeekBar Touch Started");

}

@Override
public void onStopTrackingTouch(SeekBar seekBar) {
// Notify that the user has finished a touch gesture.
   // textView.setText(textView.getText()+"\n"+"SeekBar Touch 
Stopped");   
}




@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is 
present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}


}

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
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.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [android-developers] Seekbar Save state and restore

2013-07-12 Thread Keith Zettler
This activity is called via intent from the first activity. If i back 
button from this activity to the first activity the seekbar value returns 
to zero when i get back.

On Friday, July 12, 2013 12:39:02 AM UTC-4, TreKing wrote:
>
>
> On Thu, Jul 11, 2013 at 9:14 PM, Keith Zettler 
> 
> > wrote:
>
>> How exactly can i save/restore this seekbar if user uses back button or 
>> activity is destyroyed?
>
>
> 1 - Your code shows two seekbars so referring to "this seekbar" is 
> ambiguous.
> 2 - A seekbar, being a built-in widget, should save and restore itself.
> 3 - Your code does not demonstrate anything that needs saving.
>
>
>
> -
> TreKing <http://sites.google.com/site/rezmobileapps/treking> - Chicago 
> transit tracking app for Android-powered devices
>  

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
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.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [android-developers] Seekbar Save state and restore

2013-07-14 Thread Keith Zettler
So we come full circle . How exactly can i save/restore this seekbar if 
user uses back button or activity is destroyed. Does anyone have a seekbar 
specific example ?

On Saturday, July 13, 2013 12:32:01 AM UTC-4, TreKing wrote:
>
>
> On Fri, Jul 12, 2013 at 7:07 PM, Keith Zettler 
> 
> > wrote:
>
>> This activity is called via intent from the first activity. If i back 
>> button from this activity to the first activity the seekbar value returns 
>> to zero when i get back.
>
>
>
> http://developer.android.com/training/basics/activity-lifecycle/recreating.html
>
>
> -
> TreKing <http://sites.google.com/site/rezmobileapps/treking> - Chicago 
> transit tracking app for Android-powered devices
>  

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
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.
For more options, visit https://groups.google.com/groups/opt_out.




[android-developers] Re: Seekbar Save state and restore

2013-07-15 Thread Keith Zettler
I am trying to save the actual position of 200 seekbars on one activity. I 
think this means i have to save/restore the position of the seekbars and 
the integer value of the seekbar before the activity was paused? i had read 
the API and it made no reference to seekbars . I was not aware they were 
widgets nor that i could store their positions and int value in shared 
preferences or that shared preferences even existed. Thank you Fred for 
that. What would be the correct way to accomplish the above TreKing?
Thank you both for your time and efforts 

On Thursday, July 11, 2013 10:14:38 PM UTC-4, Keith Zettler wrote:
>
> How exactly can i save/restore this seekbar if user uses back button or 
> activity is destyroyed?
> I have not been able to find a specific example anywhere
>
>
> public class MainActivity extends Activity  implements 
> SeekBar.OnSeekBarChangeListener {
>
> SeekBar seekBar;
> SeekBar seekBar1;
> TextView textView;
> TextView textView1;
> TextView textView2;
> TextView textView3;
>
> @Override
> protected void onCreate(Bundle savedInstanceState) {
> super.onCreate(savedInstanceState);
> setContentView(R.layout.activity_main);
>
> seekBar=(SeekBar)findViewById(R.id.seekbar);
> seekBar1=(SeekBar)findViewById(R.id.seekBar1);
> textView=(TextView)findViewById(R.id.textview);
> textView1=(TextView)findViewById(R.id.textView1);
> textView2=(TextView)findViewById(R.id.textView2);
> textView3=(TextView)findViewById(R.id.textView3);
>
>
> 
> seekBar.setOnSeekBarChangeListener(this);
> 
> }
>
> @Override
> public void onProgressChanged(SeekBar seekBar, int progress,
> boolean fromUser) {
> //  Notify that the progress level has changed.
> 
> int A= (progress+250);
> textView.setText("SeekBar now at the value of:"+progress);
> textView1.setText("SeekBar now at the value of:"+A);
> 
>
> }
>
> @Override
> public void onStartTrackingTouch(SeekBar seekBar) {
> // Notify that the user has started a touch gesture.
> //textView.setText(textView.getText()+"\n"+"SeekBar Touch 
> Started");
>
> }
>
> @Override
> public void onStopTrackingTouch(SeekBar seekBar) {
> // Notify that the user has finished a touch gesture.
>// textView.setText(textView.getText()+"\n"+"SeekBar Touch 
> Stopped");   
> }
> 
>
> 
> 
> @Override
> public boolean onCreateOptionsMenu(Menu menu) {
> // Inflate the menu; this adds items to the action bar if it is 
> present.
> getMenuInflater().inflate(R.menu.main, menu);
> return true;
> }
> 
> 
> }
>

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
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.
For more options, visit https://groups.google.com/groups/opt_out.