Konuyu Oyla:
  • Toplam: 0 Oy - Ortalama: 0
  • 1
  • 2
  • 3
  • 4
  • 5
[YENİ] Proxy Kivy
#31
bravo bravo eline emeğine sağlık abi super olmuş Smile
Ara
Cevapla
#32
eyvallah, güle güle kullan..
Turbobit Premium Link Çeviri | Turbobit Link Generator | http://turbobit.qpython.club
Cevapla
#33
Eline sağlık hocam bende böyle gösteriyor ve donuyor hep.
Telefon lg g3 sürüm marshmallow


Ek Dosyalar Ekran Görüntüleri
   
Ara
Cevapla
#34
Hep donma derken?

Ekran 5.5 ince kadar düzeltmistim ama sende niye öyle oldu anlamadım.
Turbobit Premium Link Çeviri | Turbobit Link Generator | http://turbobit.qpython.club
Cevapla
#35
5.7 için

Aynen donma bende de var ekrana vurup duruyorum ekran kırıldı Smile
Yazılar üst üste bide proxy de
Ara
Cevapla
#36
Evet ekran eğer 5.5 ten daha büyükse prxyler üst üste gelebilir Smile. Bunu çözmeye çalışırız ama o zaman olay donma olayı değil boyutlar ufak olduğundan basılmama olayi bence.
Turbobit Premium Link Çeviri | Turbobit Link Generator | http://turbobit.qpython.club
Cevapla
#37
Bakın bende mis gibi Smile

Turbobit Premium Link Çeviri | Turbobit Link Generator | http://turbobit.qpython.club
Cevapla
#38
Ekranı 5.5 inc ten büyük olanlar için, yani proxyler üst üste binmiş gibi görünen telefonlar için ufak bi kod hazırladım sadece SSLproxies.com menüsü için, sonuçları ss olarak atar ve beraber test edersek uygulamayı size de uygun olacak şekilde tekrar düzenleme şansın olabilir.

Kodu qpython scripts klasörüne atarak çalıştrabilirsiniz.

PHP Kod:
#qpy:kivy
from kivy import Config
Config
.set('graphics''multisamples''0')
Config.set('graphics''width''480')
Config.set('graphics''height''700')
###########################################
import kivy.metrics
from kivy
.graphics import ColorRectangle
from kivy
.app import App
from kivy
.uix.widget import Widget
from kivy
.uix.boxlayout import BoxLayout
from kivy
.lang import Builder
from kivy
.uix.button import Button
from kivy
.uix.floatlayout import FloatLayout
from kivy
.uix.gridlayout import GridLayout
from kivy
.uix.label import Label
from kivy
.uix.textinput import TextInput    
from kivy
.uix.popup import Popup
from kivy
.config import ConfigParser
from kivy
.uix.settings import SettingsWithSpinner
from kivy
.adapters.models import SelectableDataItem
from kivy
.adapters.listadapter import ListAdapter
from kivy
.uix.listview import ListItemButtonListView
from kivy
.uix.stacklayout import StackLayout
from kivy
.base import runTouchApp
from kivy
.properties import ListPropertyStringProperty
from kivy
.uix.screenmanager import ScreenManagerScreen

class ProxyKivyApp(App):
    
def build(self):
        return 
sm

def list_args_converter
(row_indexs):
    return {
        
'text's,
        
'size_hint_y'None,
        
'height'70,
        
'font_size''27sp'
    
}
class 
SSLproxies(Screen):
    
def __init__(self, **kwargs):
        
super(SSLproxiesself).__init__(**kwargs)
        
self.data=[    "123.123.123.123:1234","123.123.123.123:1234","123.123.123.123:1234",
                    
"123.123.123.123:1234","123.123.123.123:1234","123.123.123.123:1234",
                    
"123.123.123.123:1234","123.123.123.123:1234","123.123.123.123:1234",
                    
"123.123.123.123:1234","123.123.123.123:1234","123.123.123.123:1234",
                    
"123.123.123.123:1234","123.123.123.123:1234","123.123.123.123:1234",
                    
"123.123.123.123:1234","123.123.123.123:1234","123.123.123.123:1234"]
        
self.list_adapter ListAdapter(data=self.data,
                                   
args_converter=list_args_converter,
                                   
cls=ListItemButton,
                                   
selection_mode='single',
                                   
allow_empty_selection=True)
        
