Hi All, Do you own an iphone, iPad, iPod or any other other device like Samsung, HTC, blackberry etc? Have scared about scratches on your device? Want to protect your Device?
Then You just buy your scratch proof guard here, Its highly recommended. http://goo.gl/gHixr -- Prabhu On Saturday, May 28, 2011, Anuj Goyal <[email protected]> wrote: > import android.app.ListActivity; > import android.widget.TextView;import android.widget.ProgressBar;import > android.os.Bundle; > public class HelloLinearLayout extends ListActivity { @Override > public void onCreate(Bundle savedInstanceState) { > super.onCreate(savedInstanceState); setContentView(R.layout.main); > TextView tv1 = (TextView)findViewById(R.id.tv1); > tv1.setText("ABC"); TextView tv2 = > (TextView)findViewById(R.id.tv2); tv2.setText("Heyyy"); > final ProgressBar pb = (ProgressBar) findViewById(R.id.pb1); > pb.setMax(100); pb.setProgress(30); }} > > <?xml version="1.0" encoding="utf-8"?><LinearLayout > xmlns:android="http://schemas.android.com/apk/res/android" > android:orientation="vertical" android:layout_width="fill_parent" > android:layout_height="fill_parent" ><TextView android:id="@+id/tv1" > /><ProgressBar style="@android:style/Widget.ProgressBar.Horizontal" > android:id="@+id/pb1" /><TextView android:id="@+id/tv2" > android:layout_width="fill_parent" android:layout_height="wrap_content" > /></LinearLayout> > > > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > 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 post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

