0
を埋めるために力の尺度である理由は、私のテストコードです:drawerlayoutのビューは、ここで画面
<android.support.v4.widget.DrawerLayout
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"
tools:context="ro.rotry.NdInnerViewAutoFillScreen">
<TextView android:text="in drawerlayout" android:textColor="@android:color/white" android:background="@android:color/black" android:layout_width="100dp" android:layout_height="100dp"/>
</android.support.v4.widget.DrawerLayout>
私は次のような結果を得る:TextViewのショー100dpサイズ
作り方を
更新
<android.support.design.widget.CoordinatorLayout android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView android:text="in coordinator" android:textColor="@android:color/white" android:background="@android:color/black" android:layout_width="100dp" android:layout_height="100dp"/>
</android.support.design.widget.CoordinatorLayout>
しかし、私はCoordinatorLayoutのない道を願って、それはあまりにも面倒だ
実際に 'DrawerLayout'が必要ですか?そのレイアウトには引き出しがありません。 –
@MikeM。それは私の質問を再現するだけの単純なサンプル、私は実際のコードでDrawerLayoutが必要です – asullaherc