垂直线性布局中的不同大小按钮

时间:2013-09-26 11:27:47

标签: android button layout size

我正在尝试使用按钮制作垂直菜单。所以我做了一个垂直线性布局,我以编程方式添加我的按钮。问题是所有按钮都是相同的大小(文本最长的按钮的大小)。我想让它们具有不同的尺寸和中心。我该怎么做?

我的按钮布局:

    <Button xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/big_button"
        style="@style/button_style" >
    </Button>

我的活动布局:

    <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">

        <ImageView
            android:id="@+id/appLogo"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:src="@drawable/logo" />

        <ScrollView 
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_below="@id/appLogo">

            <LinearLayout 
                android:id="@+id/startLayout"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center_horizontal"
                android:orientation="vertical">

           </LinearLayout>
        </ScrollView>
    </RelativeLayout>

按钮是以编程方式制作的:

    Button cityButton = (Button) getLayoutInflater().inflate(R.layout.city_button, null);
    cityButton.setText(title);
    cityButton.setId(id);

按钮样式:

<style name="button_style" >
    <item name="android:layout_width" >wrap_content</item>
    <item name="android:layout_height" >wrap_content</item>
    <item name="android:textColor" >@drawable/button_text_color</item>
    <item name="android:gravity" >center</item>
    <item name="android:textSize" >30dp</item>
</style>

0 个答案:

没有答案