0

希望这个问题能够解决我的错误期望,但我使用的是 Android Studio 0.2.10,并且在渲染系统识别 XML 以将 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>
4

0 回答 0