我正在使用android studio,我正在尝试将此按钮添加到空白活动,但是当我运行应用程序时按钮不会出现,我不知道问题是什么。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent" android:layout_height="45dip"
android:orientation="horizontal">
<Button
android:id="@+id/pauseGame"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/pauseGame"
android:onClick="pauseGame" />
</LinearLayout>
`
答案 0 :(得分:1)
我收到了您的问题更改LinearLayout
width
和height
喜欢
android:layout_width="match_parent"
android:layout_height="match_parent"
答案 1 :(得分:1)
试试这个
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:orientation="horizontal">
<Button
android:id="@+id/pauseGame"
android:layout_width="wrap_content"
android:layout_height="45dp"
android:text="@string/pauseGame"
android:onClick="pauseGame" />
</LinearLayout>