今天捣腾ImageView的时候发现padding属性竟然不起作用,折腾一番后才知道原来跟我设置scaletype为centerCrop有关,要想两者同时作用,只需加上android:cropToPadding="true"即可。如下所示:
<ImageView
android:layout_width="match_parent"
...
分类:
移动开发 时间:
2014-09-11 17:22:42
阅读次数:
305
[java] view plaincopyprint? <?xml?version="1.0"?encoding="utf-8"?>
<LinearLayout?xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width=?...
分类:
移动开发 时间:
2014-09-10 18:01:31
阅读次数:
249
首先需要一个Layout界面:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="ver...
分类:
移动开发 时间:
2014-09-10 17:50:10
阅读次数:
197
activity_main.xml<?xmlversion="1.0"encoding="utf-8"?><TableLayoutxmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent"><TableLayout><TextViewandroid:id="@+id/te..
分类:
移动开发 时间:
2014-09-09 13:48:19
阅读次数:
327
android中布局一般都有两种方式,一种xml声明,另外一种则是程序声明:
xml:
xml version="1.0" encoding="utf-8"?>
LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
...
分类:
移动开发 时间:
2014-09-08 02:11:56
阅读次数:
270
今天在解决安卓应用兼容性问题,问题是由于使用LinearLayout的weight引起的,下面我使用一个Demo简述一下问题以及解决方法。 样例1:使用weight的是布局文件,包含TextView<LinearLayout
android:layout_width="0dip"
android:layout_height="wrap_content"
...
分类:
其他好文 时间:
2014-09-06 23:50:54
阅读次数:
447
LinearLayout和RelativeLayout共有属性: java代码中通过btn1关联次控件 android:id="@+id/btn1"控件宽度android:layout_width="80px"//"80dip"或"80dp"android:layout_width =“wrap_c...
分类:
其他好文 时间:
2014-09-04 16:25:09
阅读次数:
242
一、概述抽屉控件,官方已不建议用;但在某些需求下直接使用这个控件还是相当方便的。<SlidingDrawer
android:id="@+id/drawer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:handle="@+id/handle"
android:content="@+id/content"&g..
分类:
移动开发 时间:
2014-09-03 18:25:48
阅读次数:
349
先看看我们之前所写的代码
1) 添加权限:AndroidManifest.xml中必须使用了许可"android.permission.INTERNET"
2) 使用了一个WebView组件
android:id="@+id/wv"
android:layout_width="fill_parent"
android:layout_height="...
分类:
Web程序 时间:
2014-09-03 15:00:36
阅读次数:
302
本文将讲述在linearlayout线性布局中,如何实现布局中的比例控制,其中包含对控件中android:layout_width和android:layout_weight属性的设置和理解。
分类:
移动开发 时间:
2014-08-31 02:45:20
阅读次数:
316