Tag: 视图

MySQL:在FROM子句限制中使用子查询进行查看

在MySQL 5.0中,当试图在FROM子句中使用子查询创build视图时,为什么会出现以下错误? 错误1349(HY000):视图的SELECT包含FROM子句中的子查询 如果这是MySQL引擎的限制,那为什么他们没有实现这个function呢? 另外,这个限制有什么好的解决方法? 是否有任何解决方法适用于FROM子句中的任何子查询,还是有一些查询无法在FROM子句中使用子查询来表示? 一个示例查询(被埋在评论中): SELECT temp.UserName FROM (SELECT u1.name as UserName, COUNT(m1.UserFromId) as SentCount FROM Message m1, User u1 WHERE u1.uid = m1.UserFromId Group BY u1.name HAVING SentCount > 3 ) as temp

Android中的重叠视图

在Android中可能有重叠视图吗? 我想要在前面有一个透明PNG的ImageView和在后台的另一个视图。 编辑: 这是我现在所拥有的,问题是imageView中的图像不透明,应该透明的部分只是黑色。 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/gallerylayout" > <Gallery android:id="@+id/overview" android:layout_width="fill_parent" android:layout_height="wrap_content" /> <ImageView android:id="@+id/navigmaske" android:layout_width="fill_parent" android:layout_height="wrap_content" android:src="@drawable/navigmask" /> </RelativeLayout> 编辑: 我得到它的工作,这是从另一个程序员在团队的主题文件。 只是改变了这个 <item name="android:background">#FF000000</item> 对此 <item name="android:background">#00000000</item>

软件键盘调整Android上的背景图像

无论何时出现软件键盘,都会调整背景图像的大小。 请参阅下面的截图: 正如你所看到的,背景被挤压了。 任何人都可以了解为什么背景调整? 我的布局如下: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@drawable/page_bg" android:isScrollContainer="false" > <LinearLayout android:layout_height="wrap_content" android:orientation="horizontal" android:layout_width="fill_parent" > <EditText android:id="@+id/CatName" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1" android:inputType="textCapSentences" android:lines="1" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/save" android:onClick="saveCat" /> </LinearLayout> <ImageButton android:id="@+id/add_totalk" android:layout_height="wrap_content" android:layout_width="wrap_content" android:background="@null" android:src="@drawable/add_small" android:scaleType="center" android:onClick="createToTalk" android:layout_marginTop="5dp" /> </LinearLayout>

ScrollView内部不可滚动的ListView

我试图做这样的布局: 问题是我不希望ListViews是可滚动的。 我希望它们能够尽可能地高,并使整个屏幕可以滚动。 如果我将ListView的高度设置为wrap_content ,那不起作用。 使其工作的唯一方法是设置一个特定的高度 – 但我不知道在ListView中有多less项目。 我知道我不应该把ListView放在ScrollView中 ,但我不希望ListView是可滚动的,只是为了显示所有的项目。 也许有更好的方法来使它工作?

将常用查询存储为列?

使用PostgreSQL,我有一些看起来像这样的查询: SELECT <col 1>, <col 2> , (SELECT sum(<col x>) FROM <otherTable> WHERE <other table foreignkeyCol>=<this table keycol>) AS <col 3> FROM <tbl> 假设子select在每种情况下都是相同的,那么有没有办法将这个子select存储为表中的伪列? 从本质上讲,我希望能够从表A中select一个列,这是表B中与logging相关的特定列的总和。 这可能吗?

在Android上将视图转换为位图

我需要将视图转换为位图来预览我的视图并将其保存为图像。 我尝试使用下面的代码,但它创build一个空白图像。 我不明白我犯了什么错误。 View viewToBeConverted; Bitmap viewBitmap = Bitmap.createBitmap(viewToBeConverted.getWidth(), viewToBeConverted.getHeight(),Bitmap.Config.ARGB_8888); Canvas canvas = new Canvas(viewBitmap); viewToBeConverted.draw(canvas); savephoto(“f1”, viewBitmap); //// public void savephoto(String filename,Bitmap bit) { File newFile = new File(Environment.getExternalStorageDirectory() + Picture_Card/"+ filename+ ".PNG"); try { newFile.createNewFile(); try { FileOutputStream pdfFile = new FileOutputStream(newFile); Bitmap bm = bit; ByteArrayOutputStream baos = new ByteArrayOutputStream(); bm.compress(Bitmap.CompressFormat.PNG,100, baos); […]

我怎样才能dynamic设置在Android中的视图的位置?

如何通过代码改变视图的位置? 像改变它的X,Y的位置。 可能吗?

如何在Android中设置不透明度(Alpha)以供查看

我有一个button,如下所示: <Button android:text="Submit" android:id="@+id/Button01" android:layout_width="fill_parent" android:layout_height="wrap_content"> </Button> 在我的onCreate()事件中,我像这样调用Button01: setContentView(R.layout.main); View Button01 = this.findViewById(R.id.Button01); Button01.setOnClickListener(this); 在应用程序中有一个背景,我想在这个提交button上设置不透明度。 我如何设置这个视图的不透明度? 是我可以在java端设置,还是可以在main.xml文件中设置? 在java方面,我尝试了Button01.mutate().SetAlpha(100) ,但它给了我一个错误。

呈现基本的HTML视图?

我有一个基本的node.js应用程序,我试图使用Express框架来实现。 我有一个views文件夹,我有一个index.html文件。 但是在加载Web浏览器时收到以下错误。 错误:找不到模块'html' 以下是我的代码。 var express = require('express'); var app = express.createServer(); app.use(express.staticProvider(__dirname + '/public')); app.get('/', function(req, res) { res.render('index.html'); }); app.listen(8080, '127.0.0.1') 我在这里错过了什么?

setBackground vs setBackgroundDrawable(Android)

我想设置一个视图的可绘制背景。 有两种方法(据我所见): setBackground和setBackgroundDrawable 。 当我使用setBackground ,它说它已经被添加到API级别16中,但是我的项目的最小SDK版本是7.我认为它不会在16以下的任何东西上工作,对吗? 但是,当我使用setBackgroundDrawable,它说它已被弃用。 我该用什么?