我正在尝试这样做:
我尝试制作自定义方形按钮:
public class SquareButton extends Button {
public SquareButton(Context context, AttributeSet attrs) {
super(context, attrs);
// TODO Auto-generated constructor stub
}
public SquareButton(Context context) {
super(context);
}
@Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
int height = getMeasuredHeight();
setMeasuredDimension(height, height);
}
}
并在图像下使用图标和文字,但没有成功。按钮的背景是具有灰色笔触和白色背景颜色的形状。还有一个图标和字符串文本。
<LinearLayout 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"
android:background="#f5f5f5"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainMenuActivity" >
<TableLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center" >
<TableRow
android:id="@+id/tableRow1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" >
<views.SquareButton
android:id="@+id/SquareButton01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="2dp"
android:layout_weight="1"
android:background="@drawable/main_menu_button"
android:drawableTop="@drawable/statistics_icon"
android:gravity="center_horizontal"
android:text="Button"
android:textAlignment="center" />
<views.SquareButton
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="2dp"
android:layout_weight="1"
android:background="@drawable/main_menu_button"
android:drawableTop="@drawable/statistics_icon"
android:gravity="center_horizontal"
android:text="Button"
android:textAlignment="center" />
</TableRow>
<TableRow
android:id="@+id/tableRow2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" >
<views.SquareButton
android:id="@+id/SquareButton03"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="2dp"
android:layout_weight="1"
android:background="@drawable/main_menu_button"
android:drawableTop="@drawable/statistics_icon"
android:gravity="center_horizontal"
android:text="Button"
android:textAlignment="center" />
<views.SquareButton
android:id="@+id/SquareButton02"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="2dp"
android:layout_weight="1"
android:background="@drawable/main_menu_button"
android:drawableTop="@drawable/statistics_icon"
android:gravity="center_horizontal"
android:text="Button"
android:textAlignment="center" />
</TableRow>
<TableRow
android:id="@+id/tableRow3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" >
<views.SquareButton
android:id="@+id/SquareButton05"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="2dp"
android:layout_weight="1"
android:background="@drawable/main_menu_button"
android:drawableTop="@drawable/statistics_icon"
android:gravity="center_horizontal"
android:text="Button"
android:textAlignment="center" />
<views.SquareButton
android:id="@+id/SquareButton04"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="2dp"
android:layout_weight="1"
android:background="@drawable/main_menu_button"
android:drawableTop="@drawable/statistics_icon"
android:gravity="center_horizontal"
android:text="Button"
android:textAlignment="center" />
</TableRow>
</TableLayout>
</LinearLayout>
请帮忙。我已经“搜索”了很多主题,以找到解决此问题的方法,但尚未找到。 (((
答案 0 :(得分:1)
// try this way
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_horizontal"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:padding="5dp"
android:background="@android:color/holo_blue_dark">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@android:color/white"
android:text="Main menu"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginRight="50dp"
android:layout_marginLeft="50dp"
android:layout_marginTop="10dp"
android:gravity="center">
<Button
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:drawableTop="@drawable/ic_launcher"
android:drawablePadding="5dp"
android:text="Start learning"
android:textColor="@android:color/holo_blue_dark"
android:padding="5dp"
android:gravity="center"
android:background="@android:color/white"/>
<Button
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:drawableTop="@drawable/ic_launcher"
android:drawablePadding="5dp"
android:text="Add card"
android:layout_marginLeft="10dp"
android:textColor="@android:color/holo_blue_dark"
android:padding="5dp"
android:gravity="center"
android:background="@android:color/white"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginRight="50dp"
android:layout_marginLeft="50dp"
android:layout_marginTop="10dp"
android:gravity="center">
<Button
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:drawableTop="@drawable/ic_launcher"
android:drawablePadding="5dp"
android:text="Import words"
android:textColor="@android:color/holo_blue_dark"
android:padding="5dp"
android:gravity="center"
android:background="@android:color/white"/>
<Button
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:drawableTop="@drawable/ic_launcher"
android:drawablePadding="5dp"
android:text="Statistics"
android:layout_marginLeft="10dp"
android:textColor="@android:color/holo_blue_dark"
android:padding="5dp"
android:gravity="center"
android:background="@android:color/white"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginRight="50dp"
android:layout_marginLeft="50dp"
android:layout_marginTop="10dp"
android:gravity="center">
<Button
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:drawableTop="@drawable/ic_launcher"
android:drawablePadding="5dp"
android:text="Settings"
android:textColor="@android:color/holo_blue_dark"
android:padding="5dp"
android:gravity="center"
android:background="@android:color/white"/>
<Button
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:drawableTop="@drawable/ic_launcher"
android:drawablePadding="5dp"
android:text="Change User"
android:layout_marginLeft="10dp"
android:textColor="@android:color/holo_blue_dark"
android:padding="5dp"
android:gravity="center"
android:background="@android:color/white"/>
</LinearLayout>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@android:color/white"
android:layout_marginTop="20dp"
android:text="Hello username!"/>
</LinearLayout>
答案 1 :(得分:0)
我创建了一个与我正在进行的项目几乎完全相同的视图...我想出的解决方案是让所有图像都处于相同的固定尺寸。然后将图像包裹在TableLayout
中,以获得您在上面的模型中显示的所需结果。
答案 2 :(得分:0)
Android允许您替换任何控件的背景,只需使用
之类的代码声明一个形状<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid
android:color="#FFFFFF"/>
<stroke
android:width="3px"
android:color="#EDEDED"/>
</shape>
将按钮的背景设置为可绘制的,并设置为带灰色的白色边框按钮。您可能希望将该drawable包装到选择器中,因此当用户触摸按钮时会有另一个背景。
并使用此问题中的代码和解释来实现您想要的文本 - 图像效果 https://stackoverflow.com/a/4457063/528131
有关形状和绘图的更多信息: http://developer.android.com/guide/topics/resources/drawable-resource.html#Shape