为什么我的按钮运动有问题?

时间:2019-12-02 13:12:52

标签: button move

我正在编写一个程序,在这里我想通过按一个按钮来打开课程。我在窗口上有两个按钮,第一个按钮可以正常工作,但是我似乎无法移动第二个按钮(称为“教师”)。这是代码。我拼命寻找解决方案。谢谢!

<?xml version="1.0" encoding="utf-8"?>
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity"
    android:orientation="vertical">


    <TextView
        android:paddingTop="10dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"

        android:text="@string/restaurant_v1_0"
        android:textAllCaps="false"
        android:gravity="center"

        android:textColor="@android:color/white"
        android:textSize="36sp"
        app:fontFamily="@font/condiment" />



    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
       <ImageButton
           android:id="@+id/ib1"
           android:layout_width="120dp"
           android:layout_height="120dp"
           android:adjustViewBounds="true"
           android:padding="10dp"
           android:layout_margin="10dp"
           android:layout_weight="1"

           android:scaleType="fitCenter"
           android:background="@android:color/transparent"
           android:src="@drawable/azerty"
           tools:ignore="ContentDescription" />

        <ImageButton
            android:layout_width="120dp"
            android:layout_height="120dp"
            android:adjustViewBounds="true"
            android:padding="10dp"
            android:layout_margin="10dp"
            android:layout_weight="1"
            android:scaleType="fitCenter"
            android:background="@android:color/transparent"
            android:src="@mipmap/ic_launcher"
            />

        <ImageButton
            android:layout_width="120dp"
            android:layout_height="120dp"
            android:adjustViewBounds="true"
            android:padding="10dp"
            android:layout_margin="10dp"
            android:layout_weight="1"
            android:scaleType="fitCenter"
            android:background="@android:color/transparent"
            android:src="@drawable/azerty"
             />



    </LinearLayout>




</androidx.appcompat.widget.LinearLayoutCompat>

MyFrame类扩展了JFrame {

class MyHandler implements ActionListener{

    public void actionPerformed(ActionEvent e){
    System.exit(0);
     }
}

0 个答案:

没有答案