Check this code for Dynamic tablelayout :
main.xml :
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#C0C0C0">
<RelativeLayout
android:layout_width="fill_parent" android:paddingBottom="20dip"
android:layout_height="fill_parent"
android:background="#C0C0C0">
<TableLayout android:id="@+id/contact_table"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/contact_info_title"
android:layout_marginTop="10dp"
android:background="@drawable/bgwhite_selector">
</TableLayout>
</RelativeLayout>
</ScrollView>
To add Contents of TableLayout use this xml file :
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/lays"
android:layout_width="wrap_content" android:background="@color/white"
android:layout_height="wrap_content" android:orientation="vertical">
<TableRow android:background="@color/white" android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView android:text=">"
android:textSize="18dip" android:textStyle="bold" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:id="@+id/arrowText"/>
</TableRow>
</LinearLayout>
After you created sepearate rows for layouts add this in Java code :
contact_table = (TableLayout)findViewById(R.id.contact_table);
LayoutInflater inflater = getLayoutInflater();
for(int i = 0; i < contact_count ; i++) {
LinearLayout row = (LinearLayout)inflater.inflate(R.layout.table_row,contact_table, false);
TextView text = (TextView)row.findViewById(R.id.text);
text.setText(list_data.get(i).summary);
contact_table.addView(row);
}
for(int i=0;i<contact_table.getChildCount();i++){
final View row=contact_table.getChildAt(i);
row.setOnClickListener(new OnClickListener(){
@Override
public void onClick(View v){
// TODO Auto-generated method stub
row_id=contact_table.indexOfChild(row);
}
});
}
Second for is the loop getting the click of Dynamically created Table row , in that add the
msg_title_text.setOnEditorActionListener(new DoneOnEditorActionListener());
Corresponding Action listener :
class DoneOnEditorActionListener implements OnEditorActionListener {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if (actionId == EditorInfo.IME_ACTION_DONE) {
Log.v("*****************************", "Clicked");
return true;
}
return false;
}
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…