2014-04-30 59 views
0

我知道這個問題是相當罕見的,而且是難得的與我的應用程序會發生什麼做...應用不會加載移動在日食模擬器

昨天我編程的演示活動我的應用程序,在開始主要活動之前僅出現1.5秒。演示文稿活動只是加載presentation.xml文件,其中只有一個帶有ImageView和TextView的LinearLayout。這ImageView已附加了我的應用程序徽標(.png)的圖像和TextView正下方。

會發生什麼事是,當我與Eclipse模擬器中運行應用程序,我可以看到完美的正是我編程。我在1.5秒內看到了一個自定義背景,在屏幕中心和下方的文本中顯示了我的標誌,但是當我在手機上試用應用程序時,出現了錯誤:徽標絕對看不見!它只是消失。

不能不說是設置圖像之前,有相同的標誌分辨率較低。此外,我試圖把圖像和Java代碼的參數,但是會發生相同的,它是如此令人失望...

希望你知道發生什麼事,給我一個很好的解決方案...謝謝!


影響的代碼:

JAVA

protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.presentacion_act); 

    RelativeLayout lay = (RelativeLayout)findViewById(R.id.back); 
    lay.setBackgroundResource(R.drawable.back_presentacion); 

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="@android:color/darker_gray" 
    android:id="@+id/back" 
    tools:context=".Presentacion" > 

    <ImageView 
     android:id="@+id/lay_class" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:scaleType="centerInside" 
     android:layout_centerVertical="true" 
     android:layout_centerHorizontal="true" 
     android:paddingBottom="70dp" 
     android:paddingLeft="15dp" 
     android:paddingRight="15dp" 
     android:src="@drawable/classmarks"/> 
+0

試試Google。例如:http://blog.iangclifton.com/2011/01/01/android-splash-screens-done-right/ –

+0

這不是在我的情況太有幫助,但感謝你的努力! – JCoder

回答

0

完成!只是使圖像變小,它可以在我的設備上完美運行。

相關問題