Emrah KAHRAMAN

Android RadioGroup ve RadioButton Kullanımı

activity_test.xml dosyası <RelativeLayout 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:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" > <TextView android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentTop="true" android:text="Nerelisiniz?" android:layout_marginTop="20dp"> </TextView>…

Android Simple ListView Kullanımı

AndroidManifest.xml <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="tr.com.emrahkahraman.simplelistview" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="21" /> <application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" >…

Android Custom ListView Kullanımı

AndroidManifest.xml <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="tr.com.emrahkahraman.customlistview" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="21" /> <application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" >…

MSSQL ISNUMERIC Kullanımı

Aşağıdaki sorgu çalıştığında PostalCode kolonundaki veriler int, numeric, bigint, money, smallint, smallmoney, tinyint, float, decimal, real veri tiplerinden birine uygun…

4G Nedir?

4G dördüncü nesil kablosuz telefon teknolojisidir. Bağlantı hızı cep telefonlarında 100 Mbps , wi-fi ağlarda 1Gbps’dir. Aynı zamanda wimax band…

Kendo UI Grid Paging Disable

@(Html.KendoGrid<MusteriDto>(Model.musteriler) .Name("musterilerGrid") .Columns(columns =>; { columns.Template(@<text></text>).Title("Seç").ClientTemplate("<input type=’checkbox’ class=’checkbox’ name=’musteriSec’ />").Width("1%").HtmlAttributes(new { style = "text-align: center;" }); columns.Bound(c => c.Pk).Width("5%").Visible(false); columns.Bound(c…