- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我选择 ImageButton 在 logcat 中获取下一个 Activty 时出现错误:
E/AndroidRuntime(820): FATAL EXCEPTION: main
E/AndroidRuntime(820): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.pengendalipagar/com.ta.pengendalipagar.MnUtama}: android.view.InflateException: Binary XML file line #52: Error inflating class <unknown>
E/AndroidRuntime(820): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2180)
E/AndroidRuntime(820): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2230)
E/AndroidRuntime(820): at android.app.ActivityThread.access$600(ActivityThread.java:141)
E/AndroidRuntime(820): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1234)
E/AndroidRuntime(820): at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime(820): at android.os.Looper.loop(Looper.java:137)
E/AndroidRuntime(820): at android.app.ActivityThread.main(ActivityThread.java:5041)
E/AndroidRuntime(820): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime(820): at java.lang.reflect.Method.invoke(Method.java:511)
E/AndroidRuntime(820): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)
E/AndroidRuntime(820): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560)
E/AndroidRuntime(820): at dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime(820): Caused by: android.view.InflateException: Binary XML file line #52: Error inflating class <unknown>
E/AndroidRuntime(820): at android.view.LayoutInflater.createView(LayoutInflater.java:613)
E/AndroidRuntime(820): at com.android.internal.policy.impl.PhoneLayoutInflater.onCreateView(PhoneLayoutInflater.java:56)
E/AndroidRuntime(820): at android.view.LayoutInflater.onCreateView(LayoutInflater.java:660)
E/AndroidRuntime(820): at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:685)
这是我的代码activity1 Activity_login.xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/cover" >
<TextView
android:id="@+id/txtPasscode"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/editText1"
android:layout_alignLeft="@+id/editText1"
android:layout_marginBottom="42dp"
android:text="@string/passcode"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textStyle="bold" />
<ImageButton
android:id="@+id/imbLogin"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/txtPasscode"
android:layout_marginLeft="26dp"
android:layout_marginTop="22dp"
android:src="@drawable/login"/>
<ImageButton
android:id="@+id/imbExit"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/imbLogin"
android:layout_marginLeft="18dp"
android:layout_toRightOf="@+id/imbLogin"
android:src="@drawable/exit"/>
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="28dp"
android:src="@drawable/logo" />
<EditText
android:id="@+id/editText1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/imbLogin"
android:layout_alignRight="@+id/imbExit"
android:layout_below="@+id/imageView1"
android:layout_marginTop="69dp"
android:ems="10"
android:inputType="numberPassword" >
<requestFocus />
</EditText>
</RelativeLayout>
这是我的 Activity1 LoginActivity.java 代码:
package com.ta.pengendalipagar;
import com.example.pengendalipagar.R;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.view.Menu;
import android.view.View;
import android.widget.EditText;
import android.widget.ImageButton;
public class LoginActivity extends Activity{
/*private ImageButton Login;
private ImageButton Exit;
private EditText Passcode;*/
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_login);
ImageButton Login = (ImageButton)findViewById(R.id.imbLogin);
ImageButton Exit = (ImageButton)findViewById(R.id.imbExit);
//EditText Passcode = (EditText)findViewById(R.id.txtPasscode);
Login.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
callLogin();
}
});
Exit.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
callKeluar();
}
});
}
public void callLogin(){
Intent myMenu = new Intent(this, MnUtama.class);
startActivity(myMenu);
}
public void callKeluar(){
finish();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.login, menu);
return true;
}
}
这是我的代码 Activity2 Activity_mnutama.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/cover">
<ImageButton
android:id="@+id/imbOpen"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="26dp"
android:layout_marginTop="141dp"
android:src="@drawable/open" />
<ImageButton
android:id="@+id/imbClose"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/imbOpen"
android:layout_marginLeft="18dp"
android:layout_toRightOf="@+id/imbOpen"
android:src="@drawable/close" />
<ImageButton
android:id="@+id/imbSetting"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/imbOpen"
android:layout_below="@+id/imbOpen"
android:layout_marginTop="25dp"
android:src="@drawable/setting" />
<ImageButton
android:id="@+id/imbExit"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignRight="@+id/imbClose"
android:layout_alignTop="@+id/imbSetting"
android:src="@drawable/exit"/>
<EditText
android:id="@+id/txtStatus"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/imbClose"
android:layout_alignLeft="@+id/imbOpen"
android:layout_alignRight="@+id/imbClose"
android:layout_marginBottom="16dp" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="22dp"
android:text="@string/main_menu"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="@style/AppBaseTheme"
android:textSize="15pt"
android:textStyle="bold" />
</RelativeLayout>
这是我的 Activity2 MnUtama.java 代码:
package com.ta.pengendalipagar;
import com.example.pengendalipagar.R;
import android.os.Bundle;
import android.app.Activity;
import android.content.Intent;
import android.view.Menu;
import android.view.View;
import android.widget.EditText;
import android.widget.ImageButton;
public class MnUtama extends Activity {
/*private ImageButton Open;
private ImageButton Close;
private ImageButton Setting;
private ImageButton Exit;
private EditText Status;*/
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_mnutama);
ImageButton Open = (ImageButton)findViewById(R.id.imbOpen);
ImageButton Close = (ImageButton)findViewById(R.id.imbClose);
ImageButton Setting = (ImageButton)findViewById(R.id.imbSetting);
ImageButton Exit = (ImageButton)findViewById(R.id.imbExit);
EditText Status = (EditText)findViewById(R.id.txtStatus);
Exit.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
callKeluar();
}
});
}
public void callKeluar(){
finish();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.login, menu);
return true;
}
}
这是我的 list :
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.pengendalipagar"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.ta.pengendalipagar.LoginActivity"
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="com.ta.pengendalipagar.MnUtama"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>
最佳答案
我认为问题出在 activity_mnutama.xml
的最后一个 TextView
的以下字符串:
android:textColor="@style/AppBaseTheme"
你的做法不对,删除这一行。要通过样式设置 textColor
,您应该将此行添加到 TextView
声明中:
style="@style/AppBaseTheme"
其中AppBaseTheme
如下所示:
<style name="AppBaseTheme">
<item name="android:textColor">#FFF</item>
</style>
关于java - android.view.InflateException : Binary XML file line #52: Error inflating class <unknown>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23289865/
我有一个 ListView ,每个项目加载一个 fragment ,其中包括另一个 fragment 。第一次充电没问题,但是当我返回到 lisview 并重新加载另一个 fragment (或相同
我浏览了 API 但没能很好地理解。我无法理解这种方法的结果。我是 Android 的新手,需要帮助。 package com.javacodegeeks.android.fragmentstest;
在我的 MenuAdapter 类中尝试膨胀 View 时,我不断收到 InflateException。我将麻烦的代码包围在 try-catch block 中并收到错误消息: 整个项目的链接: h
好吧,事情就是这样,我观看了大量视频并阅读了大量文章,但我找不到解决方案...... 基本上,我的应用程序崩溃是因为我正在膨胀,而且我找不到解决方案。 JAVA: package com.iweto;
我正在研究此链接中的 fragment :http://developer.android.com/guide/components/fragments.html 有一段代码如下: public st
在我的 Android 应用程序中,我正在构建我的第一个自定义适配器。我现在在膨胀 convertView 的那一行遇到了一个空指针。请看下面的代码: private List possibiliti
我有布局,我想膨胀它 喜欢 LinearLayout ll=(LinearLayout)findViewById(R.id.llContainer);
Fragment 中的以下几行引发异常,我无法找到其根本原因。 public View onCreateView(LayoutInflater inflater, ViewGroup containe
我在以下行上遇到强制关闭错误: view = inflater.inflate(R.layout.video_list_item, parent, false); 当将java类设置为 Activit
我正在开发一款 Android 应用,我尝试在该应用中实现社交分享按钮。 我查看了 Android 文档以进行共享 - Sharing simple data并在那里实现代码;然而,应用程序在启动时崩
我们正在尝试构建一个基于 php 的视频共享站点,允许用户上传他们自己的内容。 我们需要将所有这些视频转换为中等质量的 mp4 视频文件,以便最终通过 FlowPlayer 进行流式传输。 我们的代码
在我的应用程序中,我尝试使用 java 的 Inflater/Deflater 类来压缩/解压缩字节数组。这是我最初使用的部分代码: ByteArrayOutputStream outputSt
Deflater 压缩由 0 到 99 字节组成的字节数组(长度为 100)压缩后的字节数组被传递给 Inflater 作为解压缩的输入。解压缩器返回的长度比原始列表缺少 3 个字节。 以下是代码:
我想使用java.util.zip包恢复压缩的中等长度字符串(665个字符),压缩是通过以下代码进行的: public String compress(String s){ Deflater
有什么方法可以覆盖默认的 layoutInflater 以便能够根据我的意愿动态创建布局,同时从数据库中获取 XML 结构的数据? 哈密扎克 最佳答案 您可以使用 LayoutInflater.set
我正在尝试学习 Android,但我不明白 Inflate 的真正作用。我见过不同的示例,在这些示例中,它用于在另一个布局中插入布局,但我不确定在哪里使用它比较好。 任何人都可以提供好的例子吗? 最佳
这个问题在这里已经有了答案: Why does LayoutInflater ignore the layout_width and layout_height layout parameters
我有一个带滑动导航的 android Activity (使用 ViewPager 实现)。 public class UberActivity extends FragmentActivity {
我是 Android 的新手,我试图在 xml 中扩展布局,但我得到了一个 RuntimeException。除了我的 Activity 类和扩展 SurfaceView 的类之外,我几乎删除了所有内
在 Unity documentation他们谈论充气类型,例如在这里: 字段值不能是泛型类型(膨胀类型)的特定特化。 这究竟是什么意思? 最佳答案 Mono's documentation ,Uni
我是一名优秀的程序员,十分优秀!