button tag

27 questions


1 answers
95 views
0
Python tkinter button question.

class WidgetsDemo: def __init__(self): window=Tk() window.title (Widget Demo) self.button = [[0 for col in range(5)] for row in range(8)] for self.i in range(0,8): for self.j in range(0,5): sel...

2 years ago


1 answers
85 views
0
Code corresponding to "when clicking" in pygame

I want to put the quit button in the game code in pygame, but I know how to turn off the game program by putting the quit button. The problem is that I wanted to change the color when I was clicking t...

2 years ago

1 answers
111 views
0
input and button

The input and button attributes overlap.1.<input type=Button value=Button/> <Button type=Button>Button</Button>2.<input type=reset value=initialization/> <Button type=reset&...


1 answers
107 views
0
I want to start a new activity when I click a button on Android, what should I do?

How do I display a new activity when I click the activity button on the Android app?Also, will it be possible to deliver data between these two activities then?


1 answers
96 views
0
I want to send data to Android Studio Bluetooth and temporarily disable the button

mBtnSendData.setOnClickListener(new Button.OnClickListener() { Timer buttonTimer = new Timer(); @Override public void onClick(View view) { if (mThreadConnectedBluetooth != null) { String SendDat...


1 answers
123 views
0
Can I make the image button transparent on Android?

I made it like a source code below to make the image button transparent. There's an error in Eclipse.<ImageButton android:id=@+id/previousandroid:layout_width=wrap_contentandroid:layout_height=wrap...


1 answers
92 views
0
Recyclerview update question if button is pressed again.

When you click button, asyncask.execute() shows the parsing of json from url in recyclerview.There are a total of 5 buttons and one recyclerview for each button. There is no problem with just pressing...

2 years ago

1 answers
64 views
0
Can't you make the Android button not work?

There are prev and next buttons. I made these two buttons dynamic Even if it's the first screen, there's no more screen to go back, so don't let the Prev button workI don't want to move on to the nex...

2 years ago

1 answers
86 views
0
Questions about Android Back Button

Hello, everyone I'm a beginner who's studying applications for the first time I came all the way here with the help of the hash code, but it's stuck here again, soThis is an implementation of an exten...

2 years ago
« - 2 - »

© 2024 OneMinuteCode. All rights reserved.