如何动态设置视图的宽度

时间:2019-01-16 18:06:03

标签: android android-studio layout

说我有两种看法,

回收站视图:

<android.support.v7.widget.RecyclerView
    android:layout_width="match_parent"
    android:layout_height="30dp"
    android:layout_below="@+id/dialog_movie_character"
    android:id="@+id/dialog_movie_horizontal_recycler_view"
    android:orientation="horizontal">

</android.support.v7.widget.RecyclerView>

和文本视图:

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBottom="@+id/dialog_movie_horizontal_recycler_view"
    android:layout_alignParentRight="true"
    android:textSize="18sp"
    android:textStyle="bold"
    android:text="Add"/>

如何将recyclerView的宽度设置为文本视图的match-parent-layout_width

是否可以在xml文件中进行操作?

0 个答案:

没有答案