self.add_widget(ListView(adapter=self.list_adapter,
                                    
pos_hint= {'center_x':.5'center_y'.505},
                                    
size_hint= (.95.49),
                                    ))
        
self.list_adapter.bind(selection=self.selection_changed)
        
self.toggle 'adding'
        
    
def selection_changed(self, *args):
        try:    
            
self.selected_item args[0].selection[0].text
        except
:
            try:
                print 
args
                self
.selected_item "off selected"
            
except:
                print 
"Hata\n"
                
pass

        
Builder
.load_string('''
<ListItemButton>:
    selected_color: 0, 1, 1, 1
    deselected_color: 0, 0, 0, 0.6
<SSLproxies>:
    buton:buton
    FloatLayout:
        canvas.before:
            Color:
                rgba: 0, 1, 1, .1
            Rectangle:
                pos: self.pos
                size: self.size
        Label:
            text: "[b]SSLproxies.org[/b]"
            markup: True
            font_size: 37
            pos_hint: {'
center_x':.5, 'center_y': .95}
        
        Bubble
            show_arrow: False
            size_hint: .95, .13
            pos_hint: {'
center_x':.5, 'center_y': .805}
            BubbleButton:
                background_color: (0,1,1,8)
                id: buton
                text: "[b][color=#032828]Tara[/color][/b]"
                markup: True
                font_size: self.height/4
        Bubble
            show_arrow: False
            pos_hint: {'
center_x':.5, 'center_y': .07}
            size_hint: .95, .13
            BubbleButton:
                id: buton2
                background_color: (1,1,1,6.5)
                font_size: self.height/4
                text: '
[b][color=#032828]Geri[/color][/b]'
                
markupTrue

        Bubble
            show_arrow
False
            pos_hint
: {'center_x':.26'center_y'.193}
            
size_hint.47.13
            BubbleButton
:
                
idbuton3
                background_color
: (1,0,0,7)
                
font_sizeself.height/4
                text
'[b][color=#E7CECE]Hepsini Sil[/color][/b]'
                
markupTrue

        Bubble
            show_arrow
False
            pos_hint
: {'center_x':.74'center_y'.193}
            
size_hint.47.13
            BubbleButton
:
                
idbuton4
                background_color
: (1,1,0,5)
                
font_sizeself.height/4
                text
'[b][color=#E7CECE]Hepsini Kopyala[/color][/b]'
                
markupTrue
''')    

