誰もこれを行う方法を知っていますか?
質問する
9326 次
2 に答える
5
alignParentBottom="true"でLinearLayoutを使用します
このようなもの:
<RelativeLayout
android:id="@+id/mainLyt"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<!-- Some layout things -->
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/bottomBar">
<!-- some scrolling content -->
</ScrollView>
<LinearLayout
android:id="@+id/bottomBar"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:orientation="horizontal"
android:layout_alignParentBottom="true">
<!-- Some Buttons -->
</LinearLayout>
</RelativeLayout>
私はコンパイルしようとしませんでした。いくつかのタイプミスを修正する必要があるかもしれませんが、これはあなたがやろうとしていることを達成するための基本的な考え方です。
于 2013-03-05T02:06:16.217 に答える
-2
onCreate の後に次の行を使用します。
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.home_screen);
于 2014-03-12T09:34:02.193 に答える