http://www.aichengxu.com/view/31025 1、如果LinearLayout中使用Android:layout_marginRight不起作用,通过测试原来在android2.x中,如果一个控件中有android:layout_gravity属性,就会出现android: ...
分类:
移动开发 时间:
2017-07-05 14:20:26
阅读次数:
238
1、主页面布局文件 activity_main.xml(仅仅有2个button按钮) <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/andr ...
分类:
其他好文 时间:
2017-07-04 21:40:07
阅读次数:
264
public class MainActivity extends Activity { ScrollView scrollView; Button button; LinearLayout layout; @Override protected void onCreate(Bundle saved ...
分类:
移动开发 时间:
2017-07-04 20:04:59
阅读次数:
193
首先,在布局文件 activity_main.xml中注冊一个RadioGroup,并为RadioGroup设置监听,图中两个RadioButton为一个RadioGroup。 activity_main.xml <LinearLayout xmlns:android="http://schemas ...
分类:
移动开发 时间:
2017-07-04 13:23:21
阅读次数:
230
一、线性布局(LinearLayout) 线性布局可以让布局中的组件一个接着一个的连在一起水平对齐(orientation="vertical")或者垂直对齐(orientation="horizontal"),写游戏界面时会限制动作,所以不推荐游戏界面中使用 特点:线性布局不会主动换行,当几个组件 ...
分类:
其他好文 时间:
2017-07-02 23:17:26
阅读次数:
198
1.用Enum代替整数集 //不合理的定义类型 LinearLayout one = (LinearLayout) findViewById(R.id.linearlayout_test_1); one.setOrientation(2012); //使用emun来定义 public class L ...
分类:
编程语言 时间:
2017-07-01 19:21:42
阅读次数:
200
功能简单,实现并不难,对于初学者可以总和了解初级控件的基本使用。 用到的知识点如下: 线性布局 LinearLayout:整体界面是从上往下的,因此需要垂直方向的linearlayout;下面每行四个按钮,需要水平的linearlayout。 滚动视图 ScrollView :虽然界面不宽也不高,以 ...
分类:
移动开发 时间:
2017-07-01 17:25:23
阅读次数:
240
面试题:为一个充满整个屏幕的LinearLayout布局指定背景图。能否够让背景图不充满屏幕?请用代码描写叙述实现过程。 解决此题。能够使用嵌入(Inset)图像资源来指定图像,然后像使用普通图像资源一样使用嵌入图像资源。 语法例如以下: <?xml version="1.0" encoding=" ...
分类:
移动开发 时间:
2017-06-28 18:56:56
阅读次数:
164
android里有很多用途相似但效果截然不同的属性,如LinearLayout有两个非常相似的属性:android:gravity与android:layout_gravity。他们的区别在于:android:gravity用于设置View组件的对齐方式,而android:layout_gravit ...
分类:
移动开发 时间:
2017-06-25 18:31:17
阅读次数:
161
效果图: XML 文件: 创建一个点击button并加入点击方法: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/too ...
分类:
移动开发 时间:
2017-06-25 14:54:42
阅读次数:
143