摘要:
线性布局 layout_width 宽度 wrap_content 内容有多少,宽度有多少 match_parent 匹配父空间 layout_height 高度 layout_weight 权重 orientation 布局(线性布局独有) vertical 垂直 horizontal 水平 ba 阅读全文
摘要:
android.content.ActivityNotFoundException: Unable to find explicit activity class {com.x210.communication/com.x210.communication.ShowActivity};have yo 阅读全文
摘要:
可能原因一:简单来说就是id这一列的名字写错了,找不到id这一列 仔细检查一下你的delete中的sql语句id有没有写错,还有可能是你一开始建立表的时候用的可能和现在的不一样,项目用的还是曾经的表,比如我一开始建表用的是_id,然后后来改代码次数太多,吧建表的语句也给改了,但是项目用的仍然是一开始 阅读全文
摘要:
条件渲染 wx:if 在框架中,使用 wx:if="" 来判断是否需要渲染该代码块: <view wx:if="{{condition}}"> True </view> 也可以用 wx:elif 和 wx:else 来添加一个 else 块: <view wx:if="{{length > 5}}" 阅读全文
摘要:
CSS:页面美化和布局控制 1 概念:Cascading Style Sheets 层叠样式表 2 好处: 1 功能强大 2 将内容的展示和样式控制分离 * 降低耦合度。解耦 * 让分工协作更容易 * 提高开发的效率 3 CSS的使用:CSS与html结合方式 1 内联样式 在标签内使用style属 阅读全文
摘要:
java.lang.RuntimeException: Unable to start activity ComponentInfo:android.content.res.Resources$NotFoundException: String resource ID #0xffffff85 原因: 阅读全文
摘要:
package ExceptSourceCode; public class EmbededFinally { public static void main(String args[]) { int result; try { System.out.println("in Level 1"); t 阅读全文
摘要:
import java.util.Scanner;public class 阶段1 {public static int SIZE(int size)//定制数量 { int q; q=size; return q; } public static int SecondOperation(Strin 阅读全文
摘要:
public class Beersong { public static void main (String[] args){ int beernum =99; String word = "bottle"; while (beernum>0){ if (beernum == 1){ word = 阅读全文
摘要:
package test; import java.util.*; public class text2 { public static void main(String[] args) { int st[][][]=new int[101][101][4]; Scanner sc=new Scan 阅读全文