0

我有一个按钮,我需要在我的所有项目中使用具有相同属性的相同按钮,我想创建一个组件来调用这个组件,如果我需要更改我的按钮,只需更改一个类就可以更改所有用途。

我有这个按钮:

<br.com.simplepass.loading_button_lib.customViews.CircularProgressButton
            android:id="@+id/createMatch"
            android:layout_width="120dp"
            android:layout_height="wrap_content"
            android:background="@color/buttonColor"
            android:layout_marginTop="16dp"
            app:spinning_bar_width="4dp"
            app:spinning_bar_color="#FFF"
            android:alpha="0.5"
            android:textColor="@color/colorAccent"
            android:elevation="4dp"
            android:enabled="false"
            android:layout_marginLeft="16dp"
            android:textStyle="bold"
            android:text="@string/createMatch"
            android:textSize="14sp"
            app:spinning_bar_padding="6dp"/>

我创建了一个扩展 CircularProgressButton 的类,但是我不知道如何在代码中访问一些属性。应用程序的特性:例如。

合并两个问题,我如何制作具有各种布局的组件?

例如:

<LinearLayout>
   <Toolbar/>
   <LinearLayout/>
</LinearLayout>

我想在一个类中编写这个 xml 来调用并使用我的自定义类在所有布局中获取所有这些项目。

<MyLinearLayout>
...
</MyLinearLayout>
4

2 回答 2

1

我不知道如何在代码中访问一些礼仪。应用程序的特性:例如。

看看这里。 您必须继承一个 View 并提供一个接受 Context 和 AttributeSet 的构造函数。

class CircleView extends View {

    private String mTitleText = "Your default title";

    public CircleView(Context context, AttributeSet attrs) {
        super(context, attrs);

        // You can and should also pass a style as third argument
        final TypedArray a = getContext().obtainStyledAttributes(attrs, R.styleable.CircleView, 0, 0);

        if (a.hasValue(R.styleable.CircleView_titleText)) {
            mTitleText = a.getString(R.styleable.CircleView_titleText);
        }

        a.recycle();
    }
}

您可能已经注意到R.styleable.CircleView_titleText在我的示例中使用了。在使用自定义属性之前,您必须告诉编译器它们。这是通过添加.xml定义属性及其预期格式来实现的。

<resources>
    <declare-styleable name="CircleView">
        <attr name="titleText" format="string" />
    </declare-styleable>
</resources>

我如何制作具有各种布局的组件?

可重用布局可能是您正在寻找的。

这方面的一个示例是将自定义工具栏定义为toolbar.xml.

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#e40056"
    android:elevation="4dp"
    android:minHeight="?attr/actionBarSize"
    app:titleTextColor="#ffffff"
    />

然后include在其他视图中:

<include
    android:id="@+id/myToolbarId"
    layout="@layout/toolbar"
    />
于 2017-05-29T21:25:44.503 回答
0

如果您查看ProgressBar的源代码,您会发现可以使用 aTypedArray从 XML 中检索样式化的属性AttributeSet

public ProgressBar(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
    super(context, attrs, defStyleAttr, defStyleRes);
    ...
    final TypedArray a = context.obtainStyledAttributes(
            attrs, R.styleable.ProgressBar, defStyleAttr, defStyleRes);
    ...
    // this is where we get the drawable that is specified in the XML
    final Drawable progressDrawable = a.getDrawable(R.styleable.ProgressBar_progressDrawable);
    ...
}

您可以执行相同的操作来获取app您正在寻找的属性,但某些属性被标记为内部属性。在这些情况下,我会考虑覆盖它们,res/values/attrs.xml因为它们可能会改变。

注意:progressDrawable 不一定是内部的,我只是用它作为例子

<resources>
    <declare-styleable name="ProgressBar">
        <attr name="progressDrawable"/>
    </declare-styleable>
</resources>

至于你的第二个问题,我不确定你是想扩展LinearLayout(我不建议这样做,因为你必须编写代码来创建视图)或者只是重用LinearLayout其中的视图。

如果是后者,那么您可以只制作一个 XML 文件,LinearLayout其中包含适当的子项,我们称之为myLayout.xml. 然后,在您的其他 XML 文件中,您可以像这样放置它:

我的布局.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout>
   <Toolbar/>
   <LinearLayout/>
</LinearLayout>

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" 
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:text="@string/lorem_ipsum"/>

    <include layout="@layout/myLayout"/>

</LinearLayout>
于 2017-05-29T21:33:56.587 回答