2

我创建了一个扩展 LinearLayout 的 Java 类,如下所示

    public class News extends LinearLayout{

    Context context;

     public News(Context context) {
    super(context);
     this.context=context;

     ViewFlipper viewFlipper=new ViewFlipper(context);
     viewFlipper.setLayoutParams(this.getLayoutParams());
    this.addView(viewFlipper);

    }

现在是否可以像这样将其包含到 xml 布局中:

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
            xmlns:app="http://schemas.android.com/apk/res/com.example.android.apis"
            android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">



        <com.example.android.apis.view.LabelView
                android:background="@drawable/green"
                android:layout_width="match_parent"
                android:layout_height="wrap_content" 
                app:text="Green" app:textColor="#ffffffff" />

    </LinearLayout>
4

2 回答 2

2
 <com.yourcompanyname.projectname.News<<<change here and check path is proper
                android:background="@drawable/green"
                android:layout_width="match_parent"
                android:layout_height="wrap_content" 
                app:text="Green" app:textColor="#ffffffff" />
于 2012-06-15T12:10:10.563 回答
1

是的,但您也应该覆盖其他构造函数。

<com.yourproject.package.News
    android:background="@drawable/green"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" 
    app:text="Green" app:textColor="#ffffffff" />

此外, xmlns:app="http://schemas.android.com/apk/res/com.example.android.apis" 也需要更新到您的应用程序包。

于 2012-06-15T12:12:43.793 回答