1

当我运行“vmc info”时,我收到一个错误:错误(JSON 404):

cloud@rest:~/cloudfoundry/.deployments/rest/log$ vmc info -t

>>>
REQUEST: get http://api.mwt.needforspeed.info/info
RESPONSE_HEADERS:
    content_length : 239
    date : Thu, 11 Oct 2012 07:32:17 GMT
    content_type : text/html; charset=iso-8859-1
    content_encoding : gzip
    server : Apache/2.2.22 (Ubuntu)
    vary : Accept-Encoding
RESPONSE: [404]
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /info was not found on this server.</p>
<hr>
<address>Apache/2.2.22 (Ubuntu) Server at api.mwt.needforspeed.info Port 80</address>
</body></html>
<<<
Error (JSON 404): <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /info was not found on this server.</p>
<hr>
<address>Apache/2.2.22 (Ubuntu) Server at api.mwt.needforspeed.info Port 80</address>
</body></html>

Android:RealViewSwitcher 不垂直滚动

我使用 RealViewSwitcher 滑动视图,没关系,我的问题与类似。我将尝试通过这张照片解释一下我的情况设想

listview <------> 详细视图 ------> 滑动视图(水平)。详细视图仅显示部分,如果尝试滚动则没有任何反应。

详细布局(无垂直滚动)

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

     <TextView
        android:id="@+id/textView1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:textColorHint="#FF0000"
        android:textSize="12dp"
        android:textStyle="bold"
        android:typeface="sans" />

         <ImageView
            android:id="@+id/imageView1"
            android:layout_width="150dip"
            android:layout_height="120dip"
            android:scaleType="centerCrop"
            android:src="@drawable/stub"/>   
   <TextView
        android:id="@+id/textView2"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:padding="20dip"
        android:textColor="#999999"
        android:textColorLink="#ff0000"
        android:textSize="20dip"
        android:textStyle="normal"
        android:typeface="sans" />
</LinearLayout>

使用 RealViewSwitcher 进行布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="fill_parent"
    android:layout_width="fill_parent"
    android:orientation="vertical">

    <it.application.ppn.lib.RealViewSwitcher
        android:id="@+id/horizontal_pager"
        android:layout_width="fill_parent"
        android:layout_height="0px"
        android:layout_weight="1">

    </it.application.ppn.lib.RealViewSwitcher>

</LinearLayout>
4

1 回答 1

0

看起来您在端口 80 上运行了 apache 网络服务器。

如果您将 cloudfoundry 安装到普通的 Ubuntu,它将安装 nginx 作为网络服务器。所以首先停止你的apache,通常是:

sudo /etc/init.d/apache2 stop

然后检查您的 nginx(cloudfoundry 术语中的路由器)是否正在运行:

source ~/.cloudfoundry_deployment_local
~/cloudfoundry/vcap/dev_setup/bin/vcap_dev -n rest status router

请注意,您需要额外的-n rest参数,因为您似乎没有使用默认开发名称:dev_box

于 2012-11-16T22:19:07.393 回答