9补丁背景强制到中心内容

时间:2017-08-28 16:55:13

标签: android android-layout nine-patch

  • 如果我在我的布局中使用9补丁背景drawable内容居中。如果我使用普通布局drawable基于xml正确显示。

  • 如果我在布局中使用9个补丁可绘制背景,则在设计屏幕的Android Studio中可以正确查看内容,但是当我在设备上运行应用程序时,内容会居中。

  • 除了内容居中的问题之外,还存在内容宽度受到限制的问题,如图中所示。

  • 是列表视图子视图

  • 我希望它看起来像在XML中(布局的内容不居中+没有内容宽度限制)

在设备中:

enter image description here

在xml中:

enter image description here

XML:

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


    <de.hdodenhof.circleimageview.CircleImageView
        android:id="@+id/imageView16"
        android:layout_width="35dp"
        android:layout_height="35dp"
        android:layout_marginBottom="10dp"
        android:src="@mipmap/unknown"
        android:layout_alignBottom="@+id/relativeLayout17"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:layout_marginLeft="6dp"
        android:layout_marginStart="6dp" />

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_marginTop="10dp"
        android:layout_height="wrap_content"
        android:background="@drawable/chatleft"
        android:id="@+id/relativeLayout17"
        android:layout_alignParentTop="true"
        android:layout_toRightOf="@+id/imageView16"
        android:layout_toEndOf="@+id/imageView16">


        <TextView
            android:id="@+id/textView83"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:padding="7dp"
            android:text="asdasd asd as" />

    </RelativeLayout>

</RelativeLayout>

GetView:

public View getView(int position, View view, ViewGroup parent) {

    view = inflator.inflate(R.layout.chatitem, null);
    return view;
}

0 个答案:

没有答案