我正在尝试制作带有按钮的垂直菜单。所以我做了一个垂直线性布局,我正在以编程方式添加我的按钮。问题是所有按钮的大小都相同(文本最长的按钮的大小)。我想让它们有不同的大小和居中。我怎么做?
我的按钮布局:
<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>