考えられるすべての組み合わせを試しましたが、テキストビューを正しく配置できません。これが問題のスクリーンショットです
A シンボルの画像の最初の行から、上からのマージンが下からのマージンよりも大きいことがはっきりとわかります。
これは行のxmlレイアウトです
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#191e1e">
<RelativeLayout
android:id="@+id/client_initial_layout"
android:layout_width="70dp"
android:layout_height="70dp"
android:layout_centerVertical="true"
android:layout_marginLeft="10dp"
android:background="#1f97e5">
<!-- android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="20dp"-->
<TextView
android:id="@+id/client_initial"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:text="X"
android:textColor="#ffffff"
android:textSize="60sp" />
</RelativeLayout>
<LinearLayout
android:id="@+id/lin_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginTop="10dp"
android:layout_toRightOf="@+id/client_initial_layout"
android:orientation="vertical">
<TextView
android:id="@+id/Client_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Guest"
android:textColor="#bcc3c4"
android:textSize="16sp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="3dp">
<TextView
android:id="@+id/text_contacted"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Contacted:-"
android:textColor="#797878"
android:textSize="10sp" />
<TextView
android:id="@+id/contacted"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text=" Username"
android:textColor="#797878"
android:textSize="10sp" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="3dp">
<TextView
android:id="@+id/text_product"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Product:-"
android:textColor="#797878"
android:textSize="10sp" />
<TextView
android:id="@+id/product"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text=" Product Name"
android:textColor="#797878"
android:textSize="10sp" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="3dp">
<TextView
android:id="@+id/text_contact_type"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Contact Type:-"
android:textColor="#797878"
android:textSize="10sp" />
<TextView
android:id="@+id/contact_type"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text=" Dispute"
android:textColor="#797878"
android:textSize="10sp" />
</LinearLayout>
<LinearLayout
android:id="@+id/lin_created"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:layout_marginTop="10dp">
<TextView
android:id="@+id/text_Created_date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Created Date:-"
android:textColor="#bcc3c4"
android:textSize="8sp"
android:textStyle="bold" />
<TextView
android:id="@+id/request_date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" 2015-09-11-19:22:08"
android:textColor="#bcc3c4"
android:textSize="8sp"
android:textStyle="bold" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end"
android:layout_marginBottom="10dp"
android:layout_marginLeft="20dp"
android:layout_marginTop="3dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Request Date:-"
android:textColor="#bcc3c4"
android:textSize="8sp"
android:textStyle="bold" />
<TextView
android:id="@+id/create_date"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" 2015-09-11"
android:textColor="#bcc3c4"
android:textSize="8sp"
android:textStyle="bold" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
</RelativeLayout>
センターに関連するすべての配置を試しましたが、効果がありません。しかし、xml エディターに表示されるプレビューは完璧で、中央にありますが、アプリを実行したときではなく、Java コードからのマージンも設定していません。