一个布局中包含另一个布局
1.在layout下定义activity_other.xml布局
2.代码中的包含如下:
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_par...
分类:
移动开发 时间:
2014-09-30 11:45:39
阅读次数:
184
1、编写界面<WebViewandroid:id="@+id/webview"android:layout_width="match_parent"android:layout_height="match_parent"/>2、申请权限<uses-permissionandroid:name="android.permission.INTERNET"/>3、MainActivity.javapackagecom.malakana.webview;importand..
分类:
移动开发 时间:
2014-09-26 01:45:48
阅读次数:
431
1、XML文件中添加ListView
(1)XML布局文件
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
...
分类:
移动开发 时间:
2014-09-25 00:27:37
阅读次数:
315
实现对一个主题评论并显示评论列表,首先想到的是需要使用ListView控件,
下面是layout下的xml布局文件:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_heig...
分类:
微信 时间:
2014-09-23 18:39:55
阅读次数:
408
最近在搞 andorid 的时候 会很纠结 match_parent和fill_parent 有什么
区别?
match_parent和fill_parent
都是填充 父控件,android2.2(API8)之前都是用 fill_parent!
API8 之后的新版本都是用 match_parent;
wrap_content 大家都知道 就是 ...
分类:
其他好文 时间:
2014-09-19 12:03:45
阅读次数:
168
最近在项目中用到动态添加图片,然后换行的实现。刚开始想用GridView,但是没用,什么原因到是忘了。下面我记录一下我的实现方式。
看代码xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
androi...
分类:
移动开发 时间:
2014-09-16 15:57:50
阅读次数:
345
1,Android FrameLayout的android:foreground属性可以设置单击时的前景色
<FrameLayout
android:id="@+id/poster_contanier"
android:layout_width="match_parent"
android:layout_height="match_pare...
分类:
移动开发 时间:
2014-09-16 12:42:40
阅读次数:
243
竖向ScrollView中嵌套横向ScrollView,横向ScrollView嵌套ListView。具体代码见附件。<ScrollViewandroid:layout_width="match_parent"android:layout_height="match_parent"><RelativeLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content..
分类:
其他好文 时间:
2014-09-13 03:02:25
阅读次数:
358
今天捣腾ImageView的时候发现padding属性竟然不起作用,折腾一番后才知道原来跟我设置scaletype为centerCrop有关,要想两者同时作用,只需加上android:cropToPadding="true"即可。如下所示:
<ImageView
android:layout_width="match_parent"
...
分类:
移动开发 时间:
2014-09-11 17:22:42
阅读次数:
305
首先需要一个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