1-) Android RMOS - TextView, button vs .. border ayarlama kod ile
kaynak: https://android--code.blogspot.com/2015/05/android-textview-border-radius.html
TextView lblad = (TextView) convertView.findViewById(R.id.lbl_Alt_Ad);
GradientDrawable gd = new GradientDrawable();gd.setShape(GradientDrawable.RECTANGLE);gd.setColor(Color.TRANSPARENT);gd.setStroke(5, Color.RED);gd.setCornerRadius(15.0f);lblad.setBackground(gd);