安卓开发怎么让一个布局当button,安卓中常见的五种布局
android项目中如何才能让一个button在屏幕的位置任意摆放 我感觉只能摆放在左上角或者顶部
首先使用相对布局:RelativeLayout
然后设定margin
android:layout_marginLeft=
和android:layout_marginTop
这样可以指定它放在任何位置
如何自定义android Button样式
1)自定义button样式
一、采用图片方式
首先新建Android XML文件,类型选Drawable,根结点选selector,自定义一个文件名。
随后,开发环境自动在新建的文件里加了selector结点,我们只需要在selector结点里写上三种状态时显示的背景图片(按下、获取焦点,正常)即可。具体如下:
?xml version="1.0" encoding="utf-8"?
selector xmlns:android=""
item android:state_pressed="true" android:drawable="@drawable/play_press" ;/
item android:state_focused="true" android:drawable="@drawable/play_press" ;/
item android:drawable="@drawable/play" ;/
/selector
注:这里获取焦点跟点击时显示的是同一张图片,必须严格照上面的顺序写,不可倒。
最后,只要在布局时写Button控件时应用到Button的Background属性即可,如:
Button android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/button_style"
/Button
二、采用自定义方式
在源代码中,只需要修改button_style文件,同样三种状态分开定义:
?xml version="1.0" encoding="utf-8"?
selector xmlns:android=""
item android:state_pressed="true"
shape
gradient android:startColor="#0d76e1"
android:endColor="#0d76e1"
android:angle="270" /
stroke android:width="1dip" android:color="#f403c9" /
corners android:radius="2dp" /
padding android:left="10dp" android:top="10dp"
android:right="10dp" android:bottom="10dp" /
/shape
/item
item android:state_focused="true"
shape
gradient android:startColor="#ffc2b7" android:endColor="#ffc2b7" android:angle="270" /
stroke android:width="1dip" android:color="#f403c9" /
corners android:radius="2dp" /
padding android:left="10dp" android:top="10dp"
android:right="10dp" android:bottom="10dp" /
/shape
/item
item
shape
gradient android:startColor="#000000" android:endColor="#ffffff"
android:angle="180" /
stroke android:width="1dip" android:color="#f403c9" /
corners android:radius="5dip" /
padding android:left="10dp" android:top="10dp"
android:right="10dp" android:bottom="10dp" /
/shape
/item
/selector
注:代码中的各属性含义为:
gradient 主体渐变
startColor开始颜色,endColor结束颜色 ,
angle开始渐变的角度(值只能为90的倍数,0时为左到右渐变,90时为下到上渐变,依次逆时针类推)
stroke 边框 width 边框宽度,color 边框颜色
corners 圆角 radius 半径,0为直角
padding text值的相对位置
2)自定义style样式
一、在style.xml中自定义样式
以自定义text文本大小和颜色为例,自定义一个名称为"testStyle"的style代码如下:
resources xmlns:android=""
style name="AppBaseTheme" parent="android:Theme.Light"
/style
style name="AppTheme" parent="AppBaseTheme"
/style
style name="testStyle"
item name="android:textSize"30px/item
item name="android:textColor"#1110CC/item
item name="android:width"150dip/item
item name="android:height"150dip/item
/style
/resources
二、在layout文件中引用自定义的"testStyle"的style样式
RelativeLayout xmlns:android=""
xmlns:tools=""
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
TextView
style="@style/testStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="@string/hello_world" /
/RelativeLayout
android 怎么自定义Button
1.首先你写的view要继承view 在自定义View的类中覆盖父类的构造(注意是2个参数的)
public class MyView2 extends View{
public MyView2(Context context,AttributeSet att)
{super(context,att);
}
public void onDraw(Canvas c)
{ // 这里绘制你要的内容
}
}
2.定义布局文件
?xml version="1.0" encoding="utf-8"?
FrameLayout xmlns:android=""
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
com.lovose.MyView2 // 这里引用你的view要完整的路径名哦!
android:id="@+id/View01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/com.lovose.MyView2
AbsoluteLayout android:id="@+id/AbsoluteLayout01" android:layout_width="wrap_content" android:layout_height="wrap_content"
Button android:text="Button01" android:id="@+id/Button01" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_x="100dip" android:layout_y="100dip"/Button
/AbsoluteLayout
/FrameLayout
//完事后你就可以任意定义UI的显示了
另外,站长团上有产品团购,便宜有保证
android中如何让布局中的button按钮在布局中靠右下角显示
1、把手机屏幕分成上下。上下两部分都采用Linearlayout方式布局
LinearLayout
????LinearLayout
??????上半部分
????/LinearyLayout
????LinearLayout
??????下半部分
????/LinearyLayout
/LinearLayout
2、下半部分LinearLayout高度固定,上半部分LinearyLayout设置layout_weight权重,占满剩余屏幕空间
LinearLayout
????LinearLayout?
???????android:layout_height="wrap_content"
???????android:llayout_weight="1"
??????//设置高度自适应,并且权重为1
????/LinearyLayout
????LinearLayout?android:layout_height="50px"
??????//下半部分设置高度固定
????/LinearyLayout
/LinearLayout
3、下半部分LinearLayout中添加按钮,设置android:gravity右对齐。
LinearLayout?android:layout_height="50px"
??????????android:gravity="right"
??????//下半部分设置高度固定
??????button?andtoid:text="右下角按钮"/?
????/LinearyLayout