撰写一个按钮,用于我项目的各个部分

时间:2017-05-29 21:06:17

标签: android android-xml android-components

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

我有这个按钮:

<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的类,但是我没有ideia如何在代码中访问。 app的推荐:例如。

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

例如:

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

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

<MyLinearLayout>
...
</MyLinearLayout>

2 个答案:

答案 0 :(得分:1)

  

某些礼节我没有ideia如何访问代码。 app的推荐:例如。

Have a look here. 您必须子类化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>
  

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

Reusable Layouts可能就是你要找的东西。

这方面的一个示例是将自定义工具栏定义为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"
    />

答案 1 :(得分:0)

如果您查看ProgressBar的源代码,您会发现可以使用TypedArray从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

如果是后者,那么您只需使用适当的子项制作一个只包含LinearLayout内容的XML文件,我们就称之为myLayout.xml。然后,在其他XML文件中,您可以将其放入:

myLayout.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>