package com.divesh.sliderapp;
import android.graphics.Typeface;
import android.support.annotation.NonNull;
import android.support.v4.app.Fragment;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
public class Team extends Fragment {
@Nullable
@Override
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.team,container,false);
TextView txt = view.findViewById(R.id.Name1);
Typeface font = Typeface.createFromAsset(getActivity().getAssets(), "Fonts/KoHo-Bold.ttf");
txt.setTypeface(font);
Typeface font2 = Typeface.createFromAsset(getActivity().getAssets(), "Fonts/KoHo-Regular.ttf");
TextView txt1 = view.findViewById(R.id.Name2);
TextView txt2 = view.findViewById(R.id.Pos1);
TextView txt3 = view.findViewById(R.id.Pos2);
txt1.setTypeface(font);
txt2.setTypeface(font2);
txt3.setTypeface(font2);
TextView join = view.findViewById(R.id.join);
Typeface font1 = Typeface.createFromAsset(getActivity().getAssets(), "Fonts/Raleway-Medium.ttf");
join.setTypeface(font1);
return view;
}
@Override
public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
//you can set the title for your toolbar here for different fragments different titles
getActivity().setTitle("Team");
}
}
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#f2dede">
<ImageView
android:id="@+id/imageView7"
android:layout_width="114dp"
android:layout_height="94dp"
android:layout_marginBottom="12dp"
android:layout_marginEnd="135dp"
android:layout_marginStart="135dp"
android:layout_marginTop="40dp"
app:layout_constraintBottom_toTopOf="@+id/Name1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.481"
app:srcCompat="@drawable/image2"
android:gravity="center"
android:contentDescription="@string/divesh_jain" />
<TextView
android:id="@+id/Name1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="115dp"
android:layout_marginStart="116dp"
android:text="@string/divesh_jain"
android:textAppearance="@style/TextAppearance.AppCompat"
android:textSize="25sp"
app:layout_constraintBottom_toTopOf="@+id/Pos1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
android:layout_marginRight="115dp"
android:layout_marginLeft="116dp"
android:gravity="center"/>
<TextView
android:id="@+id/Pos1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="32dp"
android:layout_marginEnd="157dp"
android:layout_marginStart="158dp"
android:text="@string/developer"
android:textAppearance="@style/TextAppearance.AppCompat"
android:textSize="16sp"
app:layout_constraintBottom_toTopOf="@+id/imageView8"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
android:layout_marginRight="157dp"
android:layout_marginLeft="158dp"
android:gravity="center"/>
<ImageView
android:id="@+id/imageView8"
android:layout_width="114dp"
android:layout_height="94dp"
android:layout_marginBottom="12dp"
android:layout_marginEnd="135dp"
android:layout_marginStart="135dp"
app:layout_constraintBottom_toTopOf="@+id/Name2"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:srcCompat="@drawable/image5"
android:gravity="center"
android:contentDescription="@string/aman_jain" />
<TextView
android:id="@+id/Name2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="132dp"
android:layout_marginStart="133dp"
android:text="@string/aman_jain"
android:textAppearance="@style/TextAppearance.AppCompat"
android:textSize="25sp"
app:layout_constraintBottom_toTopOf="@+id/Pos2"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
android:layout_marginRight="132dp"
android:layout_marginLeft="133dp"
android:gravity="center"/>
<TextView
android:id="@+id/Pos2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="100dp"
android:layout_marginEnd="161dp"
android:layout_marginStart="162dp"
android:text="@string/designer"
android:textAppearance="@style/TextAppearance.AppCompat"
android:textSize="16sp"
app:layout_constraintBottom_toTopOf="@+id/join"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
android:layout_marginRight="161dp"
android:layout_marginLeft="162dp"
android:gravity="center"/>
<TextView
android:id="@+id/join"
android:layout_width="190dp"
android:layout_height="wrap_content"
android:layout_marginBottom="16dp"
android:layout_marginEnd="32dp"
android:layout_marginStart="33dp"
android:text="@string/wish_to_join_our_team_contact_us_via_query_section"
android:textAlignment="center"
android:textAppearance="@style/TextAppearance.AppCompat"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
android:layout_marginRight="32dp"
android:layout_marginLeft="33dp"
android:gravity="center"/>
</android.support.constraint.ConstraintLayout>
以下是logcat中显示的错误。
从错误日志中:
android.content.res.resources$NotFoundException:资源“com.divesh.sliderapp:Drawable/card10”(7F08005E)不是可绘制的(颜色或路径)
这意味着您尝试使用可提取的card10
,但这不是可提取的。
但是您发布的xml没有使用任何可提取的card10
。
app:srcCompat="@drawable/image5"
当我打开我的android应用程序并测试解析推送通知时,它工作了。但是当我把我的应用程序从多任务中杀死并再次测试时,应用程序崩溃了。 错误日志 08-18 21:16:21.694 244 06-24406/?E/AndroidRuntime:致命异常:main process:com.myatminsoe.mKeyboard,PID:24406 java.lang.runtimeExceptio
注意:在我添加广告之前,我的应用程序运行良好,使用相同的方法 当我试图将adview添加到我的应用程序时,它会使我的应用程序崩溃,所以我删除了它,但仍然给我这个这是logcat 10-12 21:33:19.765 4993-4993/com。fm360。almorfis E/AndroidRuntime:致命异常:主进程:com。fm360。阿尔莫菲斯,PID:4993爪哇。lang.Runti
我想是在开关的情况下发生的,或者我的代码有任何小错误。请帮助我这里是我的代码:activity_main.xml: MainActivity.java:
经过几天的计划,我刚刚开始为我的聊天应用程序编写一些代码,但问题是,在Gradle Build完成并将应用程序安装在我的设备上之后,它一直在崩溃。我创建了一个预计会打开新活动的按钮,但它没有这样做,而是崩溃了。在我编写任何代码之前,一切都正常,应用程序打开,logcat没有显示任何错误。以下是错误: 我试着遵循其他一些建议,但都不起作用。以下是我的代码片段: }
我在我的Android应用程序中使用GSON来解析数据。我已经在模型对象中添加了枚举。添加枚举后,我的应用程序开始崩溃。当我让runProguard假的时候,一切都很好。当程序是真的时,我做了我能在网上找到的一切来修复这个问题。但还是没运气。 我已经在proguard-rule文件中做了以下事情 枚举材料示例: 我的堆栈跟踪
这就是它崩溃的地方 01-12 13:44:12.571 296 26-29688/ca.dti.grounded.app E/OtherService:AsynchChecker 287:73 java.lang.IllegalStateException:Parcel已完成!在android.os.binderproxy.transactNative(本机方法)在android.os.bind