程式碼設定RelativeLayout相對位置設定

丿灬安之若死發表於2017-11-17

在XML中,RelativeLayout相對位置使用android:layout_toRightOf="@+id/view0"來設定;程式碼中:

ImageView image = new ImageView(context);
LayoutParams lp = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
lp.addRule(RelativeLayout.RIGHT_OF, text.getId());
rl.addView(image, lp);

需要注意,相對的控制元件如果是new出來的TextView text = new TextView(context);,需要呼叫setId()設定ID,text.setId(Integer.MAX_VALUE - 1000);,否則不生效。
2016-12-02發現了點問題
之前圖片相對在文字右邊,高度差不多,沒看出問題,今天換了個長圖片就發現高度不是居中了。
調了一下,貼一下正確程式碼

<RelativeLayout    
    android:layout_width="match_parent"    
    android:layout_height="90dp">    
    <TextView        
        android:id="@+id/ddd"        
        android:layout_width="wrap_content"        
        android:layout_height="wrap_content"        
        android:layout_centerInParent="true"        
        android:paddingRight="5dp"        
        android:text="測試"/>    
    <TextView        
        android:layout_width="wrap_content"        
        android:layout_height="wrap_content"        
        android:layout_toRightOf="@+id/ddd"        
        android:layout_centerInParent="true"        
        android:text="你\n好\n啊"/>
</RelativeLayout>
TextView text = new TextView(context);
text.setId(Integer.MAX_VALUE - 1000);
text.setTextSize(16);
text.setText("文字");
text.setPadding(0,0,3,0);
text.setTextColor(ContextCompat.getColorStateList(context,R.color.a));
LayoutParams params = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
params.addRule(RelativeLayout.CENTER_IN_PARENT);
addView(text, params);

ImageView imageView = new ImageView(context);
imageView.setImageDrawable(isUp ? drawableUp :drawableDown);
LayoutParams lp = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
lp.addRule(RelativeLayout.CENTER_IN_PARENT);
lp.addRule(RelativeLayout.RIGHT_OF , text.getId());
addView(imageView, lp);

因為是居中,所以不管是在XML還是在程式碼中,第一個控制元件一定要寫android:layout_centerInParent這個屬性,第二個可以android:layout_centerVertical="true"android:layout_centerInParent="true",也要寫上,否則無效。程式碼中第二個的addRule()方法,兩個記得要分開寫,剛開始寫一塊lp.addRule(RelativeLayout.CENTER_IN_PARENT|RelativeLayout.RIGHT_OF , text.getId());顯示出來很奇怪。效果如圖:


相關文章