当前位置: 编程技术>移动开发
本页文章导读:
▪透过资源文件名获得资源ID 通过资源文件名获得资源ID
int resID = getResources().getIdentifier("gallery_photo_"+String.valueOf(position), "drawable", "org.loveandroid.androidtest");int resID = getResources().getIdentifier("org.loveandroid.androidtest:drawable/gallery_p.........
▪ 美资源 好资源
好资源好资源好资源好资源好资源好资源好资源好资源好资源好资源好资源$("input[type=button]","#content"+2).click(function(){ alert($(this).val());})$(document).ready(function(){ $("#bookmarktag a").click(fun.........
▪ 增多滚动布局 增加滚动布局
文章转自:http://www.devdiv.com/thread-50143-1-1.html<?xml version="1.0" encoding="UTF-8"?> <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_h.........
[1]透过资源文件名获得资源ID
来源: 互联网 发布时间: 2014-02-18
通过资源文件名获得资源ID
int resID = getResources().getIdentifier("gallery_photo_"+String.valueOf(position), "drawable", "org.loveandroid.androidtest");
int resID = getResources().getIdentifier("org.loveandroid.androidtest:drawable/gallery_photo_1",null,null);
[2] 美资源
来源: 互联网 发布时间: 2014-02-18
好资源
好资源好资源好资源好资源好资源好资源好资源好资源好资源好资源好资源$("input[type=button]","#content"+2).click(function(){
alert($(this).val());
})
$(document).ready(function(){
$("#bookmarktag a").click(function(){
//点击相关标签,获取相关标签名称
var click_text = $(this).text();
//遍历左边导航
$("#content li").each(function(i){
var left_text = $(this).children("a").text();
//如果点击的标签和遍历导航标签相同
if(click_text==left_text){
//则将遍历到的导航添加被选中样式
//然后获取被遍历的id,根据id重新加载右边区域
var id = $(this).children("a").attr("id");
}
});
});
});
好资源好资源好资源好资源好资源好资源好资源好资源好资源好资源好资源$("input[type=button]","#content"+2).click(function(){
alert($(this).val());
})
$(document).ready(function(){
$("#bookmarktag a").click(function(){
//点击相关标签,获取相关标签名称
var click_text = $(this).text();
//遍历左边导航
$("#content li").each(function(i){
var left_text = $(this).children("a").text();
//如果点击的标签和遍历导航标签相同
if(click_text==left_text){
//则将遍历到的导航添加被选中样式
//然后获取被遍历的id,根据id重新加载右边区域
var id = $(this).children("a").attr("id");
}
});
});
});
[3] 增多滚动布局
来源: 互联网 发布时间: 2014-02-18
增加滚动布局
文章转自:http://www.devdiv.com/thread-50143-1-1.html
<?xml version="1.0" encoding="UTF-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<TableLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:stretchColumns="1">
<TableRow>
<TextView
android:text="Country City Game(aka CCG) is an acdemic work of MTA students enjoy the game"
android:textSize="24.5sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"></TextView>
</TableRow>
</TableLayout>
</ScrollView>
文章转自:http://www.devdiv.com/thread-50143-1-1.html
<?xml version="1.0" encoding="UTF-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<TableLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:stretchColumns="1">
<TableRow>
<TextView
android:text="Country City Game(aka CCG) is an acdemic work of MTA students enjoy the game"
android:textSize="24.5sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"></TextView>
</TableRow>
</TableLayout>
</ScrollView>
最新技术文章: