I have three files. The XML, the draw function and the main Activity.
I have some LinearLayout in my XML file.
<LinearLayout android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1">
<LinearLayout android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:background="#ef3"
android:id="@+id/img01"/>
<LinearLayout android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:background="#E8A2B4"
android:id="@+id/img02"/>
</LinearLayout>
This is the draw function:
public class getBorder extends TextView {
public getBorder(Context context) {
super(context);
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
Paint paint = new Paint();
paint.setColor(android.graphics.Color.RED);
canvas.drawLine(0, 0, this.getWidth() - 1, 0, paint);
canvas.drawLine(0, 0, 0, this.getHeight() - 1, paint);
canvas.drawLine(this.getWidth() - 1, 0, this.getWidth() - 1,
this.getHeight() - 1, paint);
canvas.drawLine(0, this.getHeight() - 1, this.getWidth() - 1,
this.getHeight() - 1, paint);
}
}
And this is the main Activity:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
final getBorder getBorder = new getBorder(this);
final LinearLayout img01 = (LinearLayout) findViewById(R.id.img01);
img01.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
getBorder.setWidth(100);
getBorder.setHeight(100);
img01.addView(getBorder);
}
});
}
The program could draw border but the size doesn’t fit the LinearLayout. And when I click the LinearLayout again, the program crashed.
Also, I want to draw two circles in the center of the LinearLayout, but how could I figure out the center coordinates?
Do you really need to do that programmatically?
Just considering the title: You could use a ShapeDrawable as android:background…
For example, let’s define
res/drawable/my_custom_background.xmlas:and define android:background=”@drawable/my_custom_background”.
I’ve not tested but it should work.
Update:
I think that’s better to leverage the xml shape drawable resource power if that fits your needs. With a “from scratch” project (for android-8), define res/layout/main.xml
and a
res/drawable/border.xmlReported to work on a gingerbread device. Note that you’ll need to relate
android:paddingof the LinearLayout to theandroid:widthshape/stroke’s value. Please, do not use@android:color/whitein your final application but rather a project defined color.You could apply
android:background="@drawable/border" android:padding="10dip"to each of the LinearLayout from your provided sample.As for your other posts related to display some circles as LinearLayout’s background, I’m playing with Inset/Scale/Layer drawable resources (see Drawable Resources for further information) to get something working to display perfect circles in the background of a LinearLayout but failed at the moment…
Your problem resides clearly in the use of
getBorder.set{Width,Height}(100);. Why do you do that in an onClick method?I need further information to not miss the point: why do you do that programmatically? Do you need a dynamic behavior? Your input drawables are png or ShapeDrawable is acceptable? etc.
To be continued (maybe tomorrow and as soon as you provide more precisions on what you want to achieve)…