Значения атрибутов по умолчанию для моего пользовательского представления (унаследовано от LinearLayout) - PullRequest
3 голосов
/ 25 февраля 2011

У меня есть пользовательский макет

public class PersonView extends LinearLayout{

public PersonView(Context context, AttributeSet attrs) {
    super(context, attrs);
    initUi(context);
}

public PersonView(Context context) {
    super(context);
    initUi(context);
}

    private void initUi(Context context){
    LayoutInflater.from(context).inflate(R.layout.person_view, this, true);
    profilePicture = (ImageView)findViewById(R.id.profile_picture);
    ...
}

Макет определен в xml

<merge xmlns:android="http://schemas.android.com/apk/res/android">
   ...

Тогда я использую его в другом макете

Дело 1

// In this case android:layout_margin is specified so it should be used
<my.package.PersonView android:layout_margin="10dp" .../>

Дело 2

// In this case android:layout_margin is NOT specified so I want for my PersonView some default value should be used (say 5pt)
<my.package.PersonView .../>

Что мне нужно сделать, чтобы моя пользовательская раскладка PersonView достигла варианта 2?

1 Ответ

4 голосов
/ 23 сентября 2014

Аналогичная проблема была решена на https://stackoverflow.com/a/25982512/3554436

Добавить android:layout_margin к attrs.xml

<declare-styleable name="PersonView">
    ...
    <attr name="android:layout_margin" />
    ...
</declare-styleable>

Доступ к атрибуту, как и к другим пользовательским атрибутам:

TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.PersonView);
float margin = a.getDimension(R.styleable.PersonView_android_layout_margin, 0);
...
boolean hasMargin = a.hasValue(R.styleable.PersonView_android_layout_margin);
...