summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2017-03-24Fix Hiding Master Page on MasterDetailPagejh5.cho1-19/+5
- Fix to hide Master page which is caused by the focus issue - Remove private variable '_isPresented' to remove unnecessary steps TASK=TCAAPI-2192 Change-Id: I0a5edc4622643a11c6afa33f58b86fc773a15915
2017-03-24Refactoring Label RendererSeungkeun Lee4-30/+24
- Optimize FormattedText handling - Define a new Value of TextAlignment, LineBreakMode for default value - Old-version of Span used a wrong specific value of Alignement and LineBreakMode Change-Id: I78baded712ce18f279774b09608c2a2d19931a69
2017-03-24Remove unnecessary resize of WindowSeungkeun Lee1-8/+0
- In Initialize step, resize window to ScreenSize, but it is not necessary - And it cause improper resize callback, it caused performance degradation Change-Id: I04f684da0d45ef3b7f40b8646303422197063acf
2017-03-24[Page] Change alert dialog message text wrap typePiotr Czaja1-2/+18
Note: Alert dialog message text was not wrapped, so long strings did not fit on the screen. Change-Id: I820a262888969ae97e45e0b4a57d683b44a8322d Signed-off-by: Piotr Czaja <p.czaja@samsung.com>
2017-03-24Add support for NativeViews specified in XAMLPawel Andruszkiewicz6-0/+108
See: https://developer.xamarin.com/guides/xamarin-forms/user-interface/native-views/ Change-Id: I0a4315cccdaa208585f417db4f91240555a64a47 Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
2017-03-24Rebase Forms to upstream lastest (2.3.4-pre2)Kangho Hur4-55/+20
- Synced with 3c7b291. (https://github.com/xamarin/Xamarin.Forms/commit/3c7b2918b3065a81ecb4040fde09d93aae09f62d) - [Core] Device.Tizen has been added newly. - Package version has updated to 2.3.4-r190-001 Change-Id: I948fd73212744aa8c1941dc6a6d8e46eb29523af
2017-03-24[MasterDetailPage] Change behavior after back button pressedPiotr Czaja1-2/+2
Note: Behavior of MasterDetailPage control after back button pressed has been reversed to correspond to its behavior on Android platform. Change-Id: I42cadd645e536b511302acb22bd36ecc1709430c Signed-off-by: Piotr Czaja <p.czaja@samsung.com>
2017-03-24Fix ampersand handling in Span classAdam Szczerbiak1-1/+2
Ampersand character ('&') has not been handled correctly, causing the text handled by Span class to display solely the initial part, up to the first '&' character. This bug has been spotted in Xamarin.Samples.TipCalc application, where the displayed label's caption stated "Food ", but pre-programmed string was "Food & Drink". This commit makes the Span class handle the '&' character correctly, which fixes that bug. Change-Id: I0e17d39fbfae6a5ef5eea585a5229c4a5b0cca7e Signed-off-by: Adam Szczerbiak <a.szczerbiak@samsung.com>
2017-03-24[TabbedPage] Add sending OnAppearing and OnDisappearing notificationsPiotr Czaja1-3/+5
Change-Id: Id8094a1a06a96934ee0c41015fd8da2c1421e4bd Signed-off-by: Piotr Czaja <p.czaja@samsung.com>
2017-03-24Fix wrong Group Header handlingSeungkeun Lee1-6/+7
- Set up all properties of ItemContext before add GenList Change-Id: I88740b2a6e0b65c4bf3467b3c363804491078708
2017-03-24Apply the style to ToolbarItem's buttonKangho Hur1-3/+21
TASK=TNET-651 - Applying the button style to toolbar item's (internal) button in case of toolbar item has only text. Change-Id: I6ea87ffbc4de28bc1bbd29d11f406bd0da1c6a5b
2017-03-24Add FontWeight for Label and EntryKangho Hur12-4/+288
- This change is for the referernce application (Clock) to follow UX guideline. (Internal only). - We will improve design and implementation of this APIs in the next release, if requred. Change-Id: Ifac91174a5859adecc9ec6bff1a1d568512ee70b
2017-03-24Fixd Label.HorizontalTextAlignment issuechungryeol lim1-0/+2
Change-Id: Id77f1d65d8e6c346b31be011759de7f9fd1dfe3f Signed-off-by: chungryeol lim <cdark.lim@samsung.com>
2017-03-24Fix Span's markup text tagKangho Hur2-3/+1
Change-Id: Ib667d444c4bfe4726298c3befde00d9f093ff107
2017-03-24Refactoring LabelRendererSeungkeun Lee3-21/+25
- Optimize update of FormattedText Change-Id: Iad0b8a4972bfef97f28502d724d443188411f760
2017-03-24Update version to beta-006Kangho Hur1-1/+1
Change-Id: I4832cb2dc64ac98d8d3bf63767f199679470cf3b
2017-03-24Fix Span's behavior about new line.Kangho Hur1-1/+3
TASK=TCAPI-2200 Change-Id: Ie261ccb4a7e6b51120e10c573e5e99e5c7a25f2b
2017-03-24Fixed Label.HorizontalTextAlignment issuechungryeol lim1-1/+13
- HorizontalTextAlignment is not working for Label - Task=TCAPI-2201 Change-Id: I6bb509a865a57c774f3de4d43fff8e90cc7c90ca Signed-off-by: chungryeol lim <cdark.lim@samsung.com>
2017-03-24Fixed Label.FormattedText property issuechungryeol lim1-10/+18
- Text color is not set when it is FormattedText - Task=TCAPI-2205 Change-Id: I16796fa52b73c87da7fcbc5c3517adb3e47c9684 Signed-off-by: chungryeol lim <cdark.lim@samsung.com>
2017-03-24Add default case under OnPlatformjh5.cho1-0/+1
- Add default case to let Default action is called to Tizen platform Change-Id: I15ffdb4622b1173353a4321d49b3b270256491c2
2017-03-24Consider TV profile as TargetIdiomKangho Hur3-7/+45
- Currently, We assumed TV as TargetIdiom.Desktop. This is because there is no TargetIdiom.TV in Xamarin.Forms mainstream. - I'll do a PR to adding TargetIdiom.TV. Also, I'll fix it correctly when TargetIdio.TV is merged. Change-Id: Idb7b1cd2510f9d4cecb70bd1e9d4dae1c2a61b05
2017-03-24Apply to default layout for the forms applicationKangho Hur1-1/+25
Change-Id: Ieb55d1b2f1a3deb29db9a7ccc8c3009d7553ed2e
2017-03-24Remove packaging/custom-find-requiresWonYoung Choi2-16/+1
We never have to consider build for Mono runtime in this branch Change-Id: I0c70fe84e0117dbf0084728b0524cb8736978f0d
2017-03-24Fix version to 2.3.3.175-beta-004WonYoung Choi1-2/+2
Change-Id: I153e07e8f17fac1830dc0e7f1cc8a1128241256c
2017-03-24Fixed DisplayAlert message color issuechungryeol lim1-1/+1
- Change the default color of message color to black Change-Id: Id9b7f74c0ecdc222bb46a9ecc6e4464cb6601cc7 Signed-off-by: chungryeol lim <cdark.lim@samsung.com>
2017-03-24Fixed ListView.SelectedItem Issuechungryeol lim1-20/+17
- Fixed using SelectedItem property in ItemSelected Callback Change-Id: I4bdf0c285388c80412b35902077b2940c362e64c Signed-off-by: chungryeol lim <cdark.lim@samsung.com>
2017-03-24Change the type of ItemContextItem.Item for extensionSungHyun Min1-11/+11
- GenListItem -> GenItem Change-Id: I75d56103ba0a4049739d5981f273ee33e417b2bb Signed-off-by: SungHyun Min <shyun.min@samsung.com>
2017-03-24Fix build warning CS4014Kangho Hur3-3/+3
Change-Id: Idbbcb5b138504afcdc7e0406b6aaea0dd22228db
2017-03-24Fix rpm spec file to solve build-break in JazzMWonYoung Choi1-3/+4
Change-Id: I80099afc01c6321f07c5d997ebff29cdc45c1db0
2017-03-24Update Xamarin.Forms.Tizen.project.jsonKangho Hur1-1/+1
Change-Id: I029ff97ec9f3ca66f7bae865d55249bcd02bb763
2017-03-24Ensure that source is not null before accessing itPawel Andruszkiewicz1-3/+2
Change-Id: Iccc85ecbf24612548b9827f0cdcb666cb59a6a6f Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
2017-03-24Postpone property updates till image finishes loadingPawel Andruszkiewicz1-2/+1
Change-Id: I14ec915050bd62415e065904a4365e12eb7f33c9 Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
2017-03-24Set ElmSharp.Color only when image loading has completed.Juwon1-5/+28
Change-Id: I073a2abf60c1f2ecb5e2e6d4163d0bc51a47cd5d
2017-03-24Change two methods to public for extension of CellRendererSungHyun Min1-2/+2
- SendCellPropertyChanged, SendUnrealizedCell Change-Id: I48cdbed3151d301f5e889076cbe2276463647387
2017-03-24Fix build break, include map-related assembliesPawel Andruszkiewicz1-0/+5
Change-Id: I12138d3ea61bcd4af9f544bbdbcaad23e112c76c Signed-off-by: Pawel Andruszkiewicz <p.andruszkie@samsung.com>
2017-03-24Update version to 2.3.3.175-b03jh5.cho1-1/+1
Change-Id: I08a95c8ef3801c947a0ee4fdd41882515aa315c0
2017-03-24Apply a blend color after image loading has completedJuwon1-0/+3
Change-Id: I5bee6a6d2a827c0a85a5c8f1a3a137695aa8f5cf
2017-03-24Add Switch StyleSeunghyun Choi4-2/+70
- Add Switch Style(CheckBox, Favorite) - Approval of the RFC is required. (http://suprem.sec.samsung.net/confluence/display/SPTDTLC/%5BFormsTizen%5D+RFC+5+-+Switch) Change-Id: If98be73fc84633b670328f723e0e4aa7ccebc82f Signed-off-by: Seunghyun Choi <sh4682.choi@samsung.com>
2017-03-24Add MapRenderer to enable Xamarin.Forms.Maps on Tizenchungryeol lim7-88/+316
- Implementation of MapRenderer under Xamarin.Forms.Maps.Tizen - Implementation of FormsMaps to initialize Tizen Map - Implementation of GeocoderBackend TASK=TCAPI2044 Change-Id: I4b6f15b5190767ca0c92bb27c383af5f66ae5328
2017-03-24Provides ResourcePath as a public APIsung-su.kim1-1/+1
- Change ResourcePaths class access modifier to public from internal Change-Id: I6b6b8f635075cbb0f4741c3c0f663c62678e94e3
2017-03-24Change Span's access modifier to publicsung-su.kim1-2/+2
- Span.GetDecoratedText() and Span.GetStyle() turned to public from internal. Change-Id: I7411025faa76e751f5191f70467621600ce0f82d
2017-03-24Set Device.OS to TargetPlatform.TizenKangho Hur1-2/+1
Change-Id: Iba1e004067e90406b90389763615ad6dfacc4c73
2017-03-24Remove NET45 codeWonYoung Choi3-19/+0
Change-Id: I90202d17b86d0e6e8449048367d422a790fff589
2017-03-24Allow x86 build in OBSWonYoung Choi1-1/+1
Change-Id: Ic0eb5a1a72f22d24d1b5ca19567068812e543af2
2017-03-24Fixed Appearing event calling sequence issuechungryeol lim2-2/+10
- Some properties like Width/Height have wrong values under Appearing event Change-Id: Ib555405e9d79ae3475f87f2d1cb53bbf9e51cda8 Signed-off-by: chungryeol lim <cdark.lim@samsung.com>
2017-03-24Add Button StyleSeunghyun Choi5-2/+113
- Add Button Style(Circle, Bottom) - Approval of the RFC is required. (http://suprem.sec.samsung.net/confluence/display/SPTDTLC/%5BFormsTizen%5D+RFC+2+-+Button+Style) Change-Id: I545e0cc2417298f90468b651030937665f547105 Signed-off-by: Seunghyun Choi <sh4682.choi@samsung.com>
2017-03-24Fix ListView GroupCell bugSeungkeun Lee2-5/+16
- When ViewCell was used for GroupHeaderTemplate ItemTemplate was used to make reusable view - Make disable Reusable feature for GroupHeader - Add a internal API to get low level Item object Change-Id: I01d205a2070c813a170a6eb9aceab8f24bbdb092
2017-03-24Fix ListView broken issue when scrolling quicklySeungkeun Lee1-0/+1
- Deleted Renderer was used for new content Change-Id: I9f6b65133352046c001e883de1776164329b182d
2017-03-24Fix Label wrap issueSeungkeun Lee1-1/+6
- In some case wrap was not properly working - The label width should be 1 pixel larger than formattedtext block size - It is EFL rule Change-Id: Ie246dd73b678921c3a0c503022c58b3a2c8dc887
2017-03-24Change TFM of Xamarin.Forms.Platform.Tizen to netstandard1.6WonYoung Choi2-3/+2
Change-Id: Iae3c01eedcd8042f7aa0ef93bf0bef6ceb640349