あなたはLinerlayoutから延びるクラスを作成することができるように設定私のボーダー描画可能です。 onCreateメソッドでは、xmlレイアウトを拡張します。
public class ValueSelector extends Linerlayout {
View rootView;
TextView valueTextView;
public ValueSelector(Context context) {
super(context);
init(context);
}
public ValueSelector(Context context, AttributeSet attrs) {
super(context, attrs);
init(context);
}
private void init(Context context) {
//do setup work here
rootView = inflate(context, R.layout.your_custom_view, this);
}
}
その後your_layout_view.xml
にカスタムビューを作成するように:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drwable.boarder_bd"
tools:context=".LinearLayout" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="My Data"
android:paddingTop="10px"/>
</LinearLayout>
あなたのイメージをロードすることはできませんが、私は以下にanwerを投稿してください。私はそれがあなたに役立つことを願っています – Hossein
申し訳ありませんが、基本的には、TextViewを使ってLinearLayoutを作成しています。 TextViewの位置が境界の上にあります。ここに新しいリンクhttps://ibb.co/jCDC26 –
私は役に立つかもしれないいくつかの変更。 drawable xmlファイルを作成し、Linearlayoutの背景として設定する必要があります。 – Hossein