2015-10-08 3 views
1

У меня есть настраиваемый вид в относительной компоновке.Выровнять пользовательский вид в относительной компоновке динамически не работает android

Я могу привести его в в центре/влево/вправо через XML, но не

программно

.

заказ Посмотреть

public class HotspotView extends RelativeLayout { 

    public HotspotView(Context context) { 
     super(context); 
     init(context); 
    } 

    public HotspotView(Context context, AttributeSet attrs) { 
     super(context, attrs); 
     init(context); 
    } 

    public HotspotView(Context context, AttributeSet attrs, int defStyle) { 
     super(context, attrs, defStyle); 
     init(context); 
    } 

    private void init(Context context) { 
     LayoutInflater layoutInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); 
     View view = layoutInflater.inflate(R.layout.hotspot_view, this); 
    } 
} 

Пользовательский вид XML

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"> 

    <ImageView 
     android:id="@+id/hotspot_imageview" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:background="@drawable/tohome" 

     /> 


</RelativeLayout> 

активность XML

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:id="@+id/rl" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:background="@android:color/black" 

    > 


    <VideoView 
     android:id="@+id/vv_frame" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:layout_centerInParent="true" 
     android:clickable="true" 
     android:onClick="onclick" 
     android:visibility="gone" /> 

    <ImageView 
     android:id="@+id/iv_frame" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:adjustViewBounds="true" 
     android:contentDescription="@string/content_description" 
     android:onClick="onclick" 
     android:scaleType="fitXY" 
     android:visibility="gone" 

     /> 

    <ImageView 
     android:id="@+id/lv_frame" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:layout_centerInParent="true" 
     android:contentDescription="@string/content_description" 
     android:onClick="onclick" 
     android:visibility="gone" /> 

    < 


    <android.gesture.GestureOverlayView 
     android:id="@+id/gesture_area" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:layout_weight="1.0" 
     android:alpha="1.0" 
     android:background="@android:color/transparent" 
     android:gestureColor="@android:color/white" 
     android:onClick="onclick" 
     android:visibility="visible" /> 







    <WebView 
     android:id="@+id/ticker_webview" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_alignParentBottom="true" 
     android:visibility="gone"></WebView> 

    <WebView 
     android:id="@+id/wv_frame" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:layout_centerInParent="true" 
     android:adjustViewBounds="true" 
     android:onClick="onclick" 
     android:scaleType="fitXY" 
     android:visibility="gone" 

     /> 

    <ProgressBar 
     android:id="@+id/webview_progressBar" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_centerInParent="true" 
     android:layout_gravity="center" 
     android:visibility="gone" /> 




     <com.devstring.imageframe.views.HotspotView 
      android:id="@+id/hotspot" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 

      android:clickable="true" 
      android:visibility="visible" /> 

</RelativeLayout> 

Код:

RelativeLayout.LayoutParams lp = new 

RelativeLayout.LayoutParams(
         RelativeLayout.LayoutParams.MATCH_PARENT, 
         RelativeLayout.LayoutParams.MATCH_PARENT); 
     lp.addRule(RelativeLayout.ALIGN_PARENT_LEFT); 
     ImageFrameActivity.hotspotView.setLayoutParams(lp); 
      ImageFrameActivity.hotspotView.setVisibility(View.VISIBLE); 

Я прошел через различные подобные вопросы, но я не в состоянии решить эту проблему.

Благодаря

ответ

1

попробовать это:

RelativeLayout.LayoutParams lp = 
(RelativeLayout.LayoutParams) ImageFrameActivity.hotspotView.getLayoutParams(); 
lp.addRule(RelativeLayout.ALIGN_PARENT_RIGHT); 
ImageFrameActivity.hotspotView.setLayoutParams(lp); 
+0

Спасибо это сработало! –

0

Попробуйте использовать lp.gravity = Gravity.LEFT;

+0

это не работает –

 Смежные вопросы

  • Нет связанных вопросов^_^