现在常见的广告栏效果,自动切换广告,也可手动滑动切换。
我用ViewPager实现的,废话不多说,上代码:
1、布局文件 layout_ad_pager.xml
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width=...
分类:
移动开发 时间:
2015-01-15 16:03:05
阅读次数:
181
//activity_main.xml<LinearLayoutxmlns: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:orientation="vertical"
tools:contex..
分类:
移动开发 时间:
2015-01-14 18:17:07
阅读次数:
234
//activity_main.xml<LinearLayoutxmlns: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:orientation="vertical"
tools:contex..
分类:
移动开发 时间:
2015-01-14 18:12:58
阅读次数:
242
//activity_main.xml<LinearLayoutxmlns: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"
tools:context="com.vincentlin.checkbox.Main..
分类:
移动开发 时间:
2015-01-14 18:06:40
阅读次数:
183
(1)布局文件
<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...
分类:
移动开发 时间:
2015-01-14 15:33:34
阅读次数:
316
一、细说layout_weight 目前最为推荐的Android多屏幕自适应解决方案。 该属性的作用是决定控件在其父布局中的显示权重,一般用于线性布局中。其值越小,则对应的layout_width或layout_height的优先级就越高,一般横向布局中,决定的是layout_width的优先级.....
分类:
移动开发 时间:
2015-01-14 14:13:57
阅读次数:
192
(1)布局文件:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_heigh...
分类:
移动开发 时间:
2015-01-14 12:46:33
阅读次数:
219
在RelativeLayout中平分两个控件本文地址:http://blog.csdn.net/caroline_wendyRelativeLayout在平分时,需要使用一个基准,就是在中间放置一个参考,一个在左面,一个在右面;其中左右的宽度设置为android:layout_width=“0dp",根据内容自动填充;如:<RelativeLayout
xmlns:android="htt...
分类:
移动开发 时间:
2015-01-14 08:30:07
阅读次数:
228
一、在XML中
LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
>
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent">
android:layout_h...
分类:
移动开发 时间:
2015-01-12 19:18:21
阅读次数:
154
3.2.5表单布局(TableLayout)TableLayout,即表单布局,以行和列的形式管理控件。每行为一个TableRow对象,也可以为一个View对象。当为View对象时,该对象将横跨该行所有列。同样的,我们也以一个简单的例子来加以说明,看完例子之后相信大家对TableLayout的应用会有一个比较全面的了解。 android:layout_width="fill_p...
分类:
其他好文 时间:
2015-01-12 10:54:03
阅读次数:
211