Progressbar的使用以及ListView的使用

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    <ProgressBar 
        android:id="@+id/progressOne"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        style="?android:attr/progressBarStyleHorizontal"
        android:visibility="gone"
        />
    
    <ProgressBar 
        android:id="@+id/progressTwo"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        style="?android:attr/progressBarStyle"
        android:visibility="gone"
        />
    
    <Button 
         android:id="@+id/buttonprogress"
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:text="@string/login"
        />

</LinearLayout>


package com.example.helloworld;


import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.ProgressBar;


public class ProgreeeBarTest extends Activity {


private ProgressBar first;
private ProgressBar second;
private Button button;
private int i=0;

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

//获取对象 
first=(ProgressBar)findViewById(R.id.progressOne);
second=(ProgressBar)findViewById(R.id.progressTwo);
   button=(Button)findViewById(R.id.buttonprogress);
   
   button.setOnClickListener(new ButtonOnClickListener() );


}

class ButtonOnClickListener implements OnClickListener{


@Override
public void onClick(View view) {
if(i==0){
//第一次单机按钮 ,进度条会显示
first.setVisibility(View.VISIBLE);
second.setVisibility(View.VISIBLE);
}else if(i<first.getMax()){
//显示进度条的进度
first.setProgress(i);
first.setSecondaryProgress(i+10);
}else{
//如果读取完毕,进度条消失
first.setVisibility(View.GONE);
second.setVisibility(View.GONE);
}
i=i+10;
}

}
}



ListView的使用

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    
    <LinearLayout 
        android:id="@+id/listLinearLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        >


        <ListView
            android:id="@android:id/list"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" 
            android:drawSelectorOnTop="false"
            android:scrollbars="vertical"
            >
        </ListView>
            
    </LinearLayout>


</LinearLayout>


user.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    
    <LinearLayout 
        android:id="@+id/listLinearLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        >


        <ListView
            android:id="@android:id/list"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" 
            android:drawSelectorOnTop="false"
            android:scrollbars="vertical"
            >
        </ListView>
            
    </LinearLayout>


</LinearLayout>


package com.example.helloworld;


import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;


import android.app.ListActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.SimpleAdapter;


public class ListView extends ListActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.mylistview);

List<HashMap<String,String>> list=new ArrayList<HashMap<String,String>>();
HashMap<String,String> map1=new HashMap<String,String>();
HashMap<String,String> map2=new HashMap<String,String>();
HashMap<String,String> map3=new HashMap<String,String>();
map1.put("user_name", "zhangsan");
map1.put("user_ip", "192.168.1.3");
map2.put("user_name", "lisi");
map2.put("user_ip", "192.168.1.4");
map3.put("user_name", "wangwu");
map3.put("user_ip", "192.168.1.5");

SimpleAdapter adapter=new SimpleAdapter(this, list, R.layout.user, new String[]{"user_name","user_ip"}, new int[]{R.id.user_name,R.id.user_ip});
setListAdapter(adapter);
}

@Override
protected void onListItemClick(android.widget.ListView l, View v,
int position, long id) {
System.out.println(position+"   "+id);
//id 就是第几个
super.onListItemClick(l, v, position, id);
}

}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值