- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我制作了一个运行良好的应用程序,我还有一个带有滚动图片的 imageview。
我所做的只是添加一个按钮,然后当我运行它时应用程序将不会显示任何内容。只是一个普通的白色空白屏幕。我觉得这可能是一个故意的问题,但它们似乎没有错误。
就像我说的那样, Intent 运行良好。我检查了我的每一位代码,但似乎没有加载我的主要 Activity 布局。(xml)
不幸的是我没有保留备份。 LogCat 也什么都不说
`
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:text="Welcome to iStyle Events"
android:textColor="#FF9500"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/textView1"
android:layout_centerHorizontal="true"
android:text=""
android:textAppearance="?android:attr/textAppearanceSmall" />
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true" >
<Button
android:id="@+id/Gallery"
style="?android:attr/buttonStyleSmall"
android:layout_width="88dp"
android:layout_height="wrap_content"
android:textColor="#FF9500"
android:text="@string/Gallery" />
</LinearLayout>
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/textView2"
android:layout_centerHorizontal="true"
android:textColor="#fafad2"
android:text="hello"
android:textAppearance="?android:attr/textAppearanceSmall" />
<Button
android:id="@+id/Services"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/textView1"
android:layout_alignTop="@+id/linearLayout1"
android:layout_toLeftOf="@+id/linearLayout1"
android:textColor="#FF9500"
android:text="@string/Services" />
<Button
android:id="@+id/Contact"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignRight="@+id/textView1"
android:layout_alignTop="@+id/linearLayout1"
android:layout_toRightOf="@+id/linearLayout1"
android:textColor="#FF9500"
android:text="@string/Contact" />
`
.java =
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class Main extends Activity {
Button service;
Button gallery;
Button contact;
protected void onCreate1(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
service = (Button)findViewById(R.id.Services);
service.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v)
{
Intent intent = new Intent (Main.this, servicesActivity.class);
startActivity(intent);
}
});
gallery = (Button)findViewById(R.id.Gallery);
gallery.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v)
{
Intent intent1 = new Intent (Main.this, galleryActivity.class);
startActivity(intent1);
}
});
contact = (Button)findViewById(R.id.Contact);
contact.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v)
{
Intent intent2 = new Intent (Main.this, contactActivity.class);
startActivity(intent2);
}
});
}
}
list 文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.istyleevents"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="1"
android:targetSdkVersion="16" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.istyleevents.Main"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="galleryActivity"></activity>
<activity android:name="servicesActivity"></activity>
<activity android:name="contactActivity"></activity>
</application>
</manifest>
最佳答案
您在 onCreate 方法后面有一个 1。这只是一个复制粘贴错误吗?如果我删除它,就会显示你的布局
关于android - 我的应用程序不会显示任何内容?只是一个空白的白页?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17031613/
My phpMyAdmin page更改 MySQL root 密码后返回空白/白页 using this suggestion .我还使用 service apache2 restart 和 ser
尝试提交包含以下条目的联系表单时出现白屏:- 姓名- 电子邮件- 主题- 消息 我正在尝试通过我的网站接收电子邮件。我检查了所有变量名称等,似乎一切都是正确的。我是 PHP 的新手,所以我对接下来要尝
我想从 here 获取 html 。该链接在我的浏览器中工作正常。但如果我在设置中禁用 cookie,此页面将无休止地重新加载。 我的基本代码返回空白页 options = Options() opt
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and th
在https://indianvisaonline.gov.in/visa/index.html上填写一些表格并上传照片后,我得到了一个白页。 。我使用 JavaFX 的 WebView 来加载网站。
通过 composer 安装新版本的 symfony 之后 php composer create-project symfony/framework-standard-edition myProje
我正在尝试将 WordPress 网站从我的本地服务器移动到在线服务器。 问题是,在迁移之后,如果我尝试打开管理页面 (wp-admin),我只会获得一个白页,如您在此处所见:http://score
我想加载一个远程 url 页面,但它总是在大约 10 秒后开始加载代码如下 - (UIWebView *)webView { if(!_webView) { _webView
使用 google docs 在 webview 中打开 pdf 一次又一次地打开相同的 pdf 或不同的 pdf。 有时它会在 android 中显示空白/白色页面,直到我们再次刷新网页 1 或 2
首先抱歉我的英语不好。 当我尝试查看 HomeController 的 url / 和 Index 操作时,我得到的只是一个白页。 我从空的 ASP.NET 5 Web 应用程序模板开始,然后添加 C
简单的 android 应用程序,带有 WebView,当我打开 PayPal 网站的任何 url 时,即: mWebView.loadUrl("https://www.paypal.com/ua/c
各位程序员大家好, 所以我目前被分配使用 homestead 和 Vagrant 安装和配置 Laravel 5,目前我遇到了各种问题.. 现在我在 gitbash 中遇到了以下错误。在出现此错误之前
我是一名优秀的程序员,十分优秀!