单击Button后,布局正在调整大小

时间:2013-02-26 11:01:59

标签: android android-layout android-button android-scrollview

我创建了一个线性布局,其中我添加了水平滚动视图,我在运行时在水平滚动视图上添加了几个按钮。最初它看起来很好,但点击几个按钮,当我点击类别按钮类别容器调整大小,如图所示。

请帮助我为什么会发生这样的问题 感谢。

2 个答案:

答案 0 :(得分:-1)

这是布局文件

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/root_view_deals_screen"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:color/white" >

<RelativeLayout
    android:id="@+id/RelativeLayout_category_panel_main"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="@color/color_category_panel_bg"
    android:visibility="gone" >

    <ImageView
        android:id="@+id/ImageView_previous"
        android:layout_width="15dp"
        android:layout_height="20dp"
        android:layout_alignParentLeft="true"
        android:layout_centerVertical="true"
        android:src="@drawable/arrow_left"
        android:visibility="gone" />

    <HorizontalScrollView
        android:id="@+id/ScrollView_category_panel"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_toLeftOf="@+id/ImageView_next"
        android:layout_toRightOf="@+id/ImageView_previous"
        android:fadingEdgeLength="15dp"
        android:scrollbars="none" >

        <LinearLayout
            xmlns:android="http://schemas.android.com/apk/res/android"
            android:id="@+id/Layout_category_panel_container"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal" >
        </LinearLayout>
    </HorizontalScrollView>

    <ImageView
        android:id="@+id/ImageView_next"
        android:layout_width="15dp"
        android:layout_height="20dp"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:src="@drawable/arrow_right"
        android:visibility="gone" />
</RelativeLayout>

<com.techdeals.rest.ui.widget.IndexableListView
    android:id="@android:id/list"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_below="@+id/RelativeLayout_category_panel_main"
    android:divider="@drawable/list_divider"
    android:drawSelectorOnTop="false" />

<ImageView
    android:id="@+id/ImageView_list_divider"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_below="@android:id/list"
    android:scaleType="fitXY"
    android:src="@drawable/list_divider" />

答案 1 :(得分:-1)

Here is Button.xml file which i am inflating at runtime .

<?xml version="1.0" encoding="utf-8"?>
<Button xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/Button_category_panel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:paddingBottom="10dp"
android:paddingLeft="4dp"
android:paddingRight="4dp"
android:paddingTop="10dp"
android:textSize="16dp"
android:textStyle="bold" />