sm = ScreenManager()
sm.add_widget(SSLproxies(name='
ssl'))

if __name__ == '
__main__':
    ProxyKivyApp().run() 
Turbobit Premium Link Çeviri | Turbobit Link Generator | http://turbobit.qpython.club
Cevapla
#39
uygulamadan atıyo
Ara
Cevapla
#40
(14-11-2016, Saat: 13:10)gecemor Nickli Kullanıcıdan Alıntı:  Ekranı 5.5 inc ten büyük olanlar için, yani proxyler üst üste binmiş gibi görünen telefonlar için ufak bi kod hazırladım sadece SSLproxies.com menüsü için, sonuçları ss olarak atar ve beraber test edersek uygulamayı size de uygun olacak şekilde tekrar düzenleme şansın olabilir.

Kodu qpython scripts klasörüne atarak çalıştrabilirsiniz.

PHP Kod:
#qpy:kivy
from kivy import Config
Config
.set('graphics''multisamples''0')
Config.set('graphics''width''480')
Config.set('graphics''height''700')
###########################################
import kivy.metrics
from kivy
.graphics import ColorRectangle
from kivy
.app import App
from kivy
.uix.widget import Widget
from kivy
.uix.boxlayout import BoxLayout
from kivy
.lang import Builder
from kivy
.uix.button import Button
from kivy
.uix.floatlayout import FloatLayout
from kivy
.uix.gridlayout import GridLayout
from kivy
.uix.label import Label
from kivy
.uix.textinput import TextInput    
from kivy
.uix.popup import Popup
from kivy
.config import ConfigParser
from kivy
.uix.settings import SettingsWithSpinner
from kivy
.adapters.models import SelectableDataItem
from kivy
.adapters.listadapter import ListAdapter
from kivy
.uix.listview import ListItemButtonListView
from kivy
.uix.stacklayout import StackLayout
from kivy
.base import runTouchApp
from kivy
.properties import ListPropertyStringProperty
from kivy
.uix.screenmanager import ScreenManagerScreen

class ProxyKivyApp(App):
    
def build(self):
        return 
sm

def list_args_converter
(row_indexs):
    return {
        
'text's,
        
'size_hint_y'None,
        
'height'70,
        
'font_size''27sp'
    
}
class 
SSLproxies(Screen):
    
def __init__(self, **kwargs):
        
super(SSLproxiesself).__init__(**kwargs)
        
self.data=[    "123.123.123.123:1234","123.123.123.123:1234","123.123.123.123:1234",
                    
"123.123.123.123:1234","123.123.123.123:1234","123.123.123.123:1234",
                    
"123.123.123.123:1234","123.123.123.123:1234","123.123.123.123:1234",
                    
"123.123.123.123:1234","123.123.123.123:1234","123.123.123.123:1234",
                    
"123.123.123.123:1234","123.123.123.123:1234","123.123.123.123:1234",
                    
"123.123.123.123:1234","123.123.123.123:1234","123.123.123.123:1234"]
        
self.list_adapter ListAdapter(data=self.data,
                                   
args_converter=list_args_converter,
                                   
cls=ListItemButton,
                                   
selection_mode='single',
                                   
allow_empty_selection=True)
        
self.add_widget(ListView(adapter=self.list_adapter,
                                    
pos_hint= {'center_x':.5'center_y'.505},
                                    
size_hint= (.95.49),
                                    ))
        
self.list_adapter.bind(selection=self.selection_changed)
        
self.toggle 'adding'
        
    
def selection_changed(self, *args):
        try:    
            
self.selected_item args[0].selection[0].text
        except
:
            try:
                print 
args
                self
.selected_item "off selected"
            
except:
                print 
"Hata\n"
                
pass

        
Builder
.load_string('''
<ListItemButton>:
    selected_color: 0, 1, 1, 1
    deselected_color: 0, 0, 0, 0.6
<SSLproxies>:
    buton:buton
    FloatLayout:
        canvas.before:
            Color:
                rgba: 0, 1, 1, .1
            Rectangle:
                pos: self.pos
                size: self.size
        Label:
            text: "[b]SSLproxies.org[/b]"
            markup: True
            font_size: 37
            pos_hint: {'
center_x':.5, 'center_y': .95}
        
        Bubble
            show_arrow: False
            size_hint: .95, .13
            pos_hint: {'
center_x':.5, 'center_y': .805}
            BubbleButton:
                background_color: (0,1,1,8)
                id: buton
                text: "[b][color=#032828]Tara[/color][/b]"
                markup: True
                font_size: self.height/4
        Bubble
            show_arrow: False
            pos_hint: {'
center_x':.5, 'center_y': .07}
            size_hint: .95, .13
            BubbleButton:
                id: buton2
                background_color: (1,1,1,6.5)
                font_size: self.height/4
                text: '
[b][color=#032828]Geri[/color][/b]'
                
markupTrue

        Bubble
            show_arrow
False
            pos_hint
: {'center_x':.26'center_y'.193}
            
size_hint.47.13
            BubbleButton
:
                
idbuton3
                background_color
: (1,0,0,7)
                
font_sizeself.height/4
                text
'[b][color=#E7CECE]Hepsini Sil[/color][/b]'
                
markupTrue

        Bubble
            show_arrow
False
            pos_hint
: {'center_x':.74'center_y'.193}
            
size_hint.47.13
            BubbleButton
:
                
idbuton4
                background_color
: (1,1,0,5)
                
font_sizeself.height/4
                text
'[b][color=#E7CECE]Hepsini Kopyala[/color][/b]'
                
markupTrue
''')    

sm = ScreenManager()
sm.add_widget(SSLproxies(name='
ssl'))

if __name__ == '
__main__':
    ProxyKivyApp().run() 


Ek Dosyalar Ekran Görüntüleri
   
Ara
Cevapla

{lang: 'en'}


Konu ile Alakalı Benzer Konular
Konular Yazar Yorumlar Okunma Son Yorum
  YENİ Kivy Öğren v1.0 Ethnic 22 24,576 02-11-2017, Saat: 12:30
Son Yorum: Mehmet Zerey
  Eski Proxy Değiştir v3.0 (Zpn Pia Vpnbook) Ethnic 28 28,472 27-06-2016, Saat: 02:06
Son Yorum: Ethnic
  GÜNCEL Proxy Değiştir v1.7 (Güncellendi) 0 2,016 1 dakika önce
Son Yorum:

Hızlı Menü:


Konuyu Okuyanlar: 1 Ziyaretçi
Change Theme