Hi guys.
Do you know how to draw line on the LinearLayout ?
To create a LinearLayout, I am using resource xml.
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main_layout);
LinearLayout linear = (LinearLayout)findViewById(R.id.linearlayout);
//I wanna draw line on "linear"
}
Is it possible ?
Thanks in advance.