Android Studio无法将RelativeLayout子类识别为RelativeLayout

时间:2013-09-30 16:05:54

标签: android xml android-layout android-studio

希望这个问题能解决我不正确的期望,但我正在使用Android Studio 0.2.10并且我在渲染系统中遇到问题,因为自定义视图组会将RelativeLayout扩展为实际的RelativeLayout。这样做的结果是自定义视图中的子节点没有获得应该可用的选项...例如layout_width,layout_height或alignComponent(这似乎表明它甚至不能将自定义布局识别为布局)。

我当然可以手动将这些属性添加到XML中,或者只是暂时将根标签设置为RelativeLayout,设计工具似乎工作正常,但我很好奇,因为AndroidStudio无法正确解析自定义扩展,我在设计上做错了。我是Android开发的新手,所以我不想过早地把它作为一个IDE漏洞。

public class CommentCellView extends RelativeLayout {
    private static String TAG = "CommentCellView";

    final private CommentCellView _cellView;
    private Comment _comment;

    public CommentCellView(Context context) {
        super(context);
        _cellView = this;
    }

    public CommentCellView(Context context, AttributeSet attrs) {
        super(context, attrs);
        _cellView = this;
    }

    public CommentCellView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        _cellView = this;
    }

    public void setComment(Comment comment) {
        _comment = comment;

        TextView nameTextView = (TextView)this.findViewById(R.id.commentcell_nameTextView);
        TextView commentTextView = (TextView)this.findViewById(R.id.commentcell_commentTextView);
        TextView dateTextView = (TextView)this.findViewById(R.id.commentcell_dateTextView);

        nameTextView.setText(comment.name);
        commentTextView.setText(comment.comment);
        dateTextView.setText(comment.date);
    }
}

<com.testapp.CommentCellView xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="match_parent"
                android:layout_height="80dp"
                android:background="#ffffff">

        <ImageView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:id="@+id/commentcell_backgroundImageView"
            android:layout_alignParentTop="true"
            android:layout_alignParentLeft="true"
            android:src="@drawable/comment_bg"/>

    <ImageView
            android:layout_width="50dp"
            android:layout_height="50dp"
            android:id="@+id/commentcell_avatarImageView"
            android:layout_centerVertical="true"
            android:layout_alignParentLeft="true"
            android:src="@drawable/avatar"
            android:layout_marginLeft="20dp"/>

    <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textAppearance="?android:attr/textAppearanceSmall"
            android:text="Small Text"
            android:id="@+id/commentcell_nameTextView"
            android:layout_alignTop="@+id/commentcell_avatarImageView"
            android:layout_toRightOf="@+id/commentcell_avatarImageView"
            android:layout_marginLeft="10dp"/>

    <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textAppearance="?android:attr/textAppearanceMedium"
            android:text="Medium Text"
            android:id="@+id/commentcell_commentTextView"
            android:layout_below="@+id/commentcell_nameTextView"
            android:layout_alignLeft="@+id/commentcell_nameTextView"
            android:textColor="#999999"
            android:layout_marginTop="2dp"
            android:layout_alignParentRight="true"/>

    <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textAppearance="?android:attr/textAppearanceSmall"
            android:text="Small Text"
            android:id="@+id/commentcell_dateTextView"
            android:layout_alignBottom="@+id/commentcell_avatarImageView"
            android:layout_toRightOf="@+id/commentcell_avatarImageView"
            android:layout_marginLeft="10dp"/>

</com.testapp.CommentCellView>

0 个答案:

没有答案