-
大小: 0.56M文件類型: .rar金幣: 1下載: 0 次發(fā)布日期: 2021-02-01
- 標簽: baseadapter??listview??Android??
資源簡介
【核心代碼】
package csdn.danielinbiti.custometableview;
import java.util.ArrayList;
import java.util.HashMap;
import csdn.danielinbiti.custometableview.adapter.CustomeTableViewAdapter;
import csdn.danielinbiti.custometableview.item.CellTypeEnum;
import csdn.danielinbiti.custometableview.item.HeadItemCell;
import csdn.danielinbiti.custometableview.item.ItemCell;
import android.os.Bundle;
import android.app.Activity;
import android.content.Context;
import android.text.Html;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.View;
import android.widget.LinearLayout;
import android.widget.ListView;
import android.widget.TextView;
import android.widget.LinearLayout.LayoutParams;
public class MainActivity extends Activity {
private LayoutInflater inflater;
private LinearLayout headLayout = null;
private int[] arrHeadWidth = null;
private ListView listView;
private CustomeTableViewAdapter adapter = null;
private ArrayList<HashMap<String,Object>> lists = new ArrayList<HashMap<String,Object>>();
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.lst_view_ui);
headLayout = (LinearLayout)findViewById(R.id.linearlayout_head);
listView = (ListView) findViewById(R.id.listview);
inflater = LayoutInflater.from(this);
this.testData();//測試數(shù)據(jù)
}
private View getVerticalLine(){
return inflater.inflate(R.layout.atom_line_v_view, null);
}
private void addVLine(){
LinearLayout v_line = (LinearLayout)getVerticalLine();
v_line.setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT));
headLayout.addView(v_line);
}
private void addHead(HashMap headMap){
arrHeadWidth = new int[headMap.size()];
int width = 0;
for(int i=0;i<headMap.size();i ){
HeadItemCell itemCell = (HeadItemCell)headMap.get(i "");
String name = itemCell.getCellValue();
width = Dp2Px(this,itemCell.getWidth());
setHeadName(name,width);
arrHeadWidth[i] = width;
if(i!=headMap.size()-1){
this.addVLine();
}
}
}
private void setHeadName(String name,int width){
TextView headView = (TextView)inflater.inflate(R.layout.atom_head_text_view, null);
if(headView!=null){
String viewName = "<b>" name "</b>";
headView.setText(Html.fromHtml(name));
headView.setWidth(width);
headLayout.addView(headView);
}
}
private int Dp2Px(Context context, float dp) {
final float scale = context.getResources().getDisplayMetrics().density;
return (int) (dp * scale 0.5f);
}
private void testData(){
HashMap headMap = new HashMap();
this.testAddHead(headMap,"列1");
this.testAddHead(headMap,"列2");
this.testAddHead(headMap,"列3");
this.testAddHead(headMap,"列4");
this.testAddHead(headMap,"列5");
this.addHead(headMap);
HashMap contentMap = new HashMap();
this.testAddContent(contentMap);
adapter = new CustomeTableViewAdapter(this, lists,listView
,false,this.arrHeadWidth);
adapter.notifyDataSetChanged();
}
private void testAddHead(HashMap headMap,String headName){
HeadItemCell itemCell = new HeadItemCell(headName,100);
headMap.put(headMap.size() "", itemCell);
}
private void testAddContent(HashMap contentMap){
HashMap rowMap1 = new HashMap();
lists.add(rowMap1);
this.testAddRows(rowMap1, 1, "1-1(1)", CellTypeEnum.LABEL);
this.testAddRows(rowMap1, 1, "1-2(1)", CellTypeEnum.STRING);
this.testAddRows(rowMap1, 2, "1-3(2)", CellTypeEnum.STRING);
this.testAddRows(rowMap1, 1, "1-4(1)", CellTypeEnum.DIGIT);
rowMap1.put("rowtype", "css1");//表樣標示放在內(nèi)容添加后再添加
HashMap rowMap2 = new HashMap();
lists.add(rowMap2);
this.testAddRows(rowMap2, 1, "2-1(1)", CellTypeEnum.LABEL);
this.testAddRows(rowMap2, 3, "2-2(3)", CellTypeEnum.STRING);
this.testAddRows(rowMap2, 1, "2-3(1)", CellTypeEnum.DIGIT);
rowMap2.put("rowtype", "css2");
HashMap rowMap3 = new HashMap();
lists.add(rowMap3);
this.testAddRows(rowMap3, 1, "3-1(1)", CellTypeEnum.LABEL);
this.testAddRows(rowMap3, 3, "3-2(3)", CellTypeEnum.LABEL);
this.testAddRows(rowMap3, 1, "3-3(1)", CellTypeEnum.DIGIT);
rowMap3.put("rowtype", "css3");
HashMap rowMap4 = new HashMap();
lists.add(rowMap4);
this.testAddRows(rowMap4, 1, "4-1(1)", CellTypeEnum.LABEL);
this.testAddRows(rowMap4, 1, "4-2(1)", CellTypeEnum.STRING);
this.testAddRows(rowMap4, 2, "4-3(2)", CellTypeEnum.STRING);
this.testAddRows(rowMap4, 1, "4-4(1)", CellTypeEnum.DIGIT);
rowMap4.put("rowtype", "css1");
}
private void testAddRows(HashMap rowMap,int colSpan,String cellValue,CellTypeEnum cellType){
ItemCell itemCell = new ItemCell(cellValue,cellType,colSpan);
rowMap.put(rowMap.size() "", itemCell);
}
}
代碼片段和文件信息
package?csdn.danielinbiti.custometableview;
import?java.util.ArrayList;
import?java.util.HashMap;
import?csdn.danielinbiti.custometableview.adapter.CustometableViewAdapter;
import?csdn.danielinbiti.custometableview.item.CellTypeEnum;
import?csdn.danielinbiti.custometableview.item.HeadItemCell;
import?csdn.danielinbiti.custometableview.item.ItemCell;
import?android.os.Bundle;
import?android.app.Activity;
import?android.content.Context;
import?android.text.Html;
import?android.view.LayoutInflater;
import?android.view.Menu;
import?android.view.View;
import?android.widget.LinearLayout;
import?android.widget.ListView;
import?android.widget.TextView;
import?android.widget.LinearLayout.LayoutParams;
public?class?MainActivity?extends?Activity?{
????private?LayoutInfl
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????????475??2014-08-27?16:55??Custome
?????文件????????852??2014-08-27?16:35??Custome
?????文件????????909??2014-08-27?16:35??Custome
?????文件??????51394??2014-08-27?16:35??Custome
?????文件?????556198??2014-08-27?16:35??Custome
?????文件????????781??2014-08-27?16:35??Custome
?????文件????????563??2014-08-27?16:35??Custome
?????文件????????309??2013-05-28?13:32??Custome
?????文件???????7658??2014-08-27?16:35??Custome
?????文件???????3777??2014-08-27?16:35??Custome
?????文件??????12516??2014-08-27?16:35??Custome
?????文件??????24777??2014-08-27?16:35??Custome
?????文件????????666??2014-08-27?16:35??Custome
?????文件????????357??2014-08-27?17:18??Custome
?????文件????????337??2014-08-27?22:57??Custome
?????文件????????293??2013-05-28?13:32??Custome
?????文件????????381??2013-07-25?17:24??Custome
?????文件????????395??2014-08-27?17:59??Custome
?????文件???????1576??2014-08-27?23:04??Custome
?????文件????????263??2014-08-27?16:35??Custome
?????文件????????220??2014-08-27?16:35??Custome
?????文件????????233??2014-08-27?16:35??Custome
?????文件????????919??2014-08-27?17:26??Custome
?????文件????????203??2014-08-27?16:35??Custome
?????文件????????277??2014-08-27?16:35??Custome
?????文件????????334??2014-08-27?16:35??Custome
?????文件????????391??2014-08-27?16:35??Custome
?????文件???????2968??2014-08-27?23:58??Custome
?????文件????????143??2014-08-27?16:56??Custome
?????文件???????4772??2014-08-28?00:24??Custome
............此處省略31個文件信息
評論
共有 條評論
相關(guān)資源
- android 分組 列表源碼(仿支付寶交易
- SearchDemo
- AndroidUIDemo
- AndroidViewDemo
- 可拖拽的gridView——Drag and drop GridVi
- A lightweight well designed metronome app for
- android 仿網(wǎng)易客戶端 底部切換tab簽
- android-serialport-api(android-sercd)
- java 讀取PDF文件中的內(nèi)容.zip
- BezierView(實現(xiàn)仿QQ未讀消息效果).
- BeautifulDialog(一些比較漂亮的對話框
- ViewPagerFragmentRadioGroup(底部導航+左右
- RecyclerViewDemo(萬能列表).zip
- SearchHelper(搜索框特效).zip
- ToolBarDrawerLayoutDemo(側(cè)滑菜單).zip
- MeiTuan(仿美團篩選PopupWindow下拉彈出
- ViewPagerIndicator(頭部TAB切換指示器)
- Android GreenDao使用教程
- Android 史上最簡單的自定義listview上拉
- android 播放gif圖片
- Android 安卓保活組件(keeplive)
- 根據(jù)廠商rom打開權(quán)限管理(android代碼
- Android 結(jié)構(gòu)緊湊的表格布局(Android簡
- Android 查看正在運行的程序(手機通信
- Android 自動調(diào)用系統(tǒng)的撥號、上網(wǎng)和發(fā)
- Android 燈泡開關(guān)(Android簡單控件的開
- Android 用復選框?qū)崿F(xiàn)選擇喜歡的城市(
- Android 音樂播放器在狀態(tài)欄上圖標提示
- Android 開機程序自啟動(手機的自動服
- Android 短信群發(fā)功能的實現(xiàn)(手機的自