ArrayList<String> images_arr =
new ArrayList<String>(){
private static final long serialVersionUID = -1773393753338094625L;
{
add("string1");
add("string2");
add("string3");
add("string4");
}
};
This blog contains answers to all your questions. if can find your answer please drop a comment. Also if you have any answer to a specific question. Please drop a comment and we will publish it under your name.
1
2
3
4
5
6
7
8
9
10
11
12
13
| < TableLayout android:id = "@+id/TableLayout01" android:layout_width = "fill_parent" android:layout_height = "fill_parent" < TextView android:layout_width = "wrap_content" android:layout_height = "wrap_content" android:id = "@+id/tv1" android:text = "CoderzHeaven Widget Settings Activity" android:textColor = "@android:color/white" android:textSize = "15dip" android:textStyle = "bold" android:layout_marginTop = "5dip" /> </ TableLayout >
Read the complete post from here.
|