从活动中的按钮更改片段视图寻呼机中的大小textview

时间:2015-10-07 09:25:42

标签: android android-fragments

在我的应用中,我有一项活动。 我的活动

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <RelativeLayout
        android:id="@+id/Rlayout_top"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:background="#ffffff"
        android:paddingBottom="5dp"
        android:paddingLeft="5dp"
        android:paddingRight="5dp"
        android:paddingTop="5dp" >
        <Button
            android:id="@+id/btnUp"
            android:layout_width="40dp"
            android:layout_height="40dp"
            android:layout_alignParentBottom="true"
            android:layout_marginRight="4dp"
            android:layout_toRightOf="@+id/layout_btn_back"
            android:background="@drawable/custom_btup" />

        <Button
            android:id="@+id/btnDown"
            android:layout_width="40dp"
            android:layout_height="40dp"
            android:layout_alignParentBottom="true"
            android:layout_toRightOf="@+id/btnUp"
            android:background="@drawable/custom_btdown" />
    </RelativeLayout>

    <android.support.v4.view.ViewPager
        android:id="@+id/view_pager"
        android:layout_width="match_parent"
        android:layout_height="fill_parent"
        android:layout_below="@+id/Rlayout_top" >
    </android.support.v4.view.ViewPager>

</RelativeLayout>
在我的片段视图中,Pager我有一个滚动视图,在滚动视图中我有一些图片和文字。 现在我想在活动中单击按钮时我可以在滚动视图中更改textview的大小 我是怎么做的?我一直在寻找解决方案,并发现一些评论说应该使用界面,但我仍然没有得到它 请帮我! 谢谢所有

1 个答案:

答案 0 :(得分:0)

textView.getLayoutParams.Height = pixels;