我正在使用Xamarin.Android开发应用程序“Namaz Pro”。
我的问题是我的应用程序在呈现它时正确显示了我预期的UI 设备:Visual Studio中的Nexus 4。
我甚至尝试过Android Studio,它可以根据需要呈现UI:
然而,我的模拟器KitKat上的Nexus 4无法显示相同的内容:
更新:我的可绘制文件夹
我的设计守则:
<?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:layout_margin="2dp"
android:background="#efeff4"
android:orientation="vertical"
android:weightSum="100">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="10"
android:background="#0c3b07"
android:orientation="vertical">
<TextView
android:id="@+id/txtDateToday"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="10"
android:gravity="center"
android:text="Thu 05-May-2016"
android:textColor="#FFFFFF"
android:textSize="20sp" />
<TextView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="10"
android:gravity="center"
android:orientation="vertical"
android:text="28 Rajab 1437"
android:textColor="#FFFFFF"
android:textSize="20sp" />
</LinearLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="30">
<ImageView
android:id="@+id/demoImageView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="fitXY"
android:src="@drawable/fajrImage" />
<TextView
android:id="@+id/txtPrayerNow"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="12dp"
android:text="Fajr"
android:textColor="#FFFFFF"
android:textSize="20sp" />
<TextView
android:id="@+id/txtPrayerTime"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="05:30 PM"
android:textColor="#FFFFFF"
android:textSize="24sp" />
<TextView
android:id="@+id/txtLocation"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:paddingBottom="6dp"
android:text="Kolkata,India"
android:textColor="#FFFFFF"
android:textSize="20sp" />
</RelativeLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="60"
android:background="@drawable/background"
android:orientation="vertical" />
</LinearLayout>
答案 0 :(得分:0)
我的drawable文件夹在文件名中有连字符和破折号。不知何故,我的项目即使在此之后也已建成。 遵循Xamarin.Android的命名约定