我期待我的應用程序使用android拉伸功能在所有屏幕尺寸上以全屏模式運行 僅使用一種XML佈局。Android定製查看不能延伸到全屏的一些屏幕尺寸
<?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:orientation="horizontal" >
<com.nwm.CD.CCanvas_480x320
android:layout_weight ="1"
android:fillViewport="true"
android:id="@+id/cc_320x480"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</LinearLayout>
但是,當我在WVGA00(480×800)運行的應用程序會出現黑條顯示了最右邊,有大約80pixels的寬度和應用程序不填滿整個屏幕。
類擴展視圖
public class CC_480x320 extends View implements Runnable{
public CricCanvas_480x320(Context context, AttributeSet attrs) {
super(context, attrs);
this.context = (CricDhamaka)context;
}
如何讓它在全屏運行的任何想法?
使用fill_parent而不是match_parent ...只是建議 – 2012-07-06 07:16:31