blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 4
410
| content_id
stringlengths 40
40
| detected_licenses
sequencelengths 0
51
| license_type
stringclasses 2
values | repo_name
stringlengths 5
132
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringlengths 4
80
| visit_date
timestamp[us] | revision_date
timestamp[us] | committer_date
timestamp[us] | github_id
int64 5.85k
689M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 22
values | gha_event_created_at
timestamp[us] | gha_created_at
timestamp[us] | gha_language
stringclasses 131
values | src_encoding
stringclasses 34
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 3
9.45M
| extension
stringclasses 32
values | content
stringlengths 3
9.45M
| authors
sequencelengths 1
1
| author_id
stringlengths 0
313
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
b23854fd33510b46f9a5016984566b753dda3d8a | f9a9fd3f1e18c2f2cabcc2f0ebc225b1b25de60e | /app/src/main/java/com/ming/sjll/my/fragment/CollectionProjectFragemt.java | 889163dd1cc898ce4b60dbf91a9ec25c69afd5cd | [] | no_license | 15307388990/SJLL | 273541dfa40f8a3a92e88890941ed68a5cd129d5 | e4dd377d6408b6c28e6683843cc4f39c11f2442b | refs/heads/master | 2020-08-03T04:27:46.225903 | 2019-11-23T02:41:32 | 2019-11-23T02:41:32 | 211,624,684 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,398 | java | package com.ming.sjll.my.fragment;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.view.View;
import com.chad.library.adapter.base.BaseQuickAdapter;
import com.ming.sjll.R;
import com.ming.sjll.base.fragment.MvpFragment;
import com.ming.sjll.base.widget.ToastShow;
import com.ming.sjll.my.adapter.CollectionGoodsAdapter;
import com.ming.sjll.my.bean.ColletionGoodsBean;
import com.ming.sjll.my.presenter.ColletionGoodsPresenter;
import com.ming.sjll.my.presenter.ColletionProjectPresenter;
import com.ming.sjll.my.view.ColletionGoodslView;
import com.ming.sjll.my.view.ColletionProjectlView;
import com.ming.sjll.supplier.adapter.Comprehendapter;
import com.ming.sjll.supplier.bean.ComprehenBean;
import butterknife.BindView;
/**
* @author luoming
* created at 2019-10-14 10:32
* 收藏 项目
*/
public class CollectionProjectFragemt extends MvpFragment<ColletionProjectlView, ColletionProjectPresenter> implements ColletionProjectlView {
@BindView(R.id.recyclerview)
RecyclerView recyclerview;
public static CollectionProjectFragemt newInstance() {
CollectionProjectFragemt projectManagementFragemt = new CollectionProjectFragemt();
return projectManagementFragemt;
}
@Override
protected void onCreateView(Bundle savedInstanceState) {
super.onCreateView(savedInstanceState);
setContentView(R.layout.fragemt_recycle);
}
@Override
public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
}
@Override
protected ColletionProjectPresenter createPresenter() {
return new ColletionProjectPresenter();
}
@Override
public void showLoading(String msg) {
}
@Override
public void hideLoading() {
}
@Override
public void showError(String msg) {
ToastShow.s(msg);
}
@Override
public void onDestroyView() {
super.onDestroyView();
}
@Override
public void ShowData(ComprehenBean pBean) {
recyclerview.setLayoutManager(new LinearLayoutManager(getActivity()));
Comprehendapter comprehendapter=new Comprehendapter(pBean.getData().getData());
recyclerview.setAdapter(comprehendapter);
}
}
| [
"[email protected]"
] | |
0b91c646808486652b3022c0438cf0858f2fd7a5 | 5433fb2dda7fbffcffd16fa0ad56ff9c58bbf0ad | /JVMDebugTest/src/TestEnum.java | 26031c52843880c7d8a06be4be15f7268616b50f | [] | no_license | picpromusic/jvmdebug | fc93950625716b44f07723f5b6ef361d28536316 | 1e1c1253f4b93afa0559f046e4e45fd47fd2fe9b | refs/heads/master | 2016-09-03T07:32:37.464937 | 2013-05-25T16:02:55 | 2013-05-25T16:02:55 | 4,027,671 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 131 | java | public enum TestEnum {
A, B;
public String getName() {
if (this == A) {
return "Huch";
}
return "Haha";
}
}
| [
"[email protected]"
] | |
56a1dbb9eddaca8b9ba37c328578e564dd6681a1 | 3c6ea244c21d9655926be9f280a0b2e81c24369a | /AddressBookApplication/src/address/UnitTest/NoteTest.java | 5ec57bb4657101d10bfa45f10834601115f67483 | [] | no_license | smahankali/AddressBookApplication | 9bad026ef3f481740481830668908c3c276eb070 | 7a7160508ac071a0a2bf23db29a2efb86737d2e3 | refs/heads/master | 2021-01-21T07:14:07.677718 | 2016-05-17T14:50:53 | 2016-05-17T14:50:53 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,328 | java | /**
*
*/
package address.UnitTest;
import static org.junit.Assert.*;
import org.junit.Test;
import address.data.note.Note;
/**
* The NoteTest class performs unit testing on all methods inside the Note class
* @author Shravya Mahankali
* @version 1.0
* @since 15 April 2016 */
public class NoteTest {
/**
* Test method for {@link address.data.note.Note#Note(int, java.lang.String)}.
*/
@Test
public void testNote() {
Note n=new Note(12,"This is a new note");
assertEquals(12,n.getId());
assertEquals("This is a new note",n.getComments());
n=new Note(13,"This is another note");
assertEquals(13,n.getId());
assertEquals("This is another note",n.getComments());
}
/**
* Test method for {@link address.data.note.Note#getId()}.
*/
@Test
public void testGetId() {
Note n=new Note(12,"This is a new note");
assertEquals(12,n.getId());
n=new Note(13,"This is another note");
assertEquals(13,n.getId());
}
/**
* Test method for {@link address.data.note.Note#getComments()}.
*/
@Test
public void testGetComments() {
Note n=new Note(12,"This is a new note");
assertEquals("This is a new note",n.getComments());
n=new Note(13,"This is another note");
assertEquals("This is another note",n.getComments());
}
}
| [
"shrav@DESKTOP-AOAE4I1"
] | shrav@DESKTOP-AOAE4I1 |
633352fcb73c027c7de47ac5a5da72812d76f4fa | 11825967f0656b0347da8755f526c2b2e696812b | /app/src/androidTest/java/edu/tamu/geoinnovation/fpx/ApplicationTest.java | 7e573c9f387787d4911649bd371facc106e4b3d1 | [] | no_license | antoniotexas/FitTrack | a20ad6ddedef8db4d89094c9ea7254d54668ac65 | f4cea5cb4310edf09351ac6a086b2f3f0b0b24f9 | refs/heads/master | 2020-03-17T23:58:33.533259 | 2018-05-19T14:58:28 | 2018-05-19T14:58:28 | 134,070,444 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 357 | java | package edu.tamu.geoinnovation.fpx;
import android.app.Application;
import android.test.ApplicationTestCase;
/**
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
*/
public class ApplicationTest extends ApplicationTestCase<Application> {
public ApplicationTest() {
super(Application.class);
}
} | [
"[email protected]"
] | |
aeb61810bb001b5b9d4be67fedc006cb35de13c9 | c53cbbffaf6840cea1f7620a8f9317a8b9308126 | /src/main/java/com/apptium/customer/web/rest/CustSecurityCharResource.java | 487bffc046a2de691b02ec7e9e477a9094191731 | [] | no_license | ravi7mech/customer-management | 285a63eee314b813576b9522bc4e79d30bfb0211 | af36e96bf74ce1a947cb36a89e97f71dc34f3d63 | refs/heads/main | 2023-06-06T22:41:01.803877 | 2021-07-14T07:21:39 | 2021-07-14T07:21:39 | 385,848,609 | 0 | 0 | null | 2021-07-14T07:21:40 | 2021-07-14T07:14:19 | Java | UTF-8 | Java | false | false | 9,797 | java | package com.apptium.customer.web.rest;
import com.apptium.customer.repository.CustSecurityCharRepository;
import com.apptium.customer.service.CustSecurityCharQueryService;
import com.apptium.customer.service.CustSecurityCharService;
import com.apptium.customer.service.criteria.CustSecurityCharCriteria;
import com.apptium.customer.service.dto.CustSecurityCharDTO;
import com.apptium.customer.web.rest.errors.BadRequestAlertException;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.validation.Valid;
import javax.validation.constraints.NotNull;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
import tech.jhipster.web.util.HeaderUtil;
import tech.jhipster.web.util.ResponseUtil;
/**
* REST controller for managing {@link com.apptium.customer.domain.CustSecurityChar}.
*/
@RestController
@RequestMapping("/api")
public class CustSecurityCharResource {
private final Logger log = LoggerFactory.getLogger(CustSecurityCharResource.class);
private static final String ENTITY_NAME = "customerManagementCustSecurityChar";
@Value("${jhipster.clientApp.name}")
private String applicationName;
private final CustSecurityCharService custSecurityCharService;
private final CustSecurityCharRepository custSecurityCharRepository;
private final CustSecurityCharQueryService custSecurityCharQueryService;
public CustSecurityCharResource(
CustSecurityCharService custSecurityCharService,
CustSecurityCharRepository custSecurityCharRepository,
CustSecurityCharQueryService custSecurityCharQueryService
) {
this.custSecurityCharService = custSecurityCharService;
this.custSecurityCharRepository = custSecurityCharRepository;
this.custSecurityCharQueryService = custSecurityCharQueryService;
}
/**
* {@code POST /cust-security-chars} : Create a new custSecurityChar.
*
* @param custSecurityCharDTO the custSecurityCharDTO to create.
* @return the {@link ResponseEntity} with status {@code 201 (Created)} and with body the new custSecurityCharDTO, or with status {@code 400 (Bad Request)} if the custSecurityChar has already an ID.
* @throws URISyntaxException if the Location URI syntax is incorrect.
*/
@PostMapping("/cust-security-chars")
public ResponseEntity<CustSecurityCharDTO> createCustSecurityChar(@Valid @RequestBody CustSecurityCharDTO custSecurityCharDTO)
throws URISyntaxException {
log.debug("REST request to save CustSecurityChar : {}", custSecurityCharDTO);
if (custSecurityCharDTO.getId() != null) {
throw new BadRequestAlertException("A new custSecurityChar cannot already have an ID", ENTITY_NAME, "idexists");
}
CustSecurityCharDTO result = custSecurityCharService.save(custSecurityCharDTO);
return ResponseEntity
.created(new URI("/api/cust-security-chars/" + result.getId()))
.headers(HeaderUtil.createEntityCreationAlert(applicationName, false, ENTITY_NAME, result.getId().toString()))
.body(result);
}
/**
* {@code PUT /cust-security-chars/:id} : Updates an existing custSecurityChar.
*
* @param id the id of the custSecurityCharDTO to save.
* @param custSecurityCharDTO the custSecurityCharDTO to update.
* @return the {@link ResponseEntity} with status {@code 200 (OK)} and with body the updated custSecurityCharDTO,
* or with status {@code 400 (Bad Request)} if the custSecurityCharDTO is not valid,
* or with status {@code 500 (Internal Server Error)} if the custSecurityCharDTO couldn't be updated.
* @throws URISyntaxException if the Location URI syntax is incorrect.
*/
@PutMapping("/cust-security-chars/{id}")
public ResponseEntity<CustSecurityCharDTO> updateCustSecurityChar(
@PathVariable(value = "id", required = false) final Long id,
@Valid @RequestBody CustSecurityCharDTO custSecurityCharDTO
) throws URISyntaxException {
log.debug("REST request to update CustSecurityChar : {}, {}", id, custSecurityCharDTO);
if (custSecurityCharDTO.getId() == null) {
throw new BadRequestAlertException("Invalid id", ENTITY_NAME, "idnull");
}
if (!Objects.equals(id, custSecurityCharDTO.getId())) {
throw new BadRequestAlertException("Invalid ID", ENTITY_NAME, "idinvalid");
}
if (!custSecurityCharRepository.existsById(id)) {
throw new BadRequestAlertException("Entity not found", ENTITY_NAME, "idnotfound");
}
CustSecurityCharDTO result = custSecurityCharService.save(custSecurityCharDTO);
return ResponseEntity
.ok()
.headers(HeaderUtil.createEntityUpdateAlert(applicationName, false, ENTITY_NAME, custSecurityCharDTO.getId().toString()))
.body(result);
}
/**
* {@code PATCH /cust-security-chars/:id} : Partial updates given fields of an existing custSecurityChar, field will ignore if it is null
*
* @param id the id of the custSecurityCharDTO to save.
* @param custSecurityCharDTO the custSecurityCharDTO to update.
* @return the {@link ResponseEntity} with status {@code 200 (OK)} and with body the updated custSecurityCharDTO,
* or with status {@code 400 (Bad Request)} if the custSecurityCharDTO is not valid,
* or with status {@code 404 (Not Found)} if the custSecurityCharDTO is not found,
* or with status {@code 500 (Internal Server Error)} if the custSecurityCharDTO couldn't be updated.
* @throws URISyntaxException if the Location URI syntax is incorrect.
*/
@PatchMapping(value = "/cust-security-chars/{id}", consumes = "application/merge-patch+json")
public ResponseEntity<CustSecurityCharDTO> partialUpdateCustSecurityChar(
@PathVariable(value = "id", required = false) final Long id,
@NotNull @RequestBody CustSecurityCharDTO custSecurityCharDTO
) throws URISyntaxException {
log.debug("REST request to partial update CustSecurityChar partially : {}, {}", id, custSecurityCharDTO);
if (custSecurityCharDTO.getId() == null) {
throw new BadRequestAlertException("Invalid id", ENTITY_NAME, "idnull");
}
if (!Objects.equals(id, custSecurityCharDTO.getId())) {
throw new BadRequestAlertException("Invalid ID", ENTITY_NAME, "idinvalid");
}
if (!custSecurityCharRepository.existsById(id)) {
throw new BadRequestAlertException("Entity not found", ENTITY_NAME, "idnotfound");
}
Optional<CustSecurityCharDTO> result = custSecurityCharService.partialUpdate(custSecurityCharDTO);
return ResponseUtil.wrapOrNotFound(
result,
HeaderUtil.createEntityUpdateAlert(applicationName, false, ENTITY_NAME, custSecurityCharDTO.getId().toString())
);
}
/**
* {@code GET /cust-security-chars} : get all the custSecurityChars.
*
* @param criteria the criteria which the requested entities should match.
* @return the {@link ResponseEntity} with status {@code 200 (OK)} and the list of custSecurityChars in body.
*/
@GetMapping("/cust-security-chars")
public ResponseEntity<List<CustSecurityCharDTO>> getAllCustSecurityChars(CustSecurityCharCriteria criteria) {
log.debug("REST request to get CustSecurityChars by criteria: {}", criteria);
List<CustSecurityCharDTO> entityList = custSecurityCharQueryService.findByCriteria(criteria);
return ResponseEntity.ok().body(entityList);
}
/**
* {@code GET /cust-security-chars/count} : count all the custSecurityChars.
*
* @param criteria the criteria which the requested entities should match.
* @return the {@link ResponseEntity} with status {@code 200 (OK)} and the count in body.
*/
@GetMapping("/cust-security-chars/count")
public ResponseEntity<Long> countCustSecurityChars(CustSecurityCharCriteria criteria) {
log.debug("REST request to count CustSecurityChars by criteria: {}", criteria);
return ResponseEntity.ok().body(custSecurityCharQueryService.countByCriteria(criteria));
}
/**
* {@code GET /cust-security-chars/:id} : get the "id" custSecurityChar.
*
* @param id the id of the custSecurityCharDTO to retrieve.
* @return the {@link ResponseEntity} with status {@code 200 (OK)} and with body the custSecurityCharDTO, or with status {@code 404 (Not Found)}.
*/
@GetMapping("/cust-security-chars/{id}")
public ResponseEntity<CustSecurityCharDTO> getCustSecurityChar(@PathVariable Long id) {
log.debug("REST request to get CustSecurityChar : {}", id);
Optional<CustSecurityCharDTO> custSecurityCharDTO = custSecurityCharService.findOne(id);
return ResponseUtil.wrapOrNotFound(custSecurityCharDTO);
}
/**
* {@code DELETE /cust-security-chars/:id} : delete the "id" custSecurityChar.
*
* @param id the id of the custSecurityCharDTO to delete.
* @return the {@link ResponseEntity} with status {@code 204 (NO_CONTENT)}.
*/
@DeleteMapping("/cust-security-chars/{id}")
public ResponseEntity<Void> deleteCustSecurityChar(@PathVariable Long id) {
log.debug("REST request to delete CustSecurityChar : {}", id);
custSecurityCharService.delete(id);
return ResponseEntity
.noContent()
.headers(HeaderUtil.createEntityDeletionAlert(applicationName, false, ENTITY_NAME, id.toString()))
.build();
}
}
| [
"[email protected]"
] | |
bb48f3fde36bd61230822062b1c0a118e0c80003 | 3125139655dcd5bb157bdced714056b4f55a99ec | /src/com/mishiranu/dashchan/content/service/AudioPlayerService.java | 59490d5c31640505355ac6a924596af179439e01 | [
"Apache-2.0"
] | permissive | CesPaul/Dashchan | 1b9a6efabb82e6a9c364e471e3f696e6ae225736 | 91900751710290f2a276024a514c0404881197fe | refs/heads/master | 2020-06-16T02:58:02.270115 | 2020-03-13T09:53:52 | 2020-03-13T09:53:52 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 13,509 | java | /*
* Copyright 2014-2016 Fukurou Mishiranu
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.mishiranu.dashchan.content.service;
import java.io.File;
import android.annotation.TargetApi;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.content.res.TypedArray;
import android.media.AudioManager;
import android.media.MediaPlayer;
import android.net.Uri;
import android.os.Build;
import android.os.PowerManager;
import android.support.v4.content.LocalBroadcastManager;
import android.view.ContextThemeWrapper;
import com.mishiranu.dashchan.C;
import com.mishiranu.dashchan.R;
import com.mishiranu.dashchan.content.CacheManager;
import com.mishiranu.dashchan.content.async.ReadFileTask;
import com.mishiranu.dashchan.content.model.ErrorItem;
import com.mishiranu.dashchan.preference.Preferences;
import com.mishiranu.dashchan.util.ResourceUtils;
import com.mishiranu.dashchan.util.ToastUtils;
import com.mishiranu.dashchan.util.ViewUtils;
public class AudioPlayerService extends Service implements AudioManager.OnAudioFocusChangeListener,
MediaPlayer.OnCompletionListener, MediaPlayer.OnErrorListener, ReadFileTask.Callback {
private static final String ACTION_START = "com.mishiranu.dashchan.action.START";
public static final String ACTION_CANCEL = "com.mishiranu.dashchan.action.CANCEL";
public static final String ACTION_TOGGLE = "com.mishiranu.dashchan.action.TOGGLE";
private static final String EXTRA_CHAN_NAME = "com.mishiranu.dashchan.extra.CHAN_NAME";
private static final String EXTRA_FILE_NAME = "com.mishiranu.dashchan.extra.FILE_NAME";
private AudioManager audioManager;
private NotificationManager notificationManager;
private int notificationColor;
private PowerManager.WakeLock wakeLock;
private Notification.Builder builder;
private ReadFileTask readFileTask;
private MediaPlayer mediaPlayer;
private String chanName;
private String fileName;
private File audioFile;
private Context context;
private boolean pausedByTransientLossOfFocus = false;
private static Intent obtainIntent(Context context, String action) {
return new Intent(context, AudioPlayerService.class).setAction(action);
}
@TargetApi(Build.VERSION_CODES.LOLLIPOP)
@Override
public void onCreate() {
super.onCreate();
audioManager = (AudioManager) getSystemService(AUDIO_SERVICE);
notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
int notificationColor = 0;
if (C.API_LOLLIPOP) {
Context themedContext = new ContextThemeWrapper(this, Preferences.getThemeResource());
notificationColor = ResourceUtils.getColor(themedContext, android.R.attr.colorAccent);
}
this.notificationColor = notificationColor;
PowerManager powerManager = (PowerManager) getSystemService(POWER_SERVICE);
wakeLock = powerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "AudioPlayerWakeLock");
wakeLock.setReferenceCounted(false);
context = new ContextThemeWrapper(this, R.style.Theme_Special_Notification);
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
if (intent != null) {
String action = intent.getAction();
if (ACTION_START.equals(action)) {
cleanup();
CacheManager cacheManager = CacheManager.getInstance();
if (!cacheManager.isCacheAvailable()) {
ToastUtils.show(this, R.string.message_cache_unavailable);
stopSelf();
sendToActivity(ACTION_CANCEL);
} else {
Uri uri = intent.getData();
chanName = intent.getStringExtra(EXTRA_CHAN_NAME);
fileName = intent.getStringExtra(EXTRA_FILE_NAME);
File cachedFile = cacheManager.getMediaFile(uri, true);
if (cachedFile == null) {
ToastUtils.show(this, R.string.message_cache_unavailable);
cleanup();
stopSelf();
sendToActivity(ACTION_CANCEL);
} else {
wakeLock.acquire();
if (cachedFile.exists()) {
initAndPlayAudio(cachedFile);
} else {
readFileTask = new ReadFileTask(this, chanName, uri, cachedFile, true, this);
readFileTask.executeOnExecutor(ReadFileTask.THREAD_POOL_EXECUTOR);
}
}
}
} else if (ACTION_CANCEL.equals(action)) {
cleanup();
stopSelf();
sendToActivity(ACTION_CANCEL);
} else if (ACTION_TOGGLE.equals(action)) {
togglePlayback();
}
}
return START_NOT_STICKY;
}
@Override
public void onDestroy() {
cleanup();
super.onDestroy();
}
private void sendToActivity(String action) {
LocalBroadcastManager.getInstance(this).sendBroadcast(new Intent(action));
}
private void cleanup() {
if (readFileTask != null) {
readFileTask.cancel();
readFileTask = null;
}
audioManager.abandonAudioFocus(this);
if (mediaPlayer != null) {
mediaPlayer.stop();
mediaPlayer.release();
mediaPlayer = null;
}
wakeLock.release();
stopForeground(true);
sendToActivity(ACTION_CANCEL);
}
private void togglePlayback() {
boolean success;
if (mediaPlayer.isPlaying()) {
success = pause(true);
} else {
success = play(true);
}
if (success) {
refreshPlaybackNotification(true);
sendToActivity(ACTION_TOGGLE);
} else {
ToastUtils.show(context, R.string.message_playback_error);
cleanup();
stopSelf();
sendToActivity(ACTION_CANCEL);
}
}
public class Binder extends android.os.Binder {
public void togglePlayback() {
if (mediaPlayer != null) {
AudioPlayerService.this.togglePlayback();
}
}
public void stop() {
cleanup();
stopSelf();
}
public boolean isPlaying() {
return mediaPlayer != null ? mediaPlayer.isPlaying() : false;
}
public String getFileName() {
return fileName;
}
public int getPosition() {
return mediaPlayer != null ? mediaPlayer.getCurrentPosition() : -1;
}
public int getDuration() {
return mediaPlayer != null ? mediaPlayer.getDuration() : -1;
}
public void seekTo(int msec) {
if (mediaPlayer != null) {
mediaPlayer.seekTo(msec);
}
}
}
@Override
public Binder onBind(Intent intent) {
return new Binder();
}
@Override
public void onAudioFocusChange(int focusChange) {
switch (focusChange) {
case AudioManager.AUDIOFOCUS_LOSS: {
pause(true);
break;
}
case AudioManager.AUDIOFOCUS_LOSS_TRANSIENT: {
boolean playing = mediaPlayer.isPlaying();
pause(false);
if (playing) {
pausedByTransientLossOfFocus = true;
}
break;
}
case AudioManager.AUDIOFOCUS_GAIN: {
if (pausedByTransientLossOfFocus) {
play(false);
}
break;
}
}
}
@Override
public void onCompletion(MediaPlayer mp) {
pause(true);
mediaPlayer.stop();
mediaPlayer.release();
initAndPlayAudio(audioFile);
}
@Override
public boolean onError(MediaPlayer mp, int what, int extra) {
ToastUtils.show(context, R.string.message_playback_error);
if (audioFile != null) {
audioFile.delete();
}
cleanup();
stopSelf();
sendToActivity(ACTION_CANCEL);
return true;
}
private boolean pause(boolean resetFocus) {
if (resetFocus) {
audioManager.abandonAudioFocus(this);
}
mediaPlayer.pause();
wakeLock.acquire(15000);
return true;
}
private boolean play(boolean resetFocus) {
if (resetFocus && audioManager.requestAudioFocus(this, AudioManager.STREAM_MUSIC, AudioManager.AUDIOFOCUS_GAIN)
!= AudioManager.AUDIOFOCUS_REQUEST_GRANTED) {
return false;
}
mediaPlayer.start();
wakeLock.acquire();
return true;
}
private void initAndPlayAudio(File file) {
audioFile = file;
pausedByTransientLossOfFocus = false;
mediaPlayer = new MediaPlayer();
mediaPlayer.setLooping(false);
mediaPlayer.setOnCompletionListener(this);
mediaPlayer.setOnErrorListener(this);
try {
mediaPlayer.setDataSource(file.getPath());
mediaPlayer.prepare();
} catch (Exception e) {
audioFile.delete();
CacheManager.getInstance().handleDownloadedFile(audioFile, false);
ToastUtils.show(context, R.string.message_playback_error);
cleanup();
stopSelf();
sendToActivity(ACTION_CANCEL);
return;
}
play(true);
refreshPlaybackNotification(true);
}
private int progress, progressMax;
private long lastUpdate;
private static final int[] ICON_ATTRS = {R.attr.notificationRefresh, R.attr.notificationCancel,
R.attr.notificationPlay, R.attr.notificationPause};
@TargetApi(Build.VERSION_CODES.LOLLIPOP)
private void refreshPlaybackNotification(boolean recreate) {
Notification.Builder builder = this.builder;
if (builder == null || recreate) {
builder = new Notification.Builder(this);
builder.setSmallIcon(R.drawable.ic_audiotrack_white_24dp);
PendingIntent contentIntent = PendingIntent.getActivity(context, 0,
new Intent(this, AudioPlayerActivity.class), PendingIntent.FLAG_UPDATE_CURRENT);
builder.setContentIntent(contentIntent);
TypedArray typedArray = context.obtainStyledAttributes(ICON_ATTRS);
PendingIntent toggleIntent = PendingIntent.getService(context, 0,
obtainIntent(this, ACTION_TOGGLE), PendingIntent.FLAG_UPDATE_CURRENT);
boolean playing = mediaPlayer.isPlaying();
ViewUtils.addNotificationAction(builder, context, typedArray, playing ? 3 : 2,
playing ? R.string.action_pause : R.string.action_play, toggleIntent);
PendingIntent cancelIntent = PendingIntent.getService(context, 0,
obtainIntent(this, ACTION_CANCEL), PendingIntent.FLAG_UPDATE_CURRENT);
ViewUtils.addNotificationAction(builder, context, typedArray, 1, R.string.action_stop, cancelIntent);
typedArray.recycle();
if (C.API_LOLLIPOP) {
builder.setColor(notificationColor);
}
this.builder = builder;
builder.setContentTitle(getString(R.string.message_file_playback));
builder.setContentText(getString(R.string.message_download_name_format, fileName));
}
startForeground(C.NOTIFICATION_ID_AUDIO_PLAYER, builder.build());
}
@TargetApi(Build.VERSION_CODES.LOLLIPOP)
private void refreshDownloadingNotification(boolean recreate, boolean error, Uri uri) {
Notification.Builder builder = this.builder;
if (builder == null || recreate) {
builder = new Notification.Builder(this);
builder.setSmallIcon(error ? android.R.drawable.stat_sys_download_done
: android.R.drawable.stat_sys_download);
builder.setDeleteIntent(PendingIntent.getService(context, 0, obtainIntent(this, ACTION_CANCEL),
PendingIntent.FLAG_UPDATE_CURRENT));
TypedArray typedArray = context.obtainStyledAttributes(ICON_ATTRS);
if (error) {
PendingIntent retryIntent = PendingIntent.getService(context, 0, obtainIntent(this, ACTION_START)
.setData(uri).putExtra(EXTRA_CHAN_NAME, chanName).putExtra(EXTRA_FILE_NAME, fileName),
PendingIntent.FLAG_UPDATE_CURRENT);
ViewUtils.addNotificationAction(builder, context, typedArray, 0,
R.string.action_retry, retryIntent);
} else {
PendingIntent cancelIntent = PendingIntent.getService(context, 0, obtainIntent(this, ACTION_CANCEL),
PendingIntent.FLAG_UPDATE_CURRENT);
ViewUtils.addNotificationAction(builder, context, typedArray, 1,
android.R.string.cancel, cancelIntent);
}
typedArray.recycle();
if (C.API_LOLLIPOP) {
builder.setColor(notificationColor);
}
this.builder = builder;
}
if (error) {
builder.setContentTitle(getString(R.string.message_download_completed));
builder.setContentText(getString(R.string.message_download_result_format, 0, 1));
notificationManager.notify(C.NOTIFICATION_ID_AUDIO_PLAYER, builder.build());
} else {
builder.setContentTitle(getString(R.string.message_download_audio));
builder.setContentText(getString(R.string.message_download_name_format, fileName));
builder.setProgress(progressMax, progress, progressMax == 0 ||
progress > progressMax || progress < 0);
startForeground(C.NOTIFICATION_ID_AUDIO_PLAYER, builder.build());
}
}
@Override
public void onFileExists(Uri uri, File file) {
readFileTask = null;
initAndPlayAudio(file);
}
@Override
public void onStartDownloading(Uri uri, File file) {
lastUpdate = 0L;
refreshDownloadingNotification(true, false, null);
}
@Override
public void onFinishDownloading(boolean success, Uri uri, File file, ErrorItem errorItem) {
wakeLock.acquire(15000);
readFileTask = null;
stopForeground(true);
if (success) {
initAndPlayAudio(file);
} else {
refreshDownloadingNotification(true, true, uri);
}
}
@Override
public void onUpdateProgress(long progress, long progressMax) {
this.progress = (int) progress;
this.progressMax = (int) progressMax;
long t = System.currentTimeMillis();
if (t - lastUpdate >= 1000L) {
lastUpdate = t;
refreshDownloadingNotification(false, false, null);
}
}
public static void start(Context context, String chanName, Uri uri, String fileName) {
context.startService(obtainIntent(context, ACTION_START).setData(uri).putExtra(EXTRA_CHAN_NAME, chanName)
.putExtra(EXTRA_FILE_NAME, fileName));
}
} | [
"[email protected]"
] | |
5bbebaed14a79487d7ddbbead0e2336af362f8b8 | b4c0e46b2b7282fa4000425357b1ff2cfe945608 | /platform-framework/platform-restful/src/main/java/com/platform/dao/ApiCardMapper.java | d7e1a34f95399c113be7ab121ba0807744823aff | [
"Apache-2.0"
] | permissive | haolingjie/backgroManaSys | e0c9846f765c9dbd5e33b358a364dfcd9910f155 | c5f182c47f071d1ba485b6400c628df90b0e0ea8 | refs/heads/master | 2022-12-23T09:47:48.983410 | 2019-07-13T18:10:31 | 2019-07-13T18:10:31 | 184,963,339 | 0 | 0 | null | 2022-12-16T11:34:11 | 2019-05-05T01:42:03 | JavaScript | UTF-8 | Java | false | false | 440 | java | package com.platform.dao;
import com.platform.entity.TokenEntity;
import com.platform.model.page.BusiReservationCardPage;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
* 用户Token
*
* @author lipengjun
* @date 2017年11月20日 下午3:29:40
*/
public interface ApiCardMapper extends BaseDao<BusiReservationCardPage> {
List<BusiReservationCardPage> queryObjectByPage(BusiReservationCardPage page);
}
| [
"[email protected]"
] | |
ac6009aa1ee426162f0fdfac0f3be63a937f0cb8 | cb94c29ba92f72108339687b8bc93d8ddd38e5bf | /Graphisme/Ecole_gr.java | 49ec630ce6a618a82ffcc24eb31e2dd695c76d73 | [] | no_license | theo-ece/Projet_java | c7c7e0c4d61e4ee3f5b2ac8370c9edc68d99fa58 | 6a3e365fcde092c30a45b6b7ef1db02200cbc971 | refs/heads/master | 2020-05-25T13:56:26.699570 | 2019-06-09T17:30:04 | 2019-06-09T17:30:04 | 187,832,680 | 0 | 0 | null | 2019-06-09T17:30:05 | 2019-05-21T12:28:45 | Java | UTF-8 | Java | false | false | 8,066 | java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package Graphisme;
/**
*
* @author lro
*/
public class Ecole_gr extends javax.swing.JFrame {
/**
* Creates new form Ecole_gr
*/
public Ecole_gr() {
initComponents();
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
jPanel1 = new javax.swing.JPanel();
Valider = new javax.swing.JButton();
jPanel2 = new javax.swing.JPanel();
jLabel1 = new javax.swing.JLabel();
Ecole = new javax.swing.JComboBox<>();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
jPanel1.setBackground(new java.awt.Color(255, 255, 255));
Valider.setBackground(new java.awt.Color(153, 0, 0));
Valider.setForeground(new java.awt.Color(255, 255, 255));
Valider.setText("Valider");
Valider.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
ValiderActionPerformed(evt);
}
});
jPanel2.setBackground(new java.awt.Color(153, 0, 40));
jLabel1.setBackground(new java.awt.Color(0, 240, 240));
jLabel1.setFont(new java.awt.Font("Arial", 0, 18)); // NOI18N
jLabel1.setForeground(new java.awt.Color(255, 255, 255));
jLabel1.setText("Choisissez quelle école administrer");
javax.swing.GroupLayout jPanel2Layout = new javax.swing.GroupLayout(jPanel2);
jPanel2.setLayout(jPanel2Layout);
jPanel2Layout.setHorizontalGroup(
jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel2Layout.createSequentialGroup()
.addGap(71, 71, 71)
.addComponent(jLabel1)
.addContainerGap(49, Short.MAX_VALUE))
);
jPanel2Layout.setVerticalGroup(
jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jLabel1, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.PREFERRED_SIZE, 44, javax.swing.GroupLayout.PREFERRED_SIZE)
);
Ecole.setBackground(new java.awt.Color(153, 0, 0));
Ecole.setForeground(new java.awt.Color(255, 255, 255));
Ecole.setModel(new javax.swing.DefaultComboBoxModel<>(new String[] { "La Pro", "ECE Paris", "Louis Pasteur" }));
Ecole.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
EcoleActionPerformed(evt);
}
});
javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);
jPanel1.setLayout(jPanel1Layout);
jPanel1Layout.setHorizontalGroup(
jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jPanel2, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addGroup(jPanel1Layout.createSequentialGroup()
.addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel1Layout.createSequentialGroup()
.addGap(93, 93, 93)
.addComponent(Ecole, javax.swing.GroupLayout.PREFERRED_SIZE, 228, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGroup(jPanel1Layout.createSequentialGroup()
.addGap(172, 172, 172)
.addComponent(Valider)))
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
);
jPanel1Layout.setVerticalGroup(
jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel1Layout.createSequentialGroup()
.addComponent(jPanel2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(51, 51, 51)
.addComponent(Ecole, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 96, Short.MAX_VALUE)
.addComponent(Valider)
.addGap(62, 62, 62))
);
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jPanel1, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
);
pack();
}// </editor-fold>//GEN-END:initComponents
private void ValiderActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_ValiderActionPerformed
// TODO add your handling code here:
}//GEN-LAST:event_ValiderActionPerformed
private void EcoleActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_EcoleActionPerformed
// TODO add your handling code here:
}//GEN-LAST:event_EcoleActionPerformed
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(Ecole_gr.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(Ecole_gr.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(Ecole_gr.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(Ecole_gr.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new Ecole_gr().setVisible(true);
}
});
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JComboBox<String> Ecole;
private javax.swing.JButton Valider;
private javax.swing.JLabel jLabel1;
private javax.swing.JPanel jPanel1;
private javax.swing.JPanel jPanel2;
// End of variables declaration//GEN-END:variables
}
| [
"[email protected]"
] | |
39e031c3d07a00f4813c03a60f8050f293a98291 | 9ce4ccdea825037580d62166437437dbb5673e66 | /CCC/ccc13j2.java | 871ea7f08d9689272fc8de00f7a99a4008e7b564 | [] | no_license | makeren/competitive-programming | 7e2c0d8daf9441e1ca02b6137618f03ce977b8c9 | f5c5e4b96f32c34c0c2bdb0b6a4053b56dff7cef | refs/heads/master | 2022-03-15T13:39:56.916956 | 2019-11-03T03:21:53 | 2019-11-03T03:21:53 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 505 | java | import java.util.Scanner;
public class ccc13j2 {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc = new Scanner(System.in);
String S = sc.nextLine();
S = S.replaceAll("I", "");
S = S.replaceAll("O", "");
S = S.replaceAll("S", "");
S = S.replaceAll("H", "");
S = S.replaceAll("Z", "");
S = S.replaceAll("X", "");
S = S.replaceAll("N", "");
if(S.length()==0) {
System.out.println("YES");
} else {
System.out.println("NO");
}
}
}
| [
"[email protected]"
] | |
60768516f2f45393a9bcf7daed55fe3aaa4691da | fa91450deb625cda070e82d5c31770be5ca1dec6 | /Diff-Raw-Data/13/13_9c936a6575e678b50d0a6c77de99474e97dabab9/JavaFXCompletionEnvironment/13_9c936a6575e678b50d0a6c77de99474e97dabab9_JavaFXCompletionEnvironment_t.java | f0aac3e861275f804a7c566b62dd3c7ab9412016 | [] | no_license | zhongxingyu/Seer | 48e7e5197624d7afa94d23f849f8ea2075bcaec0 | c11a3109fdfca9be337e509ecb2c085b60076213 | refs/heads/master | 2023-07-06T12:48:55.516692 | 2023-06-22T07:55:56 | 2023-06-22T07:55:56 | 259,613,157 | 6 | 2 | null | 2023-06-22T07:55:57 | 2020-04-28T11:07:49 | null | UTF-8 | Java | false | false | 86,901 | java | /*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright 1997-2009 Sun Microsystems, Inc. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common
* Development and Distribution License("CDDL") (collectively, the
* "License"). You may not use this file except in compliance with the
* License. You can obtain a copy of the License at
* http://www.netbeans.org/cddl-gplv2.html
* or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
* specific language governing permissions and limitations under the
* License. When distributing the software, include this License Header
* Notice in each file and include the License file at
* nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
* particular file as subject to the "Classpath" exception as provided
* by Sun in the GPL Version 2 section of the License file that
* accompanied this code. If applicable, add the following below the
* License Header, with the fields enclosed by brackets [] replaced by
* your own identifying information:
* "Portions Copyrighted [year] [name of copyright owner]"
*
* Contributor(s):
*
* The Original Software is NetBeans. The Initial Developer of the Original
* Software is Sun Microsystems, Inc. Portions Copyright 1997-2009 Sun
* Microsystems, Inc. All Rights Reserved.
*
* If you wish your version of this file to be governed by only the CDDL
* or only the GPL Version 2, indicate your decision by adding
* "[Contributor] elects to include this software in this distribution
* under the [CDDL or GPL Version 2] license." If you do not indicate a
* single choice of license, a recipient has the option to distribute
* your version of this file under either the CDDL, the GPL Version 2 or
* to extend the choice of license to its licensees as provided above.
* However, if you add GPL Version 2 code and therefore, elected the GPL
* Version 2 license, then the option applies only if the new code is
* made subject to such option by the copyright holder.
*/
package org.netbeans.modules.javafx.editor.completion;
import com.sun.javafx.api.tree.*;
import com.sun.javafx.api.tree.Tree.JavaFXKind;
import com.sun.tools.javac.code.Scope;
import com.sun.tools.javac.code.Symbol;
import com.sun.tools.javac.code.Type;
import com.sun.tools.javafx.api.JavafxcScope;
import com.sun.tools.javafx.api.JavafxcTrees;
import com.sun.tools.javafx.code.JavafxTypes;
import com.sun.tools.javafx.tree.JFXClassDeclaration;
import com.sun.tools.javafx.tree.JFXFunctionDefinition;
import org.netbeans.api.java.classpath.ClassPath;
import org.netbeans.api.javafx.lexer.JFXTokenId;
import org.netbeans.api.javafx.source.ClassIndex.NameKind;
import org.netbeans.api.javafx.source.ClassIndex.SearchScope;
import org.netbeans.api.javafx.source.*;
import org.netbeans.api.javafx.source.ClasspathInfo.PathKind;
import org.netbeans.api.javafx.source.CompilationController;
import org.netbeans.api.javafx.source.JavaFXParserResult;
import org.netbeans.api.javafx.source.JavaFXSource.Phase;
import org.netbeans.api.lexer.TokenHierarchy;
import org.netbeans.api.lexer.TokenSequence;
import static org.netbeans.modules.javafx.editor.completion.JavaFXCompletionQuery.*;
import org.openide.filesystems.FileObject;
import org.openide.filesystems.FileSystem;
import org.openide.filesystems.FileUtil;
import javax.lang.model.element.*;
import static javax.lang.model.element.Modifier.*;
import javax.lang.model.type.*;
import javax.lang.model.util.Elements;
import javax.lang.model.util.Types;
import javax.tools.Diagnostic;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.io.Writer;
import java.util.*;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.netbeans.api.javafx.editor.Cancellable;
import org.netbeans.api.javafx.editor.FXSourceUtils;
import org.netbeans.api.javafx.editor.SafeTokenSequence;
import org.netbeans.modules.parsing.api.Source;
import org.netbeans.modules.parsing.spi.ParseException;
import org.openide.util.Exceptions;
import org.openide.util.NbBundle;
/**
* @author David Strupl, Anton Chechel
*/
public class JavaFXCompletionEnvironment<T extends Tree> {
private static final Logger logger = Logger.getLogger(JavaFXCompletionEnvironment.class.getName());
private static final boolean LOGGABLE = logger.isLoggable(Level.FINE);
private static final String[] PSEUDO_VARS = new String[] {
"__DIR__", "__FILE__", "__PROFILE__" // NOI18N
};
private static int usingSanitizedSource = 0;
protected int offset;
protected String prefix;
protected boolean isCamelCasePrefix;
protected CompilationController controller;
protected JavaFXTreePath path;
protected SourcePositions sourcePositions;
protected boolean insideForEachExpressiion = false;
protected UnitTree root;
protected JavaFXCompletionQuery query;
protected Cancellable cancellable;
protected JavaFXCompletionEnvironment() {
}
/*
* Thies method must be called after constructor before a call to resolveCompletion
*/
void init(int offset, String prefix, CompilationController controller, JavaFXTreePath path, SourcePositions sourcePositions, final JavaFXCompletionQuery query) {
this.offset = offset;
this.prefix = prefix;
this.isCamelCasePrefix = prefix != null && prefix.length() > 1 && JavaFXCompletionQuery.camelCasePattern.matcher(prefix).matches();
this.controller = controller;
this.path = path;
this.sourcePositions = sourcePositions;
this.query = query;
this.root = path.getCompilationUnit();
this.cancellable = new Cancellable() {
public boolean isCancelled() {
return query.isTaskCancelled0();
}
public void cancell() {
// do nothing for now
}
};
}
/**
* This method should be overriden in subclasses
*/
protected void inside(T t) throws IOException {
if (LOGGABLE) log(NbBundle.getBundle("org/netbeans/modules/javafx/editor/completion/Bundle").getString("NOT_IMPLEMENTED_") + t.getJavaFXKind() + " inside " + t); // NOI18N
}
protected void insideFunctionBlock(List<ExpressionTree> statements) throws IOException {
ExpressionTree last = null;
for (ExpressionTree stat : statements) {
int pos = (int) sourcePositions.getStartPosition(root, stat);
if (pos == Diagnostic.NOPOS || offset <= pos) {
break;
}
last = stat;
}
if (last != null && last.getJavaFXKind() == Tree.JavaFXKind.TRY) {
if (((TryTree) last).getFinallyBlock() == null) {
addKeyword(CATCH_KEYWORD, null, false);
addKeyword(FINALLY_KEYWORD, null, false);
if (((TryTree) last).getCatches().size() == 0) {
return;
}
}
}
localResult(null);
addKeywordsForStatement();
}
public int getOffset() {
return offset;
}
public String getPrefix() {
return prefix;
}
public boolean isCamelCasePrefix() {
return isCamelCasePrefix;
}
public CompilationController getController() {
return controller;
}
public UnitTree getRoot() {
return root;
}
public JavaFXTreePath getPath() {
return path;
}
public SourcePositions getSourcePositions() {
return sourcePositions;
}
public void insideForEachExpressiion() {
this.insideForEachExpressiion = true;
}
public boolean isInsideForEachExpressiion() {
return insideForEachExpressiion;
}
/**
* If the tree is broken we are in fact not in the compilation unit.
* @param env
* @return
*/
protected boolean isTreeBroken() {
int start = (int) sourcePositions.getStartPosition(root, root);
int end = (int) sourcePositions.getEndPosition(root, root);
if (LOGGABLE) log("isTreeBroken start: " + start + " end: " + end); // NOI18N
return start == -1 || end == -1;
}
protected String fullName(Tree tree) {
switch (tree.getJavaFXKind()) {
case IDENTIFIER:
return ((IdentifierTree) tree).getName().toString();
case MEMBER_SELECT:
String sname = fullName(((MemberSelectTree) tree).getExpression());
return sname == null ? null : sname + '.' + ((MemberSelectTree) tree).getIdentifier(); // NOI18N
default:
return null;
}
}
void insideTypeCheck() throws IOException {
InstanceOfTree iot = (InstanceOfTree) getPath().getLeaf();
SafeTokenSequence<JFXTokenId> ts = findLastNonWhitespaceToken(iot, getOffset());
}
protected void insideExpression(JavaFXTreePath exPath) throws IOException {
if (LOGGABLE) log("insideExpression " + exPath.getLeaf()); // NOI18N
Tree et = exPath.getLeaf();
Tree parent = exPath.getParentPath().getLeaf();
int endPos = (int) getSourcePositions().getEndPosition(root, et);
if (endPos != Diagnostic.NOPOS && endPos < offset) {
SafeTokenSequence<JFXTokenId> last = findLastNonWhitespaceToken(endPos, offset);
if (LOGGABLE) log(" last: " + last); // NOI18N
if (last != null) {
return;
}
}
if (LOGGABLE) log(NbBundle.getBundle("org/netbeans/modules/javafx/editor/completion/Bundle").getString("NOT_IMPLEMENTED:_insideExpression_") + exPath.getLeaf()); // NOI18N
}
protected void addResult(JavaFXCompletionItem i) {
query.results.add(i);
}
protected void addMembers(final TypeMirror type, final boolean methods, final boolean fields) {
JavafxcScope sc = controller.getTreeUtilities().getScope(path);
if (LOGGABLE) log(" addMembers scope was computed from path == " + path.getLeaf()); // NOI18N
boolean isStatic = controller.getTreeUtilities().isStaticContext(sc);
if (path.getLeaf() != null && path.getLeaf().toString().startsWith("variable initialization for static script only (default) var")) { // NOI18N
isStatic = true;
}
if (LOGGABLE) log(" isStatic == " + isStatic); // NOI18N
addMembers(type, methods, fields, null,sc, true, !isStatic);
}
protected void addMembers(final TypeMirror type,
final boolean methods, final boolean fields,
final String textToAdd, JavafxcScope scope,boolean statics, boolean instance) {
if (LOGGABLE) log("addMembers: " + type); // NOI18N
if (type == null || type.getKind() != TypeKind.DECLARED) {
if (LOGGABLE) log("RETURNING: type.getKind() == " + (type != null ? type.getKind() : " type is null")); // NOI18N
return;
}
DeclaredType dt = (DeclaredType) type;
if (LOGGABLE) log(" elementKind == " + dt.asElement().getKind()); // NOI18N
final ElementKind kind = dt.asElement().getKind();
if (kind != ElementKind.CLASS && kind != ElementKind.ENUM) {
return;
}
Elements elements = controller.getElements();
final TypeElement te = (TypeElement) dt.asElement();
for (Element member : te.getEnclosedElements()) {
if (LOGGABLE) log(" member1 = " + member + " member1.getKind() " + member.getKind()); // NOI18N
String s = member.getSimpleName().toString();
if ("<error>".equals(s)) { // NOI18N
continue;
}
// #164909 - prevent internal SDK vars "VCNT$" and "VOFF$"
if (s != null && s.indexOf('$') != -1) {
continue;
}
boolean isStatic = member.getModifiers().contains(STATIC);
if (!controller.getTreeUtilities().isAccessible(scope, member, dt)) {
if (LOGGABLE) log(" not accessible " + s); // NOI18N
continue;
}
if (isStatic && !statics) {
if (LOGGABLE) log(" is static and we don't want them " + s); // NOI18N
continue;
}
if (!isStatic && !instance) {
if (LOGGABLE) log(" is instance and we don't want them " + s); // NOI18N
continue;
}
// Once source code uses either __FILE__ or __DIR__ pseudo
// variables, compiler will generate their definitions in the
// current block expression. When the source code does not contain
// them they are not generated and since would not be offered by
// code completion. Thus we provide pseudo variables explicitly, so
// skip them here.
if (isPseudoVariable(s)) {
continue;
}
String tta = textToAdd;
if (fields && (member.getKind() == ElementKind.FIELD || member.getKind() == ElementKind.ENUM_CONSTANT)) {
if (JavaFXCompletionProvider.startsWith(s, getPrefix())) {
if (":".equals(textToAdd)) { // NOI18N
JavafxTypes types = controller.getJavafxTypes();
TypeMirror tm = member.asType();
if (types.isSequence((Type) tm)) {
tta += " []"; // NOI18N
}
}
ElementHandle eh = null;
try {
eh = ElementHandle.create(member);
} catch (Exception ex) {
// cannot convert --> ignore
}
if (eh != null) {
addResult(JavaFXCompletionItem.createVariableItem(eh, member.asType(), s, query.anchorOffset, tta, true));
}
}
}
boolean classes = true;
if (classes && (member.getKind() == ElementKind.CLASS)) {
if (JavaFXCompletionProvider.startsWith(s, getPrefix())) {
ElementHandle eh = null;
try {
eh = ElementHandle.create(member);
} catch (Exception ex) {
// cannot convert --> ignore
}
TypeMirror mtm = member.asType();
DeclaredType mdt = (DeclaredType) mtm;
TypeElement mte = (TypeElement) mdt.asElement();
if (eh != null) {
addResult(JavaFXCompletionItem.createTypeItem(s, offset, false, false, false));
}
}
}
}
for (Element member : FXSourceUtils.getAllMembers(elements, te)) {
if (LOGGABLE) log(" member2 == " + member + " member2.getKind() " + member.getKind()); // NOI18N
String s = member.getSimpleName().toString();
if ("<error>".equals(s)) { // NOI18N
continue;
}
// #164909 - prevent internal SDK vars "VCNT$" and "VOFF$"
if (s != null && s.indexOf('$') != -1) {
continue;
}
if (!controller.getTreeUtilities().isAccessible(scope, member, dt)) {
if (LOGGABLE) log(" not accessible " + s); // NOI18N
continue;
}
boolean isStatic = member.getModifiers().contains(STATIC);
if (isStatic && !statics) {
if (LOGGABLE) log(" is static and we don't want them " + s); // NOI18N
continue;
}
if (!isStatic && !instance) {
if (LOGGABLE) log(" is instance and we don't want them " + s); // NOI18N
continue;
}
// Once source code uses either __FILE__ or __DIR__ pseudo
// variables, compiler will generate their definitions in the
// current block expression. When the source code does not contain
// them they are not generated and since would not be offered by
// code completion. Thus we provide pseudo variables explicitly, so
// skip them here.
if (isPseudoVariable(s)) {
continue;
}
if (methods && member.getKind() == ElementKind.METHOD) {
if (s.contains("$")) { // NOI18N
continue;
}
if (JavaFXCompletionProvider.startsWith(s, getPrefix())) {
boolean isInherited = !te.equals(((Symbol) member.getEnclosingElement()).enclClass());
boolean isDeprecated = elements.isDeprecated(member);
addResult(
JavaFXCompletionItem.createExecutableItem(
(ExecutableElement) member,
(ExecutableType) member.asType(),
query.anchorOffset, isInherited, isDeprecated, false, false));
}
} else if (fields && member.getKind() == ElementKind.FIELD) {
String tta = textToAdd;
if (JavaFXCompletionProvider.startsWith(s, getPrefix())) {
if (":".equals(textToAdd)) { // NOI18N
JavafxTypes types = controller.getJavafxTypes();
TypeMirror tm = member.asType();
if (types.isSequence((Type) tm)) {
tta += " []"; // NOI18N
}
}
ElementHandle eh = null;
try {
eh = ElementHandle.create(member);
} catch (Exception ex) {
// cannot convert --> ignore
}
if (eh != null) {
addResult(JavaFXCompletionItem.createVariableItem(eh, member.asType(), s, query.anchorOffset, tta, false));
}
}
}
}
TypeMirror parent = te.getSuperclass();
if (parent != null) {
addMembers(parent, false, true, textToAdd, scope, statics, instance);
}
for (TypeMirror intf : te.getInterfaces()) {
addMembers(intf, false, true, textToAdd, scope, statics, instance);
}
}
protected void localResult(TypeMirror smart) {
addLocalMembersAndVars(smart);
addLocalAndImportedTypes(null, null, null, false, smart);
addLocalAndImportedFunctions();
}
protected void addMemberConstantsAndTypes(final TypeMirror type, final Element elem) throws IOException {
if (LOGGABLE) log("addMemberConstantsAndTypes: " + type + " elem: " + elem); // NOI18N
}
protected void addLocalMembersAndVars(TypeMirror smart) {
if (LOGGABLE) log("addLocalMembersAndVars: " + prefix); // NOI18N
final JavafxcTrees trees = controller.getTrees();
if (smart != null && smart.getKind() == TypeKind.DECLARED) {
if (LOGGABLE) log("adding declared type + subtypes: " + smart); // NOI18N
DeclaredType dt = (DeclaredType) smart;
TypeElement elem = (TypeElement) dt.asElement();
addResult(JavaFXCompletionItem.createTypeItem(elem, dt, query.anchorOffset, false, false, true, false));
for (DeclaredType subtype : getSubtypesOf((DeclaredType) smart)) {
TypeElement subElem = (TypeElement) subtype.asElement();
addResult(JavaFXCompletionItem.createTypeItem(subElem, subtype, query.anchorOffset, false, false, true, false));
}
}
for (JavaFXTreePath tp = getPath(); tp != null; tp = tp.getParentPath()) {
Tree t = tp.getLeaf();
if (LOGGABLE) log(" tree kind: " + t.getJavaFXKind()); // NOI18N
if (t instanceof UnitTree) {
UnitTree cut = (UnitTree) t;
for (Tree tt : cut.getTypeDecls()) {
if (LOGGABLE) log(" tt: " + tt); // NOI18N
JavaFXKind kk = tt.getJavaFXKind();
if (kk == JavaFXKind.CLASS_DECLARATION) {
JFXClassDeclaration cd = (JFXClassDeclaration) tt;
for (Tree jct : cd.getClassMembers()) {
if (LOGGABLE) log(" jct == " + jct); // NOI18N
JavaFXKind k = jct.getJavaFXKind();
if (LOGGABLE) log(" kind of jct = " + k); // NOI18N
if (k == JavaFXKind.FUNCTION_DEFINITION) {
JFXFunctionDefinition fdt = (JFXFunctionDefinition) jct;
if (LOGGABLE) log(" fdt == " + fdt.name.toString()); // NOI18N
if ("javafx$run$".equals(fdt.name.toString())) { // NOI18N
addBlockExpressionLocals(fdt.getBodyExpression(), tp, smart);
JavaFXTreePath mp = JavaFXTreePath.getPath(cut, tt);
TypeMirror tm = trees.getTypeMirror(mp);
if (LOGGABLE) log(" javafx$run$ tm == " + tm + " ---- tm.getKind() == " + (tm == null ? "null" : tm.getKind())); // NOI18N
JavaFXTreePath mp2 = JavaFXTreePath.getPath(cut, fdt);
addMembers(tm, true, true,
null, controller.getTreeUtilities().getScope(mp2),
true, false);
}
}
}
}
}
}
JavaFXKind k = t.getJavaFXKind();
if (LOGGABLE) log(" fx kind: " + k); // NOI18N
if (k == JavaFXKind.CLASS_DECLARATION) {
TypeMirror tm = trees.getTypeMirror(tp);
if (LOGGABLE) log(" tm == " + tm + " ---- tm.getKind() == " + (tm == null ? "null" : tm.getKind())); // NOI18N
addMembers(tm, true, true);
}
if (k == JavaFXKind.BLOCK_EXPRESSION) {
addBlockExpressionLocals((BlockExpressionTree) t, tp, smart);
}
if (k == JavaFXKind.FOR_EXPRESSION_FOR) {
ForExpressionTree fet = (ForExpressionTree) t;
if (LOGGABLE) log(" for expression: " + fet + "\n"); // NOI18N
for (ForExpressionInClauseTree fetic : fet.getInClauses()) {
if (LOGGABLE) log(" fetic: " + fetic + "\n"); // NOI18N
String s = fetic.getVariable().getName().toString();
if (LOGGABLE) log(" adding(2) " + s + " with prefix " + prefix); // NOI18N
TypeMirror tm = trees.getTypeMirror(new JavaFXTreePath(tp, fetic));
if (smart != null && tm != null && tm.getKind() == smart.getKind()) {
addResult(JavaFXCompletionItem.createVariableItem(tm, s, query.anchorOffset, true));
}
if (JavaFXCompletionProvider.startsWith(s, prefix)) {
addResult(JavaFXCompletionItem.createVariableItem(tm, s, query.anchorOffset, false));
}
}
}
if (k == JavaFXKind.FUNCTION_VALUE) {
FunctionValueTree fvt = (FunctionValueTree) t;
for (VariableTree var : fvt.getParameters()) {
if (LOGGABLE) log(" var: " + var + "\n"); // NOI18N
String s = var.getName().toString();
if (s.contains("$")) { // NOI18N
continue;
}
if (LOGGABLE) log(" adding(3) " + s + " with prefix " + prefix); // NOI18N
TypeMirror tm = trees.getTypeMirror(new JavaFXTreePath(tp, var));
if (smart != null && tm.getKind() == smart.getKind()) {
addResult(JavaFXCompletionItem.createVariableItem(tm, s, query.anchorOffset, true));
}
if (JavaFXCompletionProvider.startsWith(s, prefix)) {
addResult(JavaFXCompletionItem.createVariableItem(tm, s, query.anchorOffset, false));
}
}
}
if (k == JavaFXKind.ON_REPLACE) {
OnReplaceTree ort = (OnReplaceTree) t;
// commented out log because of JFXC-1205
// if (LOGGABLE) log(" OnReplaceTree: " + ort + "\n");
VariableTree varTree = ort.getNewElements();
if (varTree != null) {
String s1 = varTree.getName().toString();
if (LOGGABLE) log(" adyding(4) " + s1 + " with prefix " + prefix); // NOI18N
TypeMirror tm = trees.getTypeMirror(new JavaFXTreePath(tp, varTree));
if (smart != null && tm.getKind() == smart.getKind()) {
addResult(JavaFXCompletionItem.createVariableItem(tm, s1, query.anchorOffset, true));
}
if (JavaFXCompletionProvider.startsWith(s1, prefix)) {
addResult(JavaFXCompletionItem.createVariableItem(tm, s1, query.anchorOffset, false));
}
}
VariableTree varTree2 = ort.getOldValue();
if (varTree2 != null) {
String s2 = varTree2.getName().toString();
if (LOGGABLE) log(" adding(5) " + s2 + " with prefix " + prefix); // NOI18N
TypeMirror tm = trees.getTypeMirror(new JavaFXTreePath(tp, varTree2));
if (smart != null && tm.getKind() == smart.getKind()) {
addResult(JavaFXCompletionItem.createVariableItem(tm, s2, query.anchorOffset, true));
}
if (JavaFXCompletionProvider.startsWith(s2, prefix)) {
addResult(JavaFXCompletionItem.createVariableItem(tm, s2, query.anchorOffset, false));
}
}
}
}
addPseudoVariables();
}
private void addBlockExpressionLocals(BlockExpressionTree bet, JavaFXTreePath tp, TypeMirror smart) {
if (LOGGABLE) log(" block expression: " + bet + "\n"); // NOI18N
for (ExpressionTree st : bet.getStatements()) {
addLocal(st, tp, smart);
}
addLocal(bet.getValue(), tp, smart);
}
private void addLocal(ExpressionTree st, JavaFXTreePath tp, TypeMirror smart) {
if (st == null) {
return;
}
JavaFXTreePath expPath = new JavaFXTreePath(tp, st);
if (LOGGABLE) log(" expPath == " + expPath.getLeaf()); // NOI18N
JavafxcTrees trees = controller.getTrees();
Element type = trees.getElement(expPath);
if (type == null) {
return;
}
if (LOGGABLE) log(" type.getKind() == " + type.getKind()); // NOI18N
if (type.getKind() == ElementKind.LOCAL_VARIABLE || type.getKind() == ElementKind.FIELD) {
final Name simpleName = type.getSimpleName();
if (simpleName == null) {
return;
}
String s = simpleName.toString();
// Once source code uses either __FILE__ or __DIR__ pseudo
// variables, compiler will generate their definitions in the
// current block expression. When the source code does not contain
// them they are not generated and since would not be offered by
// code completion. Thus we provide pseudo variables explicitly, so
// skip them here.
if (isPseudoVariable(s)) {
return;
}
if (LOGGABLE) log(" adding(1) " + s + " with prefix " + prefix); // NOI18N
TypeMirror tm = trees.getTypeMirror(expPath);
if (smart != null && tm != null && tm.getKind() == smart.getKind()) {
addResult(JavaFXCompletionItem.createVariableItem(tm,
s, query.anchorOffset, true));
}
if (JavaFXCompletionProvider.startsWith(s, getPrefix())) {
addResult(JavaFXCompletionItem.createVariableItem(tm,
s, query.anchorOffset, false));
}
}
}
private boolean isPseudoVariable(final String s) {
return Arrays.binarySearch(PSEUDO_VARS, s) >= 0;
}
protected void addPackages(String fqnPrefix) {
if (LOGGABLE) log("addPackages " + fqnPrefix); // NOI18N
if (fqnPrefix == null) {
fqnPrefix = ""; // NOI18N
}
ClasspathInfo info = controller.getClasspathInfo();
ArrayList<FileObject> fos = new ArrayList<FileObject>();
ClassPath cp = info.getClassPath(PathKind.SOURCE);
fos.addAll(Arrays.asList(cp.getRoots()));
cp = info.getClassPath(PathKind.COMPILE);
fos.addAll(Arrays.asList(cp.getRoots()));
cp = info.getClassPath(PathKind.BOOT);
fos.addAll(Arrays.asList(cp.getRoots()));
String pr = ""; // NOI18N
if (fqnPrefix.lastIndexOf('.') >= 0) { // NOI18N
pr = fqnPrefix.substring(0, fqnPrefix.lastIndexOf('.')); // NOI18N
}
if (LOGGABLE) log(" pr == " + pr); // NOI18N
for (String name : pr.split("\\.")) { // NOI18N
ArrayList<FileObject> newFos = new ArrayList<FileObject>();
if (LOGGABLE) log(" traversing to " + name); // NOI18N
for (FileObject f : fos) {
if (f.isFolder()) {
FileObject child = f.getFileObject(name);
if (child != null) {
newFos.add(child);
}
}
}
if (LOGGABLE) log(" replacing " + fos + "\n with " + newFos); // NOI18N
fos = newFos;
}
for (FileObject fo : fos) {
if (fo.isFolder()) {
for (FileObject child : fo.getChildren()) {
if (child.isFolder()) {
if (LOGGABLE) log(" found : " + child); // NOI18N
if (("META-INF".equals(child.getName())) || // NOI18N
("doc-files".equals(child.getName()))) { // NOI18N
continue;
}
String s = child.getPath().replace('/', '.'); // NOI18N
if (s.startsWith(fqnPrefix)) {
addResult(JavaFXCompletionItem.createPackageItem(s, query.anchorOffset, false));
}
}
}
}
}
}
protected List<DeclaredType> getSubtypesOf(DeclaredType baseType) {
if (LOGGABLE) log(NbBundle.getBundle("org/netbeans/modules/javafx/editor/completion/Bundle").getString("NOT_IMPLEMENTED:_getSubtypesOf_") + baseType); // NOI18N
return Collections.emptyList();
}
void resolveToolTip(final CompilationController controller) throws IOException {
Phase resPhase = controller.toPhase(Phase.ANALYZED);
if ((resPhase.lessThan(Phase.ANALYZED)) || (isTreeBroken())) {
if (LOGGABLE) log("resolveToolTip: phase: " + resPhase); // NOI18N
return;
}
if (LOGGABLE) {
log(" resolveToolTip start"); // NOI18N
}
Tree lastTree = null;
while (path != null) {
Tree tree = path.getLeaf();
if (LOGGABLE) log(" resolveToolTip on " + tree.getJavaFXKind()); // NOI18N
if (tree.getJavaFXKind() == Tree.JavaFXKind.METHOD_INVOCATION) {
FunctionInvocationTree mi = (FunctionInvocationTree) tree;
int startPos = lastTree != null ? (int) sourcePositions.getStartPosition(root, lastTree) : offset;
if (LOGGABLE) log(" startPos == " + startPos); // NOI18N
List<Tree> argTypes = getArgumentsUpToPos(mi.getArguments(), (int) sourcePositions.getEndPosition(root, mi.getMethodSelect()), startPos);
if (LOGGABLE) log(" argTypes = " + argTypes); // NOI18N
if (argTypes != null) {
TypeMirror[] types = new TypeMirror[argTypes.size()];
int j = 0;
for (Tree t : argTypes) {
types[j++] = controller.getTrees().getTypeMirror(JavaFXTreePath.getPath(root, t));
if (LOGGABLE) {
log(" types[j-1] == " + types[j-1]); // NOI18N
}
}
List<List<String>> params = null;
Tree mid = mi.getMethodSelect();
if (LOGGABLE) log(" mid == " + mid.getJavaFXKind() + mid); // NOI18N
if (LOGGABLE) {
log(" path " + path); // NOI18N
if (path != null) {
log(" path.getLeaf() == " + path.getLeaf()); // NOI18N
}
}
path = new JavaFXTreePath(path, mid);
switch (mid.getJavaFXKind()) {
case MEMBER_SELECT: {
ExpressionTree exp = ((MemberSelectTree) mid).getExpression();
path = new JavaFXTreePath(path, exp);
if (LOGGABLE) log(" path == " + path.getLeaf()); // NOI18N
JavafxcTrees trees = controller.getTrees();
final TypeMirror type = trees.getTypeMirror(path);
if (LOGGABLE) log(" type == " + type); // NOI18N
final Element element = trees.getElement(path);
if (LOGGABLE) log(" element == " + element); // NOI18N
final boolean isStatic = element != null && (element.getKind().isClass() || element.getKind().isInterface());
if (LOGGABLE) log(" isStatic == " + isStatic); // NOI18N
final boolean isSuperCall = element != null && element.getKind().isField() && element.getSimpleName().contentEquals(SUPER_KEYWORD);
final JavafxcScope scope = controller.getTreeUtilities().getScope(path);
if (LOGGABLE) log(" scope == " + scope); // NOI18N
final TreeUtilities tu = controller.getTreeUtilities();
TypeElement enclClass = scope.getEnclosingClass();
final TypeMirror enclType = enclClass != null ? enclClass.asType() : null;
ElementUtilities.ElementAcceptor acceptor = new ElementUtilities.ElementAcceptor() {
public boolean accept(Element e, TypeMirror t) {
boolean res = (!isStatic || e.getModifiers().contains(STATIC)) && tu.isAccessible(scope, e, isSuperCall && enclType != null ? enclType : t);
if (LOGGABLE) {
log(" accept for " + e + " on " + t); // NOI18N
log(" returning " + res); // NOI18N
}
return res;
}
};
params = getMatchingParams(type, controller.getElementUtilities().getMembers(type, acceptor), ((MemberSelectTree) mid).getIdentifier().toString(), types, controller.getTypes());
if (LOGGABLE) log(" params == " + params); // NOI18N
break;
}
case IDENTIFIER: {
final JavafxcScope scope = controller.getTreeUtilities().getScope(path);
if (LOGGABLE) log(" scope (2) == " + scope); // NOI18N
final TreeUtilities tu = controller.getTreeUtilities();
final TypeElement enclClass = scope.getEnclosingClass();
final boolean isStatic = enclClass != null ? (tu.isStaticContext(scope) || (path.getLeaf().getJavaFXKind() == Tree.JavaFXKind.BLOCK_EXPRESSION && ((BlockExpressionTree) path.getLeaf()).isStatic())) : false;
final ExecutableElement method = scope.getEnclosingMethod();
ElementUtilities.ElementAcceptor acceptor = new ElementUtilities.ElementAcceptor() {
public boolean accept(Element e, TypeMirror t) {
switch (e.getKind()) {
case CONSTRUCTOR:
return !e.getModifiers().contains(PRIVATE);
case METHOD:
return (!isStatic || e.getModifiers().contains(STATIC)) && tu.isAccessible(scope, e, t);
default:
return false;
}
}
};
String name = ((IdentifierTree) mid).getName().toString();
params = getMatchingParams(enclClass != null ? enclClass.asType() : null, controller.getElementUtilities().getLocalMembersAndVars(scope, acceptor), name, types, controller.getTypes());
if (LOGGABLE) log(" params (2) == " + params); // NOI18N
break;
}
}
if (LOGGABLE) log(" params (3) == " + params); // NOI18N
if (params != null) {
query.toolTip = new MethodParamsTipPaintComponent(params, types.length, query.component);
}
startPos = (int) sourcePositions.getEndPosition(root, mi.getMethodSelect());
String text = controller.getText().subSequence(startPos, offset).toString();
query.anchorOffset = startPos + text.indexOf('('); //NOI18N
query.toolTipOffset = startPos + text.lastIndexOf(','); //NOI18N
if (query.toolTipOffset < query.anchorOffset) {
query.toolTipOffset = query.anchorOffset;
}
return;
}
}
lastTree = tree;
path = path.getParentPath();
}
}
protected void addMethodArguments(FunctionInvocationTree mit) throws IOException {
if (LOGGABLE) log("addMethodArguments " + mit); // NOI18N
List<Tree> argTypes = getArgumentsUpToPos(mit.getArguments(), (int)sourcePositions.getEndPosition(root, mit.getMethodSelect()), offset);
JavafxcTrees trees = controller.getTrees();
if (argTypes != null) {
TypeMirror[] types = new TypeMirror[argTypes.size()];
int j = 0;
for (Tree t : argTypes) {
JavaFXTreePath jfxtp = new JavaFXTreePath(path, t);
if (LOGGABLE) log(" jfxtp == " + jfxtp.getLeaf()); // NOI18N
types[j++] = controller.getTrees().getTypeMirror(jfxtp);
if (LOGGABLE) log(" types[j-1] == " + types[j-1]); // NOI18N
}
List<Pair<ExecutableElement, ExecutableType>> methods = null;
String name = null;
Tree mid = mit.getMethodSelect();
if (LOGGABLE) {
log(" path " + path); // NOI18N
if (path != null) {
log(" path.getLeaf() == " + path.getLeaf()); // NOI18N
}
}
path = new JavaFXTreePath(path, mid);
switch (mid.getJavaFXKind()) {
case MEMBER_SELECT: {
ExpressionTree exp = ((MemberSelectTree)mid).getExpression();
path = new JavaFXTreePath(path, exp);
final TypeMirror type = trees.getTypeMirror(path);
final Element element = trees.getElement(path);
final boolean isStatic = element != null && (element.getKind().isClass() || element.getKind().isInterface());
final boolean isSuperCall = element != null && element.getKind().isField() && element.getSimpleName().contentEquals(SUPER_KEYWORD);
final TreeUtilities tu = controller.getTreeUtilities();
final JavafxcScope scope = tu.getScope(path);
TypeElement enclClass = scope.getEnclosingClass();
final TypeMirror enclType = enclClass != null ? enclClass.asType() : null;
ElementUtilities.ElementAcceptor acceptor = new ElementUtilities.ElementAcceptor() {
public boolean accept(Element e, TypeMirror t) {
return (!isStatic || e.getModifiers().contains(STATIC) ) && tu.isAccessible(scope, e, isSuperCall && enclType != null ? enclType : t);
}
};
methods = getMatchingExecutables(type, controller.getElementUtilities().getMembers(type, acceptor), ((MemberSelectTree)mid).getIdentifier().toString(), types, controller.getTypes());
break;
}
case IDENTIFIER: {
final TreeUtilities tu = controller.getTreeUtilities();
final JavafxcScope scope = tu.getScope(path);
final TypeElement enclClass = scope.getEnclosingClass();
final boolean isStatic = enclClass != null ? (tu.isStaticContext(scope) || (path.getLeaf().getJavaFXKind() == JavaFXKind.BLOCK_EXPRESSION && ((BlockExpressionTree)path.getLeaf()).isStatic())) : false;
final ExecutableElement method = scope.getEnclosingMethod();
ElementUtilities.ElementAcceptor acceptor = new ElementUtilities.ElementAcceptor() {
public boolean accept(Element e, TypeMirror t) {
switch (e.getKind()) {
case LOCAL_VARIABLE:
case EXCEPTION_PARAMETER:
case PARAMETER:
return (method == e.getEnclosingElement() || e.getModifiers().contains(FINAL));
case FIELD:
if (e.getSimpleName().contentEquals(THIS_KEYWORD) || e.getSimpleName().contentEquals(SUPER_KEYWORD))
return !isStatic;
}
return (!isStatic || e.getModifiers().contains(STATIC)) && tu.isAccessible(scope, e, t);
}
};
name = ((IdentifierTree)mid).getName().toString();
if (SUPER_KEYWORD.equals(name) && enclClass != null) {
TypeMirror superclass = enclClass.getSuperclass();
methods = getMatchingExecutables(superclass, controller.getElementUtilities().getMembers(superclass, acceptor), INIT, types, controller.getTypes());
} else if (THIS_KEYWORD.equals(name) && enclClass != null) {
TypeMirror thisclass = enclClass.asType();
methods = getMatchingExecutables(thisclass, controller.getElementUtilities().getMembers(thisclass, acceptor), INIT, types, controller.getTypes());
} else {
Iterable<? extends Element> locals = controller.getElementUtilities().getLocalMembersAndVars(scope, acceptor);
methods = getMatchingExecutables(enclClass != null ? enclClass.asType() : null, locals, name, types, controller.getTypes());
name = null;
}
break;
}
}
if (methods != null) {
Elements elements = controller.getElements();
for (Pair<ExecutableElement, ExecutableType> method : methods)
addResult(JavaFXCompletionItem.createParametersItem(method.a, method.b, query.anchorOffset, elements.isDeprecated(method.a), types.length, name));
}
}
}
private List<Tree> getArgumentsUpToPos(Iterable<? extends ExpressionTree> args, int startPos, int position) {
List<Tree> ret = new ArrayList<Tree>();
for (ExpressionTree e : args) {
int pos = (int)sourcePositions.getEndPosition(root, e);
if (pos != Diagnostic.NOPOS && position > pos) {
startPos = pos;
ret.add(e);
}
}
if (startPos < 0)
return ret;
if (position > startPos) {
SafeTokenSequence<JFXTokenId> last = findLastNonWhitespaceToken(startPos, position);
if (last != null && (last.token().id() == JFXTokenId.LPAREN || last.token().id() == JFXTokenId.COMMA))
return ret;
}
return null;
}
private List<Pair<ExecutableElement, ExecutableType>> getMatchingExecutables(TypeMirror type, Iterable<? extends Element> elements, String name, TypeMirror[] argTypes, Types types) {
List<Pair<ExecutableElement, ExecutableType>> ret = new ArrayList<Pair<ExecutableElement, ExecutableType>>();
for (Element e : elements) {
if ((e.getKind() == ElementKind.CONSTRUCTOR || e.getKind() == ElementKind.METHOD) && name.contentEquals(e.getSimpleName())) {
List<? extends VariableElement> params = ((ExecutableElement)e).getParameters();
int parSize = params.size();
boolean varArgs = ((ExecutableElement)e).isVarArgs();
if (!varArgs && (parSize < argTypes.length)) {
continue;
}
ExecutableType eType = (ExecutableType)asMemberOf(e, type, types);
if (parSize == 0) {
ret.add(new Pair<ExecutableElement,ExecutableType>((ExecutableElement)e, eType));
} else {
Iterator<? extends TypeMirror> parIt = eType.getParameterTypes().iterator();
TypeMirror param = null;
for (int i = 0; i <= argTypes.length; i++) {
if (parIt.hasNext()) {
param = parIt.next();
// if (!parIt.hasNext() && param.getKind() == TypeKind.ARRAY)
// param = ((ArrayType)param).getComponentType();
} else if (!varArgs) {
break;
}
if (i == argTypes.length) {
ret.add(new Pair<ExecutableElement, ExecutableType>((ExecutableElement)e, eType));
break;
}
if (argTypes[i] == null || !types.isAssignable(argTypes[i], param))
break;
}
}
}
}
return ret;
}
private List<List<String>> getMatchingParams(TypeMirror type, Iterable<? extends Element> elements, String name, TypeMirror[] argTypes, Types types) {
if (LOGGABLE) log("getMatchingParams type == " + type + " name == " + name); // NOI18N
List<List<String>> ret = new ArrayList<List<String>>();
for (Element e : elements) {
if (LOGGABLE) log(" e == " + e); // NOI18N
if ((e.getKind() == ElementKind.CONSTRUCTOR || e.getKind() == ElementKind.METHOD) && name.contentEquals(e.getSimpleName())) {
List<? extends VariableElement> params = ((ExecutableElement)e).getParameters();
int parSize = params.size();
if (LOGGABLE) log(" parSize == " + parSize); // NOI18N
boolean varArgs = ((ExecutableElement)e).isVarArgs();
if (!varArgs && (parSize < argTypes.length)) {
continue;
}
if (parSize == 0) {
ret.add(Collections.<String>singletonList(NbBundle.getMessage(JavaFXCompletionProvider.class, "JCP-no-parameters"))); // NOI18N
} else {
TypeMirror tm = asMemberOf(e, type, types);
if (!(tm instanceof ExecutableType)) continue; // error type, #173250
ExecutableType eType = (ExecutableType)tm;
if (LOGGABLE) log(" eType == " + eType); // NOI18N
Iterator<? extends TypeMirror> parIt = eType.getParameterTypes().iterator();
TypeMirror param = null;
for (int i = 0; i <= argTypes.length; i++) {
log(" i == " + i); // NOI18N
if (parIt.hasNext()) {
param = parIt.next();
if (LOGGABLE) log(" param == " + param); // NOI18N
if (!parIt.hasNext() && param.getKind() == TypeKind.ARRAY)
param = ((ArrayType)param).getComponentType();
} else if (!varArgs) {
break;
}
if (i == argTypes.length) {
if (LOGGABLE) log(" i == argTypes.length"); // NOI18N
List<String> paramStrings = new ArrayList<String>(parSize);
Iterator<? extends TypeMirror> tIt = eType.getParameterTypes().iterator();
for (Iterator<? extends VariableElement> it = params.iterator(); it.hasNext();) {
VariableElement ve = it.next();
StringBuffer sb = new StringBuffer();
sb.append(tIt.next());
if (varArgs && !tIt.hasNext())
sb.delete(sb.length() - 2, sb.length()).append("..."); //NOI18N
CharSequence veName = ve.getSimpleName();
if (veName != null && veName.length() > 0) {
sb.append(" "); // NOI18N
sb.append(veName);
}
if (it.hasNext()) {
sb.append(", "); // NOI18N
}
paramStrings.add(sb.toString());
}
ret.add(paramStrings);
break;
}
if (LOGGABLE) log(" will check " + argTypes[i] + " " + param); // NOI18N
if (argTypes[i] != null && !types.isAssignable(argTypes[i], param)) {
break;
}
}
}
} else {
if (LOGGABLE) log(" e.getKind() == " + e.getKind()); // NOI18N
}
}
return ret.isEmpty() ? null : ret;
}
// private Set<TypeMirror> getMatchingArgumentTypes(TypeMirror type, Iterable<? extends Element> elements, String name, TypeMirror[] argTypes, TypeMirror[] typeArgTypes, Types types, TypeUtilities tu) {
// Set<TypeMirror> ret = new HashSet<TypeMirror>();
// for (Element e : elements) {
// if ((e.getKind() == CONSTRUCTOR || e.getKind() == METHOD) && name.contentEquals(e.getSimpleName())) {
// List<? extends VariableElement> params = ((ExecutableElement)e).getParameters();
// int parSize = params.size();
// boolean varArgs = ((ExecutableElement)e).isVarArgs();
// if (!varArgs && (parSize <= argTypes.length))
// continue;
// ExecutableType meth = (ExecutableType)asMemberOf(e, type, types);
// Iterator<? extends TypeMirror> parIt = meth.getParameterTypes().iterator();
// TypeMirror param = null;
// for (int i = 0; i <= argTypes.length; i++) {
// if (parIt.hasNext())
// param = parIt.next();
// else if (!varArgs)
// break;
// if (i == argTypes.length) {
// if (typeArgTypes != null && param.getKind() == TypeKind.DECLARED && typeArgTypes.length == meth.getTypeVariables().size())
// param = tu.substitute(param, meth.getTypeVariables(), Arrays.asList(typeArgTypes));
// TypeMirror toAdd = null;
// if (i < parSize)
// toAdd = param;
// if (varArgs && !parIt.hasNext() && param.getKind() == TypeKind.ARRAY)
// toAdd = ((ArrayType)param).getComponentType();
// if (toAdd != null && ret.add(toAdd)) {
// TypeMirror toRemove = null;
// for (TypeMirror tm : ret) {
// if (tm != toAdd) {
// TypeMirror tmErasure = types.erasure(tm);
// TypeMirror toAddErasure = types.erasure(toAdd);
// if (types.isSubtype(toAddErasure, tmErasure)) {
// toRemove = toAdd;
// break;
// } else if (types.isSubtype(tmErasure, toAddErasure)) {
// toRemove = tm;
// break;
// }
// }
// }
// if (toRemove != null)
// ret.remove(toRemove);
// }
// break;
// }
// if (argTypes[i] == null)
// break;
// if (varArgs && !parIt.hasNext() && param.getKind() == TypeKind.ARRAY) {
// if (types.isAssignable(argTypes[i], param))
// varArgs = false;
// else if (!types.isAssignable(argTypes[i], ((ArrayType)param).getComponentType()))
// break;
// } else if (!types.isAssignable(argTypes[i], param))
// break;
// }
// }
// }
// return ret.isEmpty() ? null : ret;
// }
protected void addKeyword(String kw, String postfix, boolean smartType) {
if (JavaFXCompletionProvider.startsWith(kw, prefix)) {
addResult(JavaFXCompletionItem.createKeywordItem(kw, postfix, query.anchorOffset, smartType));
}
}
protected void addKeywordsForClassBody() {
if (LOGGABLE) log("addKeywordsForClassBody"); // NOI18N
addKeyword(ABSTRACT_KEYWORD, SPACE, false);
addKeyword(OVERRIDE_KEYWORD, SPACE, false);
addAccessModifiers(null);
addVarAccessModifiers(null, false);
addKeyword(INIT_KEYWORD, SPACE, false);
addKeyword(POSTINIT_KEYWORD, SPACE, false);
addKeyword(VAR_KEYWORD, SPACE, false);
addKeyword(DEF_KEYWORD, SPACE, false);
addKeyword(FUNCTION_KEYWORD, SPACE, false);
}
@SuppressWarnings("fallthrough")
protected void addKeywordsForStatement() {
if (LOGGABLE) log("addKeywordsForStatement"); // NOI18N
addKeyword(FOR_KEYWORD, " (", false); // NOI18N
addKeyword(IF_KEYWORD, " (", false); // NOI18N
addKeyword(WHILE_KEYWORD, " (", false); // NOI18N
addKeyword(TRY_KEYWORD, " {", false); // NOI18N
addKeyword(INSERT_KEYWORD, SPACE, false);
addKeyword(DELETE_KEYWORD, SPACE, false);
addKeyword(NEW_KEYWORD, SPACE, false);
addKeyword(REVERSE_KEYWORD, SPACE, false);
addKeyword(THROW_KEYWORD, SPACE, false);
addKeyword(VAR_KEYWORD, SPACE, false);
if (JavaFXCompletionProvider.startsWith(RETURN_KEYWORD, prefix)) {
JavaFXTreePath mth = JavaFXCompletionProvider.getPathElementOfKind(Tree.JavaFXKind.FUNCTION_DEFINITION, path);
if (LOGGABLE) log(" mth == " + mth); // NOI18N
String postfix = SPACE;
if (mth != null) {
Tree rt = ((FunctionDefinitionTree) mth.getLeaf()).getFunctionValue().getType();
if (LOGGABLE) log(" rt == " + rt + " kind == " + (rt == null?"":rt.getJavaFXKind())); // NOI18N
if ((rt == null) || (rt.getJavaFXKind() == JavaFXKind.TYPE_UNKNOWN)) {
postfix = SEMI;
}
// TODO: handle Void return type ...
}
addResult(JavaFXCompletionItem.createKeywordItem(RETURN_KEYWORD, postfix, query.anchorOffset, false));
}
JavaFXTreePath tp = getPath();
while (tp != null) {
switch (tp.getLeaf().getJavaFXKind()) {
case FOR_EXPRESSION_IN_CLAUSE:
case FOR_EXPRESSION_FOR:
case WHILE_LOOP:
addKeyword(BREAK_KEYWORD, SEMI, false);
addKeyword(CONTINUE_KEYWORD, SEMI, false);
break;
/* case SWITCH:
addKeyword(BREAK_KEYWORD, SEMI, false);
break;*/
}
tp = tp.getParentPath();
}
}
protected void addValueKeywords() {
if (LOGGABLE) log("addValueKeywords"); // NOI18N
// TODO: add conditions when each of these can occur
addKeyword(FALSE_KEYWORD, null, false);
addKeyword(TRUE_KEYWORD, null, false);
addKeyword(NULL_KEYWORD, null, false);
addKeyword(NEW_KEYWORD, SPACE, false);
addKeyword(BIND_KEYWORD, SPACE, false);
addKeyword(FUNCTION_KEYWORD, SPACE, false);
}
protected void addAccessModifiers(Set<Modifier> modifiers) {
if (LOGGABLE) log("addAccessModifiers"); // NOI18N
if (modifiers == null || (
!modifiers.contains(PUBLIC) &&
!modifiers.contains(PRIVATE) &&
//!modifiers.contains(PACKAGE) &&
//TODO: 'package' keyword would be difficult to find since it's not in modifiers
!modifiers.contains(PROTECTED))) {
addKeyword(PUBLIC_KEYWORD, SPACE, false);
addKeyword(PACKAGE_KEYWORD, SPACE, false);
addKeyword(PROTECTED_KEYWORD, SPACE, false);
}
}
protected void addVarAccessModifiers(Set<Modifier> modifiers, boolean isOnScriptLevel) {
if (LOGGABLE) log("addVarAccessModifiers"); // NOI18N
if (modifiers == null || (
//!modifiers.contains(PUBLIC_READ) &&
//!modifiers.contains(PUBLIC_INIT) &&
//TODO: 'public-read' and 'public-init' keywords are not in modifiers
true)) {
addKeyword(PUBLIC_READ_KEYWORD, SPACE, false);
if (!isOnScriptLevel) {
addKeyword(PUBLIC_INIT_KEYWORD, SPACE, false);
}
}
}
protected void addFunctionModifiers(Set<Modifier> modifiers) {
if (LOGGABLE) log("addFunctionAccessModifiers"); // NOI18N
if (modifiers == null || (
!modifiers.contains(FINAL) && !modifiers.contains(ABSTRACT))) {
addKeyword(ABSTRACT_KEYWORD, SPACE, false);
}
addKeyword(BOUND_KEYWORD, SPACE, false);
addKeyword(OVERRIDE_KEYWORD, SPACE, false);
}
protected void addClassModifiers(Set<Modifier> modifiers) {
if (LOGGABLE) log("addClassModifiers"); // NOI18N
addAccessModifiers(modifiers);
if (modifiers == null || (
//!modifiers.contains(MIXIN) &&
//TODO: 'mixin' keywords are not in modifiers
!modifiers.contains(FINAL) &&
!modifiers.contains(ABSTRACT))) {
addKeyword(MIXIN_KEYWORD, SPACE, false);
addKeyword(ABSTRACT_KEYWORD, SPACE, false);
}
}
/**
* This methods hacks over issue #135926. To prevent NPE we first complete
* all symbols that are classes and not inner classes in a package.
* @param pe
* @return pe.getEnclosedElements() but without the NPE
*/
private List<? extends Element> getEnclosedElements(PackageElement pe) {
Symbol s = (Symbol)pe;
for (Scope.Entry e = s.members().elems; e != null; e = e.sibling) {
if (e.sym != null) {
try {
e.sym.complete();
} catch (RuntimeException x) {
if (logger.isLoggable(Level.FINEST)) {
logger.log(Level.FINEST,"Let's see whether we survive this: ",x); // NOI18N
}
}
}
}
return pe.getEnclosedElements();
}
protected void addPackageContent(PackageElement pe, EnumSet<ElementKind> kinds, DeclaredType baseType, boolean insideNew) {
if (LOGGABLE) log("addPackageContent " + pe); // NOI18N
Elements elements = controller.getElements();
JavafxTypes types = controller.getJavafxTypes();
JavafxcScope scope = controller.getTreeUtilities().getScope(path);
for (Element e : getEnclosedElements(pe)) {
if (e.getKind().isClass() || e.getKind() == ElementKind.INTERFACE) {
String name = e.getSimpleName().toString();
if (! controller.getTreeUtilities().isAccessible(scope, e)) {
if (LOGGABLE) log(" not accessible " + name); // NOI18N
continue;
}
if (JavaFXCompletionProvider.startsWith(name, prefix) &&
!name.contains("$")) { // NOI18N
addResult(JavaFXCompletionItem.createTypeItem((TypeElement) e, (DeclaredType) e.asType(), query.anchorOffset, elements.isDeprecated(e), insideNew, false, false));
}
for (Element ee : e.getEnclosedElements()) {
if (ee.getKind().isClass() || ee.getKind() == ElementKind.INTERFACE) {
String ename = ee.getSimpleName().toString();
if (!controller.getTreeUtilities().isAccessible(scope, ee)) {
if (LOGGABLE) log(" not accessible " + ename); // NOI18N
continue;
}
log(ename + " isJFXClass " + types.isJFXClass((Symbol) ee)); // NOI18N
if (JavaFXCompletionProvider.startsWith(ename, prefix) &&
types.isJFXClass((Symbol) ee)) {
addResult(JavaFXCompletionItem.createTypeItem((TypeElement) ee, (DeclaredType) ee.asType(), query.anchorOffset, elements.isDeprecated(ee), insideNew, false, false));
}
}
}
}
}
String pkgName = pe.getQualifiedName() + "."; //NOI18N
if (prefix != null && prefix.length() > 0) {
pkgName += prefix;
}
addPackages(pkgName);
}
protected void addBasicTypes() {
if (LOGGABLE) log("addBasicTypes "); // NOI18N
addBasicType("Boolean", "boolean"); // NOI18N
addBasicType("Integer", "int"); // NOI18N
addBasicType("Number", "float"); // NOI18N
addBasicType("String", "String"); // NOI18N
// new ones in 1.1:
addBasicType("Long", "long"); // NOI18N
addBasicType("Short", "short"); // NOI18N
addBasicType("Byte", "byte"); // NOI18N
addBasicType("Float", "float"); // NOI18N
addBasicType("Double", "double"); // NOI18N
addBasicType("Character", "char"); // NOI18N
}
private void addBasicType(String name1, String name2) {
if (LOGGABLE) log(" addBasicType " + name1 + " : " + name2); // NOI18N
JavafxcScope scope = controller.getTreeUtilities().getScope(path);
while (scope != null) {
if (LOGGABLE) log(" scope == " + scope); // NOI18N
for (Element local : scope.getLocalElements()) {
if (LOGGABLE) log(" local == " + local.getSimpleName() + " kind: " + local.getKind() + " class: " + local.getClass().getName() + " asType: " + local.asType()); // NOI18N
if (local.getKind().isClass() || local.getKind() == ElementKind.INTERFACE) {
if (! (local instanceof TypeElement)) {
if (LOGGABLE) log(" " + local.getSimpleName() + " not TypeElement"); // NOI18N
continue;
}
TypeElement te = (TypeElement) local;
String name = local.getSimpleName().toString();
if (name.equals(name2)) {
if (JavaFXCompletionProvider.startsWith(name1, prefix)) {
if (LOGGABLE) log(" found " + name1); // NOI18N
if (local.asType() == null || local.asType().getKind() != TypeKind.DECLARED) {
addResult(JavaFXCompletionItem.createTypeItem(name1, query.anchorOffset, false, false, true));
} else {
DeclaredType dt = (DeclaredType) local.asType();
addResult(JavaFXCompletionItem.createTypeItem(te, dt, query.anchorOffset, false, false, true, false));
}
return;
}
}
}
}
scope = scope.getEnclosingScope();
}
}
protected void addLocalAndImportedTypes(final EnumSet<ElementKind> kinds, final DeclaredType baseType, final Set<? extends Element> toExclude, boolean insideNew, TypeMirror smart) {
if (LOGGABLE) log("addLocalAndImportedTypes"); // NOI18N
JavafxcTrees trees = controller.getTrees();
JavafxcScope scope = controller.getTreeUtilities().getScope(path);
JavafxcScope originalScope = scope;
while (scope != null) {
if (LOGGABLE) log(" scope == " + scope); // NOI18N
addLocalAndImportedTypes(scope.getLocalElements(), kinds, baseType, toExclude, insideNew, smart, originalScope, null,false);
scope = scope.getEnclosingScope();
}
Element e = trees.getElement(path);
while (e != null && e.getKind() != ElementKind.PACKAGE) {
e = e.getEnclosingElement();
}
if (e != null) {
if (LOGGABLE) log("will scan package " + e.getSimpleName()); // NOI18N
PackageElement pkge = (PackageElement)e;
addLocalAndImportedTypes(getEnclosedElements(pkge), kinds, baseType, toExclude, insideNew, smart, originalScope, pkge,false);
}
addPackages(prefix);
if (query.queryType == JavaFXCompletionProvider.COMPLETION_ALL_QUERY_TYPE) {
addAllTypes(kinds, insideNew, prefix);
} else {
query.hasAdditionalItems = true;
}
}
private void addLocalAndImportedTypes(Iterable<? extends Element> from,
final EnumSet<ElementKind> kinds, final DeclaredType baseType,
final Set<? extends Element> toExclude,
boolean insideNew, TypeMirror smart, JavafxcScope originalScope,
PackageElement myPackage,boolean simpleNameOnly) {
final Elements elements = controller.getElements();
for (Element local : from) {
if (LOGGABLE) log(" local == " + local); // NOI18N
String name = local.getSimpleName().toString();
if (name.contains("$")) { // NOI18N
continue;
}
if (local.getKind().isClass() || local.getKind() == ElementKind.INTERFACE) {
if (local.asType() == null || local.asType().getKind() != TypeKind.DECLARED) {
continue;
}
DeclaredType dt = (DeclaredType) local.asType();
TypeElement te = (TypeElement) local;
if (!controller.getTreeUtilities().isAccessible(originalScope, te)) {
if (LOGGABLE) log(" not accessible " + name); // NOI18N
continue;
}
Element parent = te.getEnclosingElement();
if (parent.getKind() == ElementKind.CLASS) {
if (!controller.getTreeUtilities().isAccessible(originalScope, parent)) {
if (LOGGABLE) log(" parent not accessible " + name); // NOI18N
continue;
}
}
if (smart != null && local.asType() == smart) {
addResult(JavaFXCompletionItem.createTypeItem(te, dt, query.anchorOffset, elements.isDeprecated(local), insideNew, true, false));
}
if (JavaFXCompletionProvider.startsWith(name, prefix) && !name.contains("$")) { // NOI18N
if (simpleNameOnly) {
addResult(JavaFXCompletionItem.createTypeItem(local.getSimpleName().toString(), query.anchorOffset, elements.isDeprecated(local), insideNew, false));
} else {
addResult(JavaFXCompletionItem.createTypeItem(te, dt, query.anchorOffset, elements.isDeprecated(local), insideNew, false, false));
}
}
if (parent == myPackage) {
if (LOGGABLE) log(" will check inner classes of: " + local); // NOI18N
if (local.getEnclosedElements() != null) {
addLocalAndImportedTypes(local.getEnclosedElements(), kinds, baseType, toExclude, insideNew, smart, originalScope, null,true);
}
}
}
}
}
protected void addLocalAndImportedFunctions() {
if (LOGGABLE) log("addLocalAndImportedFunctions"); // NOI18N
JavafxcScope scope = controller.getTreeUtilities().getScope(path);
while (scope != null) {
if (LOGGABLE) log(" scope == " + scope); // NOI18N
for (Element local : scope.getLocalElements()) {
if (LOGGABLE) log(" local == " + local); // NOI18N
String name = local.getSimpleName().toString();
if (name.contains("$")) { // NOI18N
continue;
}
if (local.getKind() == ElementKind.METHOD) {
if (JavaFXCompletionProvider.startsWith(name, prefix) && !name.contains("$")) { // NOI18N
addResult(JavaFXCompletionItem.createExecutableItem(
(ExecutableElement) local,
(ExecutableType) local.asType(),
query.anchorOffset, false, false, false, false));
}
}
}
scope = scope.getEnclosingScope();
}
}
private void addPseudoVariables() {
for (String pVar : PSEUDO_VARS) {
if (JavaFXCompletionProvider.startsWith(pVar, getPrefix())) {
addResult(JavaFXCompletionItem.createPseudoVariable(pVar, query.anchorOffset));
}
}
}
/**
* @param simpleName name of a class or fully qualified name of a class
* @return TypeElement or null if the passed in String does not denote a class
*/
protected TypeElement findTypeElement(String simpleName) {
if (LOGGABLE) log("findTypeElement: " + simpleName); // NOI18N
JavafxcTrees trees = controller.getTrees();
JavaFXTreePath p = new JavaFXTreePath(root);
JavafxcScope scope = controller.getTreeUtilities().getScope(path);
while (scope != null) {
if (LOGGABLE) log(" scope == " + scope); // NOI18N
TypeElement res = findTypeElement(scope.getLocalElements(), simpleName,null);
if (res != null) {
return res;
}
scope = scope.getEnclosingScope();
}
Element e = trees.getElement(p);
while (e != null && e.getKind() != ElementKind.PACKAGE) {
e = e.getEnclosingElement();
}
if (e != null) {
PackageElement pkge = (PackageElement)e;
return findTypeElement(getEnclosedElements(pkge), simpleName,pkge);
}
return null;
}
/**
* @param simpleName name of a class or fully qualified name of a class
* @param myPackage can be null - if not null the inner classes of classes from this package will be checked
* @return TypeElement or null if the passed in String does not denote a class
*/
private TypeElement findTypeElement(Iterable<? extends Element> from, String simpleName,PackageElement myPackage) {
if (LOGGABLE) log(" private findTypeElement " + simpleName + " in package " + myPackage); // NOI18N
Elements elements = controller.getElements();
for (Element local : from) {
if (LOGGABLE) log(" local == " + local.getSimpleName() + " kind: " + local.getKind() + " class: " + local.getClass().getName() + " asType: " + local.asType()); // NOI18N
if (local.getKind().isClass() || local.getKind() == ElementKind.INTERFACE) {
if (local.asType() == null || local.asType().getKind() != TypeKind.DECLARED) {
if (LOGGABLE) log(" is not TypeKind.DECLARED -- ignoring"); // NOI18N
continue;
}
if (local instanceof TypeElement) {
String name = local.getSimpleName().toString();
if (name.equals(simpleName)) {
return (TypeElement) local;
}
PackageElement pe = elements.getPackageOf(local);
String fullName = pe.getQualifiedName().toString() + '.' + name; // NOI18N
if (fullName.equals(simpleName)) {
return (TypeElement) local;
}
if (pe == myPackage) {
if (LOGGABLE) log(" will check inner classes of: " + local); // NOI18N
TypeElement res = findTypeElement(local.getEnclosedElements(), simpleName,null);
if (res != null) {
return res;
}
}
}
}
}
return null;
}
protected void addAllTypes(EnumSet<ElementKind> kinds, boolean insideNew, String myPrefix) {
if (LOGGABLE) log(" addAllTypes "); // NOI18N
for (ElementHandle<TypeElement> name :
controller.getClasspathInfo().getClassIndex().getDeclaredTypes(
myPrefix != null ? myPrefix : EMPTY,
NameKind.PREFIX,
EnumSet.allOf(SearchScope.class))) {
String[] sigs = name.getSignatures();
if ((sigs == null) || (sigs.length == 0)) {
continue;
}
String sig = sigs[0];
int firstDollar = sig.indexOf('$'); // NOI18N
if (firstDollar >= 0) {
int secondDollar = sig.indexOf('$', firstDollar); // NOI18N
if (secondDollar >= 0) {
// we don't want to show second level inner classes
continue;
}
}
if (!name.getQualifiedName().startsWith("com.sun.") && // NOI18N
(!name.getQualifiedName().startsWith("sun.")) // NOI18N
) {
LazyTypeCompletionItem item = LazyTypeCompletionItem.create(
name, kinds,
query.anchorOffset,
controller, insideNew);
addResult(item);
}
}
}
protected SafeTokenSequence<JFXTokenId> findLastNonWhitespaceToken(Tree tree, int position) {
int startPos = (int) getSourcePositions().getStartPosition(root, tree);
return findLastNonWhitespaceToken(startPos, position);
}
protected SafeTokenSequence<JFXTokenId> findLastNonWhitespaceToken(int startPos, int endPos) {
TokenSequence<JFXTokenId> ts_ = ((TokenHierarchy<?>) controller.getTokenHierarchy()).tokenSequence(JFXTokenId.language());
SafeTokenSequence<JFXTokenId> ts = new SafeTokenSequence<JFXTokenId>(ts_, controller.getDocument(), cancellable);
ts.move(endPos);
ts = previousNonWhitespaceToken(ts);
if (ts == null || ts.offset() < startPos) {
return null;
}
return ts;
}
private SafeTokenSequence<JFXTokenId> findFirstNonWhitespaceToken(Tree tree, int position) {
int startPos = (int) getSourcePositions().getStartPosition(root, tree);
return findFirstNonWhitespaceToken(startPos, position);
}
protected SafeTokenSequence<JFXTokenId> findFirstNonWhitespaceToken(int startPos, int endPos) {
TokenSequence<JFXTokenId> ts_ = ((TokenHierarchy<?>) controller.getTokenHierarchy()).tokenSequence(JFXTokenId.language());
SafeTokenSequence<JFXTokenId> ts = new SafeTokenSequence<JFXTokenId>(ts_, controller.getDocument(), cancellable);
ts.move(startPos);
ts = nextNonWhitespaceToken(ts);
if (ts == null || ts.offset() >= endPos) {
return null;
}
return ts;
}
protected Tree getArgumentUpToPos(Iterable<? extends ExpressionTree> args, int startPos, int cursorPos) {
for (ExpressionTree e : args) {
int argStart = (int) sourcePositions.getStartPosition(root, e);
int argEnd = (int) sourcePositions.getEndPosition(root, e);
if (argStart == Diagnostic.NOPOS || argEnd == Diagnostic.NOPOS) {
continue;
}
if (cursorPos >= argStart && cursorPos < argEnd) {
return e;
} else {
SafeTokenSequence<JFXTokenId> last = findLastNonWhitespaceToken(startPos, cursorPos);
if (last == null) {
continue;
}
if (last.token().id() == JFXTokenId.LPAREN) {
return e;
}
if (last.token().id() == JFXTokenId.COMMA && cursorPos - 1 == argEnd) {
return e;
}
}
}
return null;
}
/**
* XXX
*/
protected void useSanitizedSource(String source, final int pos) {
if (LOGGABLE) log("useSanitizedSource" + source + " pos == " + pos); // NOI18N
if (usingSanitizedSource > 1) {
// allow to recurse only twice ;-)
return;
}
try {
usingSanitizedSource++;
FileSystem fs = FileUtil.createMemoryFileSystem();
final FileObject fo = fs.getRoot().createData("tmp" + (new Random().nextLong()) + ".fx"); // NOI18N
Writer w = new OutputStreamWriter(fo.getOutputStream());
w.write(source);
w.close();
if (LOGGABLE) log(" source written to " + fo); // NOI18N
ClasspathInfo info = ClasspathInfo.create(controller.getFileObject());
JavaFXParserResult parserResult = JavaFXParserResult.create(Source.create(fo), info);
if (LOGGABLE) log(" JavaFXParserResult obtained " + parserResult); // NOI18N
CompilationController.create(parserResult).runWhenScanFinished(new Task<CompilationController>() {
public void run(CompilationController sanitizedController) throws Exception {
if (LOGGABLE) log(" scan finished"); // NOI18N
JavaFXCompletionEnvironment env = query.getCompletionEnvironment(sanitizedController, pos,true);
if (LOGGABLE) log(" env == " + env); // NOI18N
if (sanitizedController.toPhase(Phase.ANALYZED).lessThan(Phase.ANALYZED)) {
if (LOGGABLE) log(" sanitized failed to analyze -- returning"); // NOI18N
return;
}
if (LOGGABLE) log(" sanitized analyzed"); // NOI18N
if (! env.isTreeBroken()) {
if (LOGGABLE) log(" sanitized non-broken tree"); // NOI18N
final Tree leaf = env.getPath().getLeaf();
env.inside(leaf);
// try to remove sanitized entries:
String sanitizedName = fo.getName();
Set<JavaFXCompletionItem> toRemove = new TreeSet<JavaFXCompletionItem>();
for (JavaFXCompletionItem r : query.results) {
if (LOGGABLE) log(" checking " + r.getLeftHtmlText()); // NOI18N
if (r.getLeftHtmlText().contains(sanitizedName)) {
if (LOGGABLE) log(" will remove " + r); // NOI18N
toRemove.add(r);
}
}
query.results.removeAll(toRemove);
}
}
});
} catch (IOException ex) {
if (LOGGABLE) {
logger.log(Level.FINE,"useSanitizedSource failed: ",ex); // NOI18N
}
} catch (ParseException e) {
Exceptions.printStackTrace(e);
} finally {
usingSanitizedSource--;
}
}
protected static SafeTokenSequence<JFXTokenId> nextNonWhitespaceToken(SafeTokenSequence<JFXTokenId> ts) {
while (ts.moveNext()) {
switch (ts.token().id()) {
case WS:
case LINE_COMMENT:
case COMMENT:
case DOC_COMMENT:
break;
default:
return ts;
}
}
return null;
}
static SafeTokenSequence<JFXTokenId> previousNonWhitespaceToken(SafeTokenSequence<JFXTokenId> ts) {
while (ts.movePrevious()) {
switch (ts.token().id()) {
case WS:
case LINE_COMMENT:
case COMMENT:
case DOC_COMMENT:
break;
default:
return ts;
}
}
return null;
}
protected static TypeMirror asMemberOf(Element element, TypeMirror type, Types types) {
TypeMirror ret = element.asType();
TypeMirror enclType = element.getEnclosingElement().asType();
if (enclType.getKind() == TypeKind.DECLARED) {
enclType = types.erasure(enclType);
}
while (type != null && type.getKind() == TypeKind.DECLARED) {
if (types.isSubtype(type, enclType)) {
ret = types.asMemberOf((DeclaredType) type, element);
break;
}
type = ((DeclaredType) type).getEnclosingType();
}
return ret;
}
private static void log(String s) {
if (LOGGABLE) {
logger.fine(s);
}
}
private static class Pair<A, B> {
private A a;
private B b;
private Pair(A a, B b) {
this.a = a;
this.b = b;
}
}
}
| [
"[email protected]"
] | |
cd4ceda4a268e43bc1a9ee8a7a8f5ec8d1aa0481 | bd5d5a8d8d4af620f4861e96aa9dcf48a3955487 | /src/main/java/com/election/action/PartyLAAction.java | 00976caeb3cae59c2c150dd61ef8a41672d2ccc8 | [] | no_license | prathibhasathyajith/ElectionSurvey | c6cd00f80c7d4dcb789d90a3eb4fb8699e72baf4 | ffc20ff180408558e6085854da9cd327bb342e4b | refs/heads/master | 2021-09-08T12:12:12.241037 | 2018-03-09T13:57:18 | 2018-03-09T13:57:18 | 114,732,833 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,684 | java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.election.action;
import com.election.bean.PartyLABean;
import com.election.bean.PartyLAInputBean;
import com.election.bean.Type;
import com.election.dao.PartyLADAO;
import com.election.mapping.PartyLa;
import com.opensymphony.xwork2.ActionSupport;
import com.opensymphony.xwork2.ModelDriven;
import java.util.ArrayList;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
*
* @author prathibha_s
*/
public class PartyLAAction extends ActionSupport implements ModelDriven<Object> {
PartyLAInputBean inputBean = new PartyLAInputBean();
@Override
public Object getModel() {
return inputBean;
}
public String execute() {
System.out.println("called PartyLAAction : execute");
return SUCCESS;
}
public String view() {
System.out.println("called PartyLAAction : view");
String msg = "view";
try {
PartyLADAO dao = new PartyLADAO();
List<Type> statusList = new ArrayList<Type>();
Type status = new Type();
status.setCode("ACT");
status.setDescription("Active");
statusList.add(status);
status = new Type();
status.setCode("DEAT");
status.setDescription("Deactive");
statusList.add(status);
inputBean.setStatusList(statusList);
dao.getPartyList(inputBean);
dao.getLAList(inputBean);
} catch (Exception e) {
addActionError("PartyLA error occurred while processing");
Logger.getLogger(PartyLAAction.class.getName()).log(Level.SEVERE, null, e);
}
return msg;
}
public String list() {
System.out.println("called PartyLAAction: List");
try {
int rows = inputBean.getRows();
int page = inputBean.getPage();
int to = (rows * page);
int from = to - rows;
long records = 0;
String orderBy = "";
if (!inputBean.getSidx().isEmpty()) {
orderBy = " order by " + inputBean.getSidx() + " " + inputBean.getSord();
}
PartyLADAO dao = new PartyLADAO();
List<PartyLABean> dataList = dao.getSearchList(inputBean, rows, from, orderBy);
if (!dataList.isEmpty()) {
records = dataList.get(0).getFullCount();
inputBean.setRecords(records);
inputBean.setGridModel(dataList);
int total = (int) Math.ceil((double) records / (double) rows);
inputBean.setTotal(total);
} else {
inputBean.setRecords(0L);
inputBean.setTotal(0);
}
} catch (Exception e) {
addActionError("PartyLA list error occurred while processing");
Logger.getLogger(PartyLAAction.class.getName()).log(Level.SEVERE, null, e);
}
return "list";
}
public String add() {
System.out.println("called CandidateAction : add");
String result = "message";
try {
PartyLADAO dao = new PartyLADAO();
String message = this.validateInputs();
if (message.isEmpty()) {
message = dao.insertPartyLA(inputBean);
if (message.isEmpty()) {
addActionMessage("Parties of local authority assigned successfully");
} else {
addActionError(message);
}
} else {
addActionError(message);
}
} catch (Exception e) {
addActionError("PartyLA add error occurred while processing");
Logger.getLogger(PartyLAAction.class.getName()).log(Level.SEVERE, null, e);
}
return result;
}
public String update() {
System.out.println("called PartyLAAction : update");
String result = "message";
try {
PartyLADAO dao = new PartyLADAO();
String message = this.validateInputs();
if (message.isEmpty()) {
message = dao.updatePartyLA(inputBean);
if (message.isEmpty()) {
addActionMessage("Parties of local authority updated successfully");
} else {
addActionError(message);
}
} else {
addActionError(message);
}
} catch (Exception ex) {
addActionError("PartyLA update error occurred while processing");
Logger.getLogger(PartyLAAction.class.getName()).log(Level.SEVERE, null, ex);
}
return result;
}
public String find() {
System.out.println("called PartyLAAction: find");
PartyLa partyLa = null;
try {
System.out.println("id " + inputBean.getId());
if (inputBean.getId() != null && !inputBean.getId().isEmpty()) {
PartyLADAO dao = new PartyLADAO();
partyLa = dao.findPartyLaById(inputBean.getId());
inputBean.setLa(partyLa.getLocalAuthority().getCode());
inputBean.setParty(partyLa.getPartyCode());
inputBean.setContactNo(partyLa.getContactNo());
inputBean.setAddress(partyLa.getAddress());
inputBean.setStatus(partyLa.getStatus());
} else {
inputBean.setMessage("Empty detail");
}
} catch (Exception ex) {
addActionError("PartyLA find error occurred while processing");
Logger.getLogger(PartyLAAction.class.getName()).log(Level.SEVERE, null, ex);
}
return "find";
}
public String delete() {
System.out.println("called PartyLAAction : Delete");
String message = null;
String retType = "delete";
try {
PartyLADAO dao = new PartyLADAO();
message = dao.deletePartyLA(inputBean);
if (message.isEmpty()) {
message = "Deleted successfully";
}
inputBean.setMessage(message);
} catch (Exception e) {
addActionError("PartyLA delete error occurred while processing");
Logger.getLogger(PartyLAAction.class.getName()).log(Level.SEVERE, null, e);
}
return retType;
}
private String validateInputs() {
String message = "";
if (inputBean.getLa()== null || inputBean.getLa().trim().isEmpty()) {
message = "Local authority cannot be empty";
} else if (inputBean.getParty()== null || inputBean.getParty().trim().isEmpty()) {
message = "Party cannot be empty";
} else if (inputBean.getContactNo()== null || inputBean.getContactNo().trim().isEmpty()) {
message = "Contact no cannot be empty";
} else if (inputBean.getAddress()== null || inputBean.getAddress().trim().isEmpty()) {
message = "Address cannot be empty";
} else if (inputBean.getStatus()== null || inputBean.getStatus().trim().isEmpty()) {
message = "Status cannot be empty";
}
return message;
}
}
| [
"[email protected]"
] | |
43cc1a058abbc5c91d9556dd4bc641d61c340da5 | 870db8c055dc4fb2355b9b5eceec8824465f8256 | /android crowd-sourcing app/ProjectSpartan/app/src/main/java/com/example/atlantic8/projectspartan/PictureInfo.java | e3b4a1a0117dffd203baefff5f3607c94c0ed97e | [] | no_license | Atlantic8/Project | bfd6d4144913bf1ecf135c3a28c1dd79992b6381 | dc67ab60096fd7bd2d19d5410439636240dbbfe2 | refs/heads/master | 2021-01-20T19:30:38.574480 | 2018-12-13T12:39:28 | 2018-12-13T12:39:28 | 60,657,764 | 1 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,630 | java | package com.example.atlantic8.projectspartan;
/**
* Created by Atlantic8 on 2016/2/26 0026.
*/
public class PictureInfo {
public String title;
public String user_name;
public String time;
public String picture_path;
public String value;
public String extra;
/**
*
* @param pname : name of picture
* @param uname : username
* @param times : unix timestamp
* @param ppath : path in server
* @param values
* @param extras
*/
public PictureInfo (String title, String username, String times,
String picture_path, String values, String extras) {
this.title = title;
this.picture_path = picture_path;
this.value = values;
this.time = this.TimeStamp2Date(times);
this.user_name = username;
this.extra = extras;
}
public PictureInfo (String title, String username, String times,
String picture_path, String values) {
this.title = title;
this.picture_path = picture_path;
this.value = values;
this.time = this.TimeStamp2Date(times);
this.user_name = username;
}
/**Convert Unix timestamp to normal date style
*
* @param timestampString : timestamp in string format
* @return normal date in "dd/MM/yyyy HH:mm:ss" format
*/
private String TimeStamp2Date(String timestampString){
Long timestamp = Long.parseLong(timestampString)*1000;
String date = new java.text.SimpleDateFormat("dd/MM/yyyy HH:mm:ss").format(new java.util.Date(timestamp));
return date;
}
}
| [
"[email protected]"
] | |
76d744adc3049f69510ffd9ed2d7424f4cdbfd10 | ea52903ebad5600573539dc824361f5ef410cd63 | /src/Event.java | 3eb8fe9be34dee23b7416339a81d1a4ae48c38f0 | [] | no_license | tansu95/Validation_of_read_events | b531567f577a658b60260948a371c22544baeaa9 | e54b5fb330365e0547461c42cadf690d0db4a9a4 | refs/heads/main | 2023-07-04T05:33:21.003996 | 2021-08-01T10:25:35 | 2021-08-01T10:25:35 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 909 | java | public abstract class Event {
private String title;
private int releaseYear;
private int age;
@Override
public String toString() {
return "Event{" +
"title='" + title + '\'' +
", releaseYear=" + releaseYear +
", age=" + age +
'}';
}
public Event(String title, int releaseYear, int age) {
this.title = title;
this.releaseYear = releaseYear;
this.age = age;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public int getReleaseYear() {
return releaseYear;
}
public void setReleaseYear(int releaseYear) {
this.releaseYear = releaseYear;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
} | [
"[email protected]"
] | |
29a2f7ce8f384aa4113a522d903391783ce8fe22 | 26d2b32330f22cd58f4430ceb62732153d2c4ae6 | /persistence/src/java/main/com/medigy/persist/model/insurance/InsurancePlanCoverage.java | 76df300370c0a5d5fcc0940215fe39df6953ed22 | [] | no_license | netspective/medigy-java | 0df8a94bf4e8af7748412c2f85ae767524bd2e40 | a30bf19138ed5b2594e9b6dfaf32b44836ac694d | refs/heads/master | 2016-09-16T07:15:30.322251 | 2005-11-11T03:06:21 | 2005-11-11T03:06:21 | 255,324 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,436 | java | /*
* Copyright (c) 2005 Your Corporation. All Rights Reserved.
*/
package com.medigy.persist.model.insurance;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratorType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
@Entity
public class InsurancePlanCoverage extends CoverageRelationship
{
public static final String PK_COLUMN_NAME = "ins_plan_coverage_id";
private Long insurancePlanCoverageId;
private InsurancePlan insurancePlan;
private Coverage coverage;
@Id(generate = GeneratorType.AUTO)
@Column(name = PK_COLUMN_NAME)
public Long getInsurancePlanCoverageId()
{
return insurancePlanCoverageId;
}
public void setInsurancePlanCoverageId(final Long insurancePlanCoverageId)
{
this.insurancePlanCoverageId = insurancePlanCoverageId;
}
@ManyToOne
@JoinColumn(name = InsurancePlan.PK_COLUMN_NAME)
public InsurancePlan getInsurancePlan()
{
return insurancePlan;
}
public void setInsurancePlan(final InsurancePlan insurancePlan)
{
this.insurancePlan = insurancePlan;
}
@ManyToOne
@JoinColumn(name = Coverage.PK_COLUMN_NAME)
public Coverage getCoverage()
{
return coverage;
}
public void setCoverage(final Coverage coverage)
{
this.coverage = coverage;
}
}
| [
"aye.thu"
] | aye.thu |
3ff11484823385db0536b36faddbd63766997a96 | e98645aef86ffb53a9254ac14a1acb6d6a70286b | /src/com/tj/jst/outside/business/queryQualification/dao/QueryQualificationDaoImpl.java | d82702dad4779c8fc152d0c9f217101c4d00b1fd | [] | no_license | sunzhenwen/IntegrationPlatform | d264256e594b6401f4413cefdb3685be0e5e5559 | 505fb6b5e6f7d6eed74a7d78650f1482041780f7 | refs/heads/master | 2021-01-01T18:43:31.291233 | 2017-07-26T12:00:05 | 2017-07-26T12:00:05 | 98,411,201 | 0 | 0 | null | null | null | null | GB18030 | Java | false | false | 2,862 | java | package com.tj.jst.outside.business.queryQualification.dao;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
import com.tj.jst.base.connection.ConnectionFactory;
import com.tj.jst.base.dao.BaseDao;
import com.tj.jst.base.page.Condition;
import com.tj.jst.base.page.Page;
import com.tj.jst.base.util.dictionary.DictionaryClass;
import com.tj.jst.outside.business.complete.model.Complete;
import com.tj.jst.outside.business.construction.model.Construction;
import com.tj.jst.outside.business.contractFiling.model.ContractFiling;
import com.tj.jst.outside.business.quality.model.Quality;
import com.tj.jst.outside.business.queryQualification.model.Qualification;
import com.tj.jst.outside.business.queryprojection.model.Filing;
import com.tj.jst.outside.business.queryprojection.model.Permit;
import com.tj.jst.outside.business.queryprojection.model.Plan;
import com.tj.jst.outside.business.queryprojection.model.ProjectModel;
import com.tj.jst.outside.business.queryprojection.model.Ready;
import com.tj.jst.outside.business.queryprojection.model.Tender;
import com.tj.jst.outside.business.safety.model.ConstructionSafety;
import com.tj.jst.outside.business.safety.model.Labour;
import com.tj.jst.outside.business.safety.model.Major;
import com.tj.jst.outside.business.safety.model.Safety;
import com.tj.jst.outside.business.tenderInfo.model.TenderInfo;
import com.tj.jst.outside.business.upload.model.Upload;
/**
* 业务查询
*
* @author Administrator
*
*/
public class QueryQualificationDaoImpl extends BaseDao implements IQueryQualificationDao {
Connection conn = null;
PreparedStatement pstmt = null;
ResultSet rs = null;
/**
* 分页查询
*/
@Override
public List<Qualification> queryPage(String corpCode) {
// TODO Auto-generated method stub
List<Qualification> qualifications = new ArrayList<Qualification>();
String sql = "select * from TBCORPCERTINFO where corpCode = ? " ;
try {
conn = ConnectionFactory.getBasicConnection();
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, corpCode);
rs = pstmt.executeQuery();
if (rs != null) {
while (rs.next()) {
Qualification qualification = new Qualification();
qualification.setCorpName(rs.getString("corpName"));
qualification.setCertName(rs.getString("certName"));
qualification.setCertId(rs.getString("certId"));
qualification.setOrganDate(rs.getDate("organDate"));
qualifications.add(qualification);
}
}
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally {
ConnectionFactory.closeConn(conn,pstmt,null);
}
return qualifications;
}
} | [
"[email protected]"
] | |
1d46d71537221ba72bc964f12108b09bfd9c8cd1 | 8dfe6d86df134e93303ce81824dcacc129cef4a7 | /challenges/challenge1/Subliminal-SS/Java/src/IntegerCalculator.java | 527a8e20f6992da113bd6beeae3a53f7d2b160b2 | [] | no_license | ddarkeh/CodingClub | 987585fdd3e020e6c9761d71db601a4dc66d612f | 44cf436e78efc812938262e278620ad296c4b3cf | refs/heads/master | 2021-01-12T03:22:28.210392 | 2017-01-12T09:00:55 | 2017-01-12T09:00:55 | 78,203,635 | 1 | 2 | null | 2017-01-12T09:00:55 | 2017-01-06T12:14:10 | Java | UTF-8 | Java | false | false | 1,326 | java | import java.util.*;
import java.lang.String;
public class IntegerCalculator {
public static void main(String[] args) {
System.out.println("Welcome to the Integer calculator!\nPlease specify an Integer value between 0 and 10000");
Scanner userInput = new Scanner(System.in);
int intToCalculate = -1;
int successFlag = 0;
while (successFlag == 0) {
try {
intToCalculate = userInput.nextInt();
userInput.nextLine();
if (intToCalculate > 0 && intToCalculate < 10000) {
successFlag = 1;
} else {
System.out.print("Data supplied is outside of scottstephers spec, please enter an Integer between 0 and 10000 exclusive.\n");
}
} catch (InputMismatchException errorOutput) {
userInput.nextLine();
System.out.print("Data supplied is outside of scottstephers spec, please enter an Integer between 0 and 10000 exclusive.\n");
}
}
System.out.println("Calculating the Sum total of " + intToCalculate);
String stringToCalculate = Integer.toString(intToCalculate);
String theArray[] = stringToCalculate.split("");
int totalResult = 0;
for (String s : theArray) {
totalResult = totalResult + Integer.parseInt(s);
}
System.out.print(totalResult + " " + "(" + String.join(" + ", theArray) + ")");
userInput.close();
}
} | [
"[email protected]"
] | |
bc88d883d4cf846db56dd75c36aa532d2cecf4d4 | f7de455b8aafa23378d264d00c70ba2dcbb3b6a2 | /src/main/java/pl/oncode/glass/web/dto/addMaterial/AddMaterialDto.java | 1503d8bd5a10e1ff5a5ab6886f6cd410369be08f | [] | no_license | proartz/glass-backend | 5b95b572f313f0fcef6d1b842cd98d62b03a25de | 67e3ab3510f2e657e909710528996513131ee941 | refs/heads/master | 2020-09-12T21:25:40.829503 | 2019-12-09T23:36:23 | 2019-12-09T23:36:23 | 222,561,421 | 0 | 0 | null | 2019-12-01T20:02:04 | 2019-11-18T22:59:19 | null | UTF-8 | Java | false | false | 1,578 | java | package pl.oncode.glass.web.dto.addMaterial;
import pl.oncode.glass.model.Material;
import javax.validation.constraints.NotEmpty;
import javax.validation.constraints.Size;
public class AddMaterialDto {
@Size(max = 30, message = "Name can have maximum 30 characters")
@NotEmpty(message = "Name cannot be null nor empty")
private String name;
@Size(max = 100, message = "Description can have maximum 100 characters")
private String description;
public AddMaterialDto() {
}
public AddMaterialDto(String name, String description) {
this.name = name;
this.description = description;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public static class AddMaterialDtoBuilder {
private String name;
private String description;
public AddMaterialDtoBuilder setName(String name) {
this.name = name;
return this;
}
public AddMaterialDtoBuilder setDescription(String description) {
this.description = description;
return this;
}
public AddMaterialDto createAddMaterialDto() {
return new AddMaterialDto(name, description);
}
}
public Material createMaterial() {
return new Material(null, this.name, this.description);
}
}
| [
"[email protected]"
] | |
70d6b82b0c476527c66fb3a40dd13ab126de7a8e | 32b72e1dc8b6ee1be2e80bb70a03a021c83db550 | /ast_results/geometer_FBReaderJ/third-party/android-filechooser/code/src/group/pals/android/lib/ui/filechooser/io/localfile/LocalFile.java | 6ddb96f27718bde526b24a62bd491d180597ff92 | [] | no_license | cmFodWx5YWRhdjEyMTA5/smell-and-machine-learning | d90c41a17e88fcd99d543124eeb6e93f9133cb4a | 0564143d92f8024ff5fa6b659c2baebf827582b1 | refs/heads/master | 2020-07-13T13:53:40.297493 | 2019-01-11T11:51:18 | 2019-01-11T11:51:18 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,974 | java | // isComment
package group.pals.android.lib.ui.filechooser.io.localfile;
import group.pals.android.lib.ui.filechooser.io.IFile;
import group.pals.android.lib.ui.filechooser.utils.history.History;
import java.io.File;
import java.util.List;
import android.os.Parcel;
import android.os.Parcelable;
/**
* isComment
*/
public class isClassOrIsInterface extends File implements IFile {
/**
* isComment
*/
private static final long isVariable = isStringConstant;
public isConstructor(String isParameter) {
super(isNameExpr);
}
public isConstructor(File isParameter) {
this(isNameExpr.isMethod());
}
// isComment
@Override
public IFile isMethod() {
return isMethod() == null ? null : new ParentFile(isMethod());
}
// isComment
public String isMethod() {
return isMethod();
}
// isComment
/**
* isComment
*/
@Override
public boolean isMethod(Object isParameter) {
return this == isNameExpr;
}
@Override
public boolean isMethod(IFile isParameter) {
return isNameExpr == null ? true : isMethod().isMethod(isNameExpr.isMethod());
}
// isComment
@Override
public IFile isMethod() {
return new LocalFile(isMethod());
}
/*isComment*/
@Override
public int isMethod() {
// isComment
return isIntegerConstant;
}
@Override
public void isMethod(Parcel isParameter, int isParameter) {
isNameExpr.isMethod(isMethod());
}
public static final Parcelable.Creator<LocalFile> isVariable = new Parcelable.Creator<LocalFile>() {
public LocalFile isMethod(Parcel isParameter) {
return new LocalFile(isNameExpr);
}
public LocalFile[] isMethod(int isParameter) {
return new LocalFile[isNameExpr];
}
};
private isConstructor(Parcel isParameter) {
this(isNameExpr.isMethod());
}
}
| [
"[email protected]"
] | |
d7746ff772f75c2bb72a66df1c980436f210ab6e | 021d38058a0f97e703b1a2891ae9e4c413a7a386 | /Week1/AddingValuesLoop.java | c9880eb9931d088e13fb6d50407058a0f8a38e64 | [] | no_license | nhunguyen76/BE_Novahub_Internship_Nhu | f48db0674ceb31d08b093046dc2398adc8a3ef6d | dbe0054be4d835756b2e3e7604ac18b3d71a33d6 | refs/heads/master | 2021-09-02T12:20:31.025978 | 2018-01-02T15:05:14 | 2018-01-02T15:05:14 | 113,452,430 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 482 | java | import java.util.Scanner;
public class AddingValuesLoop{
public static void main(String[] args){
Scanner in = new Scanner(System.in);
System.out.println("I will add up the numbers you give me.");
System.out.print("Number: ");
int num=in.nextInt();
int sum=0;
while(num!=0){
sum+=num;
System.out.println("The total so far is "+sum);
System.out.print("Number: ");
num=in.nextInt();
}
System.out.print("\nThe total is "+sum);
}
} | [
"[email protected]"
] | |
4a7b86ccc30a60ec4f3bee7045a8013a58ed31cf | e19d9ae43ee1f977276e148e669d864e5dc2dd12 | /app/src/main/java/com/example/sd_storage/MainActivity.java | 9e96cb660060e1db25e0a65c4e68e5dd83f3afb3 | [] | no_license | alvssantos-21/SD_storage | 6ab6dd07289cce5ac85718b698611f3af593151a | cc832ba856f9ed8e97b98bbb84643dc35e49796e | refs/heads/master | 2020-08-28T02:39:46.116133 | 2019-10-25T15:36:04 | 2019-10-25T15:36:04 | 217,564,524 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,188 | java | package com.example.sd_storage;
import androidx.appcompat.app.AlertDialog;
import androidx.appcompat.app.AppCompatActivity;
import android.app.Dialog;
import android.content.DialogInterface;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.Toast;
import java.util.ArrayList;
public class MainActivity extends AppCompatActivity implements AdapterView.OnItemClickListener {
String[] verNames, dates;
ListView lstversions;
int[] logo = {R.drawable.cupcake, R.drawable.donut, R.drawable.eclair, R.drawable.froyo, R.drawable.ginger, R.drawable.honeycomb, R.drawable.ice};
ArrayList<AndroidVersion> versions = new ArrayList<>();
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
setTitle("Android Version");
verNames = getResources().getStringArray(R.array.verName);
dates = getResources().getStringArray(R.array.rDate);
for(int i = 0; i < verNames.length; i++){
versions.add(new AndroidVersion(logo[i], verNames[i], dates[i]));
}
AndroidAdapter adapter = new AndroidAdapter(this, R.layout.item, versions);
lstversions = findViewById(R.id.lvAndroid);
lstversions.setAdapter(adapter);
lstversions.setOnItemClickListener(this);
}
@Override
public void onItemClick(AdapterView<?> parent, View view,final int i, long id) {
//Toast.makeText(this, verNames[i], Toast.LENGTH_LONG).show();
AlertDialog.Builder dialog = new AlertDialog.Builder(this);
dialog.setIcon(logo[i]);
dialog.setTitle(verNames[i]);
dialog.setMessage(dates[i]);
dialog.setNeutralButton("Close", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
Toast.makeText(MainActivity.this, verNames[i], Toast.LENGTH_LONG).show();
}
});
dialog.create().show();
}
}
| [
"[email protected]"
] | |
55ae99aaa9aa947e9555b2714489739b40082eeb | b96b2faa9e0ab0100cf60296595e1f0fe70bd4fa | /android/src/main/java/com/ijzerenhein/sharedelement/RNSharedElementView.java | 42dc8ffa0631548c8627544e2b7f7fe43b7cf04b | [
"MIT"
] | permissive | bcalik/react-native-shared-element | a9118f5d3e82d4af3db727276f9ca0596901b645 | 267fc708f5e27f34c0af61030bf65b1479362e03 | refs/heads/master | 2020-11-27T14:30:43.751977 | 2019-12-10T09:41:55 | 2019-12-10T09:41:55 | 229,489,006 | 0 | 0 | MIT | 2019-12-21T22:11:06 | 2019-12-21T22:11:06 | null | UTF-8 | Java | false | false | 4,247 | java | package com.ijzerenhein.sharedelement;
import android.util.Log;
import android.view.View;
import android.graphics.Rect;
import android.graphics.RectF;
import com.facebook.react.uimanager.ThemedReactContext;
class RNSharedElementView extends View {
static private String LOG_TAG = "RNSharedElementView";
private RNSharedElementDrawable mDrawable;
private RNSharedElementDrawable.ViewType mViewType;
RNSharedElementView(ThemedReactContext context) {
super(context);
mViewType = RNSharedElementDrawable.ViewType.NONE;
mDrawable = new RNSharedElementDrawable();
setBackground(mDrawable);
}
@Override
public boolean hasOverlappingRendering() {
return mViewType == RNSharedElementDrawable.ViewType.GENERIC;
}
void reset() {
setAlpha(0.0f);
}
void updateViewAndDrawable(
RectF layout,
RectF parentLayout,
Rect originalLayout,
Rect originalFrame,
RNSharedElementContent content,
RNSharedElementStyle style,
float alpha,
RNSharedElementResize resize,
RNSharedElementAlign align,
float position) {
// Update drawable
RNSharedElementDrawable.ViewType viewType = mDrawable.update(content, style, position);
boolean useGPUScaling = (resize != RNSharedElementResize.CLIP) &&
((viewType == RNSharedElementDrawable.ViewType.GENERIC) ||
(viewType == RNSharedElementDrawable.ViewType.PLAIN));
// Update layer type
if (mViewType != viewType) {
mViewType = viewType;
setLayerType(useGPUScaling ? View.LAYER_TYPE_HARDWARE : View.LAYER_TYPE_NONE, null);
}
// Update view size/position/scale
float width = layout.width();
float height = layout.height();
if (useGPUScaling) {
int originalWidth = originalFrame.width();
int originalHeight = originalFrame.height();
// Update view
layout(0, 0, originalWidth, originalHeight);
setTranslationX(layout.left - parentLayout.left);
setTranslationY(layout.top - parentLayout.top);
// Update scale
float scaleX = width / (float) originalWidth;
float scaleY = height / (float) originalHeight;
if (!Float.isInfinite(scaleX) && !Float.isNaN(scaleX) && !Float.isInfinite(scaleY) && !Float.isNaN(scaleY)) {
// Determine si
switch (resize) {
case AUTO:
case STRETCH:
break;
case CLIP:
case NONE:
scaleX = (float) originalWidth / (float) originalLayout.width();
scaleY = (float) originalHeight / (float) originalLayout.height();
break;
}
/*switch (align) {
case LEFT_TOP:
break;
case LEFT_CENTER:
break;
case LEFT_BOTTOM:
break;
case RIGHT_TOP:
break;
case RIGHT_CENTER:
break;
case RIGHT_BOTTOM:
break;
case CENTER_TOP:
break;
case CENTER_CENTER:
break;
case CENTER_BOTTOM:
break;
}*/
setScaleX(scaleX);
setScaleY(scaleY);
}
setPivotX(0);
setPivotY(0);
} else {
// Update view
layout(0, 0, (int)Math.ceil(width), (int)Math.ceil(height));
setTranslationX(layout.left - parentLayout.left);
setTranslationY(layout.top - parentLayout.top);
}
// Update view opacity and elevation
setAlpha(alpha);
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP) {
setElevation(style.elevation);
}
}
}
| [
"[email protected]"
] | |
e79f7a781f2260d2503299e74d57383a5c0941f5 | 2907303477ff0533c5e616fe4a663dbae3a16d24 | /src/test/java/fi/csc/chipster/rest/AdminResourceStatParsingTest.java | 156a8b794b94f9cff3ccaf31d6986b80fdcdb686 | [
"MIT"
] | permissive | edwardtao/chipster-web-server | ce2778a01f9da9b0bc373bbf1dae1f1d08ee38a0 | 90a82dfecc71a9f49ea5142ea5c69911a062f48e | refs/heads/master | 2023-05-22T05:34:45.781330 | 2021-06-02T06:45:29 | 2021-06-02T06:45:29 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,697 | java | package fi.csc.chipster.rest;
import static org.junit.Assert.assertEquals;
import java.util.HashMap;
import org.junit.Test;
public class AdminResourceStatParsingTest {
@Test
public void parseContainerCpuStats() {
String stats = "user 12799096\n" +
"system 952552\n";
HashMap<String, Object> status = new HashMap<>();
AdminResource.parseContainerCpuStats(stats, status);
assertEquals(Long.valueOf(12799096), status.get("cpu.user"));
// for (String key : status.keySet()) {
// System.out.println(key + ": " + status.get(key));
// }
}
@Test
public void parseContainerMemoryStats() {
String memoryString = "cache 33280602112\n" +
"rss 1157156864\n" +
"rss_huge 566231040\n" +
"mapped_file 1527808\n" +
"swap 0\n" +
"pgpgin 910350605\n" +
"pgpgout 905237877\n" +
"pgfault 1858278414\n" +
"pgmajfault 5048\n" +
"inactive_anon 0\n" +
"active_anon 1157124096\n" +
"inactive_file 930308096\n" +
"active_file 32350294016\n" +
"unevictable 0\n" +
"hierarchical_memory_limit 41875931136\n" +
"hierarchical_memsw_limit 41875931136\n" +
"total_cache 33280602112\n" +
"total_rss 1157156864\n" +
"total_rss_huge 566231040\n" +
"total_mapped_file 1527808\n" +
"total_swap 0\n" +
"total_pgpgin 910350605\n" +
"total_pgpgout 905237877\n" +
"total_pgfault 1858278414\n" +
"total_pgmajfault 5048\n" +
"total_inactive_anon 0\n" +
"total_active_anon 1157124096\n" +
"total_inactive_file 930308096\n" +
"total_active_file 32350294016\n" +
"total_unevictable 0\n";
HashMap<String, Object> mem = new HashMap<>();
AdminResource.parseContainerMemoryStats(memoryString, mem);
assertEquals(Long.valueOf(1157156864), mem.get("mem.rss"));
// for (String key : mem.keySet()) {
// System.out.println(key + ": " + mem.get(key));
// }
}
@Test
public void parseContainerDiskStats() {
String diskString = "253:0 Read 113679659008\n" +
"253:0 Write 22238393344\n" +
"253:0 Sync 21107835904\n" +
"253:0 Async 114810216448\n" +
"253:0 Total 135918052352\n" +
"8:16 Read 113687285760\n" +
"8:16 Write 22844026880\n" +
"8:16 Sync 21713420288\n" +
"8:16 Async 114817892352\n" +
"8:16 Total 136531312640\n" +
"253:1 Read 7168000\n" +
"253:1 Write 676328448\n" +
"253:1 Sync 676279296\n" +
"253:1 Async 7217152\n" +
"253:1 Total 683496448\n" +
"Total 273132861440\n";
HashMap<String, Object> disk = new HashMap<>();
AdminResource.parseContainerDiskStats(diskString, disk);
assertEquals(Long.valueOf(113679659008l), disk.get("disk.read,dev=253:0"));
// for (String key : disk.keySet()) {
// System.out.println(key + ": " + disk.get(key));
// }
}
@Test
public void parseContainerNetStats() {
String netString = "Inter-| Receive | Transmit\n" +
" face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed\n" +
" eth0: 210692602135 21770865 0 0 0 0 0 0 41905777974 17418185 0 0 0 0 0 0\n" +
" lo: 10061358324 729772 0 0 0 0 0 0 10061358324 729772 0 0 0 0 0 0\n";
HashMap<String, Object> net = new HashMap<>();
AdminResource.parseContainerNetStats(netString, net);
assertEquals(Long.valueOf(210692602135l), net.get("net.receive.bytes,interface=eth0"));
// for (String key : net.keySet()) {
// System.out.println(key + ": " + net.get(key));
// }
}
}
| [
"[email protected]"
] | |
c6757dc8dbbd4669e6c28e726807e4571ef6781b | b932b35dea7566a3c5b9ee0046df8f4a943bb416 | /structural/decorator/src/main/java/decorator/AddOn.java | 3b099ccb626cd2584f333d3c42470f44c282b561 | [] | no_license | cesar88/all-design-patterns-for-java | fbe48a7a297b7f52bd607c2e285d25fe0de9025b | 6dbb207c3a404501703bba9fdfd37733bf2395a6 | refs/heads/master | 2023-01-23T07:11:00.859513 | 2020-11-23T20:26:49 | 2020-11-23T20:26:49 | 315,078,882 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 188 | java | package decorator;
//Abstract Decorator
public abstract class AddOn extends Beverage {
protected Beverage bev;
public AddOn(Beverage bev) {
super("Add on");
this.bev=bev;
}
}
| [
"[email protected]"
] | |
d86761eb14aba10cf8f62acfab0c54c2ba54ffbf | 5f24f88c3d51345451065a7ed0dba2aa7627b69a | /java大作业/大作业2/src/work1/Checkuploadsong.java | 5dffcf9679c6a73e0e3d64eb899c30fba6d4b5ac | [] | no_license | Haohao-555/java_code | 22666744ab3053b149a1d2e82f31d5f81cfe72f3 | 5bf4c462c6357ffba784ca851b23c15866a245a4 | refs/heads/main | 2023-07-05T23:51:26.189684 | 2021-08-14T08:55:33 | 2021-08-14T08:55:33 | 395,930,433 | 1 | 0 | null | null | null | null | GB18030 | Java | false | false | 9,433 | java | /*
* Checkuploadsong.java
*
* Created on __DATE__, __TIME__
*/
package work1;
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import javax.swing.JOptionPane;
/**
*
* @author __USER__
*/
public class Checkuploadsong extends javax.swing.JFrame {
/** Creates new form Checkuploadsong */
public void update() {
try {
FileReader fr = new FileReader("file3.txt");
FileReader fs = new FileReader("file4.txt");
FileReader fd = new FileReader("file5.txt");
BufferedReader r = new BufferedReader(fr);
BufferedReader d = new BufferedReader(fs);
BufferedReader f = new BufferedReader(fd);
String s;
String h;
String k;
for (s = r.readLine(); s != null; s = r.readLine())
this.jTextField2.setText(s);
jTextField2.setEditable(false);
r.close();
for (h = d.readLine(); h != null; h = d.readLine())
this.jTextField3.setText(h);
jTextField3.setEditable(false);
d.close();
for (k = f.readLine(); k != null; k = f.readLine())
this.jTextField1.setText(k);
jTextField1.setEditable(false);
d.close();
} catch (IOException e) {
System.err.println("发生异常:" + e);
JOptionPane.showMessageDialog(this, e.getMessage());
}
}
public Checkuploadsong() {
initComponents();
update();
this.setLocationRelativeTo(null);
}
/** This method is called from within the constructor to
* initialize the form.
* WARNING: Do NOT modify this code. The content of this method is
* always regenerated by the Form Editor.
*/
//GEN-BEGIN:initComponents
// <editor-fold defaultstate="collapsed" desc="Generated Code">
private void initComponents() {
jLabel1 = new javax.swing.JLabel();
jLabel2 = new javax.swing.JLabel();
jTextField1 = new javax.swing.JTextField();
jLabel3 = new javax.swing.JLabel();
jTextField2 = new javax.swing.JTextField();
jLabel4 = new javax.swing.JLabel();
jTextField3 = new javax.swing.JTextField();
jButton1 = new javax.swing.JButton();
jButton2 = new javax.swing.JButton();
setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
jLabel1.setFont(new java.awt.Font("黑体", 0, 24));
jLabel1.setText("\u4e0a\u4f20\u6b4c\u66f2");
jLabel2.setText("\u4e0a\u4f20\u4eba\uff1a");
jLabel3.setText("\u6b4c\u66f2\uff1a");
jTextField2.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField2ActionPerformed(evt);
}
});
jLabel4.setText("\u6b4c\u624b\uff1a");
jTextField3.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jTextField3ActionPerformed(evt);
}
});
jButton1.setText("\u786e\u5b9a");
jButton1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton1ActionPerformed(evt);
}
});
jButton2.setText("\u53d6\u6d88");
jButton2.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton2ActionPerformed(evt);
}
});
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(
getContentPane());
getContentPane().setLayout(layout);
layout
.setHorizontalGroup(layout
.createParallelGroup(
javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(
layout
.createSequentialGroup()
.addGroup(
layout
.createParallelGroup(
javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(
layout
.createSequentialGroup()
.addGroup(
layout
.createParallelGroup(
javax.swing.GroupLayout.Alignment.LEADING,
false)
.addGroup(
layout
.createSequentialGroup()
.addGap(
167,
167,
167)
.addComponent(
jLabel1,
javax.swing.GroupLayout.PREFERRED_SIZE,
112,
javax.swing.GroupLayout.PREFERRED_SIZE))
.addGroup(
layout
.createSequentialGroup()
.addComponent(
jLabel2)
.addGap(
18,
18,
18)
.addComponent(
jTextField1,
javax.swing.GroupLayout.PREFERRED_SIZE,
84,
javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(
javax.swing.LayoutStyle.ComponentPlacement.RELATED,
javax.swing.GroupLayout.DEFAULT_SIZE,
Short.MAX_VALUE)
.addComponent(
jLabel3)))
.addGap(
24,
24,
24)
.addComponent(
jTextField2,
javax.swing.GroupLayout.PREFERRED_SIZE,
84,
javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(
81,
81,
81)
.addComponent(
jLabel4)
.addGap(
18,
18,
18)
.addComponent(
jTextField3,
javax.swing.GroupLayout.PREFERRED_SIZE,
84,
javax.swing.GroupLayout.PREFERRED_SIZE))
.addGroup(
layout
.createSequentialGroup()
.addGap(
138,
138,
138)
.addComponent(
jButton1)
.addGap(
158,
158,
158)
.addComponent(
jButton2)))
.addContainerGap(97, Short.MAX_VALUE)));
layout
.setVerticalGroup(layout
.createParallelGroup(
javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(
layout
.createSequentialGroup()
.addGap(28, 28, 28)
.addComponent(jLabel1)
.addGap(18, 18, 18)
.addGroup(
layout
.createParallelGroup(
javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel2)
.addComponent(
jTextField1,
javax.swing.GroupLayout.PREFERRED_SIZE,
javax.swing.GroupLayout.DEFAULT_SIZE,
javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(
jTextField2,
javax.swing.GroupLayout.PREFERRED_SIZE,
javax.swing.GroupLayout.DEFAULT_SIZE,
javax.swing.GroupLayout.PREFERRED_SIZE)
.addComponent(jLabel3)
.addComponent(jLabel4)
.addComponent(
jTextField3,
javax.swing.GroupLayout.PREFERRED_SIZE,
javax.swing.GroupLayout.DEFAULT_SIZE,
javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(
javax.swing.LayoutStyle.ComponentPlacement.RELATED,
32, Short.MAX_VALUE)
.addGroup(
layout
.createParallelGroup(
javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jButton1)
.addComponent(jButton2))
.addGap(26, 26, 26)));
pack();
}// </editor-fold>
//GEN-END:initComponents
private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
JOptionPane.showMessageDialog(this, "不同意上传");
}
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
JOptionPane.showMessageDialog(this, "同意上传");
}
private void jTextField3ActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
}
private void jTextField2ActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
}
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new Checkuploadsong().setVisible(true);
}
});
}
//GEN-BEGIN:variables
// Variables declaration - do not modify
private javax.swing.JButton jButton1;
private javax.swing.JButton jButton2;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel2;
private javax.swing.JLabel jLabel3;
private javax.swing.JLabel jLabel4;
private javax.swing.JTextField jTextField1;
private javax.swing.JTextField jTextField2;
private javax.swing.JTextField jTextField3;
// End of variables declaration//GEN-END:variables
} | [
"[email protected]"
] | |
1a08a2d59f37bc06b9614db7a6a2d5c1da5f6098 | e868e19c4149d826a9a0d59a883191b1471fad72 | /src/main/java/com/softlink/minilib/client/rpc/SystemServiceAsync.java | 7c13cfa408ec5ab24730f3f71195160c8ddb824f | [] | no_license | TranAn90/Mini-Lib | 32903ec8eca4178b51427e3a50a8ee9edc94abe5 | 2fc52a92a3782b67ea32911300897d4fe9ec3233 | refs/heads/master | 2020-04-17T04:05:11.552172 | 2014-12-29T03:34:28 | 2014-12-29T03:34:28 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,293 | java | package com.softlink.minilib.client.rpc;
import java.util.List;
import com.google.gwt.user.client.rpc.AsyncCallback;
import com.softlink.minilib.shared.Invite_Token;
import com.softlink.minilib.shared.System_Account;
import com.softlink.minilib.shared.System_Organization;
public interface SystemServiceAsync {
void insertOrganization(System_Organization organization, AsyncCallback<System_Organization> callback);
void updateOrganization(System_Organization organization, AsyncCallback<Boolean> callback);
void retrieveOrganization(Long id, AsyncCallback<System_Organization> callback);
void insertAccount(System_Account account, AsyncCallback<Boolean> callback);
// void updateAccount(System_Account account, AsyncCallback<Boolean> callback);
void retrieveAccount(String email, AsyncCallback<System_Account> callback);
void goToOrganization(System_Organization organization, AsyncCallback<Boolean> callback);
void insertInviteToken(String userEmail, System_Organization organization, AsyncCallback<Boolean> callback);
void retrieveInviteTokens(String email, AsyncCallback<List<Invite_Token>> callback);
void inviteTokenAccepted(Invite_Token token, AsyncCallback<System_Organization> callback);
void inviteTokenDenied(Invite_Token token, AsyncCallback<Void> callback);
}
| [
"[email protected]"
] | |
0e7d238c974256bbf43700f3a3ba6ab6ba0ea7bc | db5f0e59688168a594e1e1aa2adbda5dba6ed2d4 | /app/src/main/java/com/example/serverutveckling/labb4/ListOfPeopleActivity.java | 335dcf6362a05c9697406d67ad5ea75bca9910e0 | [] | no_license | juthu/labb4 | 02ae96245451a54c9f4a6392d3654ea37bf623ef | ca3dc3b0cafb5971ca78893560454d50c472b915 | refs/heads/master | 2021-01-10T09:31:50.709187 | 2016-01-19T13:50:06 | 2016-01-19T13:50:06 | 49,822,240 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,235 | java | package com.example.serverutveckling.labb4;
import android.app.Activity;
import android.app.Dialog;
import android.app.ProgressDialog;
import android.content.Intent;
import android.database.DataSetObserver;
import android.os.AsyncTask;
import android.support.v4.app.FragmentActivity;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ListAdapter;
import android.widget.ListView;
import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.params.BasicHttpParams;
import org.apache.http.params.HttpConnectionParams;
import org.apache.http.params.HttpParams;
import org.apache.http.util.EntityUtils;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.lang.reflect.Type;
import java.util.ArrayList;
public class ListOfPeopleActivity extends FragmentActivity {
ListView list_of_people;
public Activity a = this;
String id;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_list_of_people);
list_of_people = (ListView) findViewById(R.id.list_of_people);
Bundle extras = getIntent().getExtras();
id = extras.getString("id");
new WebServiceCall().execute();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_list_of_people, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
public static HttpResponse makeRequest(String uri) {
try {
HttpGet httpGet = new HttpGet(uri);
HttpParams httpParameters = new BasicHttpParams();
int timeoutConnection = 3000;
HttpConnectionParams.setConnectionTimeout(httpParameters, timeoutConnection);
int timeoutSocket = 3000;
HttpConnectionParams.setSoTimeout(httpParameters, timeoutSocket);
httpGet.setParams(httpParameters);
httpGet.setHeader("Accept", "application/json");
httpGet.setHeader("Content-type", "application/json");
return new DefaultHttpClient().execute(httpGet);
} catch (UnsupportedEncodingException e) {
Log.e("ERROR", e.getMessage() + "");
} catch (ClientProtocolException e) {
Log.e("ERROR", e.getMessage() + "");
} catch (IOException e) {
Log.e("ERROR", e.getMessage() + "");
}
return null;
}
private class WebServiceCall extends AsyncTask<ArrayList<String>, String, ArrayList<Login_id>> {
@Override
protected ArrayList<Login_id> doInBackground(ArrayList<String>... params) {
try {
HttpResponse response = makeRequest("http://130.237.84.10:8081/starter/rest/getpeople");
HttpEntity entity = response.getEntity();
String content = null;
content = EntityUtils.toString(entity);
Gson gson1 = new Gson();
ResultGson rg_result = gson1.fromJson(content, ResultGson.class);
Type type = new TypeToken<ArrayList<Login_id>>() {
}.getType();
ArrayList<Login_id> li_arr = gson1.fromJson(rg_result.Json, type);
return li_arr;
} catch (Exception e) {
Log.e("ERROR", e.getMessage() + "");
return null;
}
}
@Override
protected void onPostExecute(ArrayList<Login_id> result) {
try {
ArrayList<User> users = new ArrayList<>();
for (int i = 0; i < result.size(); i++) {
users.add(new User(result.get(i).password, result.get(i).username));
}
ListViewAdapter adapter = new ListViewAdapter(a, users, id);
list_of_people.setAdapter(adapter);
adapter.notifyDataSetChanged();
} catch (Exception e) {
System.out.println(e.getMessage());
}
}
@Override
protected void onPreExecute() {
}
}
public class ResultGson {
public String Json;
}
public class Login_id {
public String username;
public String password;
}
}
| [
"[email protected]"
] | |
94dc1de7767ecdb39d486d2ac6ffde970463b96f | b7cb2545893017f30276e514e45632b70edde6fd | /src/main/java/net/coding/codingftp/controller/DownloadController.java | 2cc3edfc94d3ab72abf1654bc5c2ed08393ebd6d | [] | no_license | chenhorin/downup | 0014e81741403a1ecd63758e6567a996b1d151e7 | 871992496f0320d4b9c34550829295bd7b0143e1 | refs/heads/master | 2020-04-02T05:23:31.831061 | 2018-11-01T08:25:46 | 2018-11-01T08:25:46 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 7,668 | java | package net.coding.codingftp.controller;
import com.google.common.collect.Maps;
import com.google.gson.Gson;
import com.google.gson.reflect.TypeToken;
import lombok.extern.slf4j.Slf4j;
import net.coding.codingftp.DTO.PhoneUserJsonDTO;
import net.coding.codingftp.DTO.PicCountByUserDTO;
import net.coding.codingftp.VO.PhonePicListAndThemeVO;
import net.coding.codingftp.VO.PhoneURLVO;
import net.coding.codingftp.common.ServerResponse;
import net.coding.codingftp.pojo.UserTitleInfo;
import net.coding.codingftp.service.IFileService;
import net.coding.codingftp.util.PropertiesUtil;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.core.io.Resource;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.multipart.MultipartFile;
import sun.misc.IOUtils;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
@RestController
@Slf4j
public class DownloadController {
@Autowired
private IFileService iFileService;
public static String TOMCAT_PATH = null;
@Value("${static.json.file}")
private Resource jsonFile;
private static List<PicCountByUserDTO> picCountByUserDTOS = new ArrayList<>();
@PostMapping("/upload")
// @RequestParam(value = "upload_file",required = false) 对应的是表单提交的name
public ServerResponse upload(HttpSession session, @RequestParam(value = "file", required = false) MultipartFile file,
@RequestParam(value = "UserName") String userName,
@RequestParam(value = "Number") Integer number,
@RequestParam(value = "Type", required = false) Integer type,
HttpServletRequest request) {
if (0 == type) {
return ServerResponse.createBySuccess();
}
String path = request.getSession().getServletContext().getRealPath(userName);
TOMCAT_PATH = path;
// 判断是否已经存在当前用户,根据结果来进行Number的保存
for (PicCountByUserDTO userDTO : picCountByUserDTOS) {
if (StringUtils.equals(userDTO.getName(), userName)) {
userDTO.setNumber(number);
String targetFileName = iFileService.upload(file, path);
String url = PropertiesUtil.getProperty("ftp.server.http.prefix") + userName + "/" + targetFileName;
Map fileMap = Maps.newHashMap();
fileMap.put("uri", targetFileName);
fileMap.put("url", url);
return ServerResponse.createBySuccess(fileMap);
}
}
PicCountByUserDTO userDTO = new PicCountByUserDTO();
userDTO.setName(userName);
userDTO.setNumber(number);
picCountByUserDTOS.add(userDTO);
String targetFileName = iFileService.upload(file, path);
String url = PropertiesUtil.getProperty("ftp.server.http.prefix") + userName + "/" + targetFileName;
Map fileMap = Maps.newHashMap();
fileMap.put("uri", targetFileName);
fileMap.put("url", url);
return ServerResponse.createBySuccess(fileMap);
}
// PC客户端获取照片数量
@GetMapping("/DownPhone")
public Integer getPicNum(HttpSession session, @RequestParam(value = "UserName", required = false) String userName) {
for (PicCountByUserDTO userDTO : picCountByUserDTOS) {
if (StringUtils.equals(userDTO.getName(), userName)) {
return userDTO.getNumber();
}
}
return 0;
}
// 手机获取图片列表
@GetMapping("/DownForPhone")
public ServerResponse getPicList(HttpSession session, @RequestParam(value = "UserName", required = false) String userName,
@RequestParam(value = "Number", defaultValue = "0") Integer number) {
PhonePicListAndThemeVO voData = new PhonePicListAndThemeVO();
List<String> picList = new ArrayList<>();
if (StringUtils.isBlank(userName)) {
picList.add("img/admin/1.png");
picList.add("img/admin/12.png");
picList.add("img/admin/mid.png");
picList.add("img/admin/mid-75.png");
voData.setThemePics(picList);
voData.setTitle("魔幻照相馆");
return ServerResponse.createBySuccess(voData);
}
PhonePicListAndThemeVO tempData = iFileService.getPicList(userName).getData();
if (null != tempData) {
voData = tempData;
}
//组装主题和标题
String json = null;
Gson gson = new Gson();
List<UserTitleInfo> data = new ArrayList<>();
// 读取json配置文件,并且转化为java对象
try {
json = new String(IOUtils.readFully(jsonFile.getInputStream(), -1, true));
PhoneUserJsonDTO phoneUserJsonDTO = gson.fromJson(json,
new TypeToken<PhoneUserJsonDTO>() {
}.getType());
if (null == phoneUserJsonDTO) {
return ServerResponse.createByErrorMessage("配置文件没有添加用户");
}
data = phoneUserJsonDTO.getData();
} catch (IOException e) {
log.info("静态json文件读取错误");
}
if (data.size() == 0) {
return ServerResponse.createByErrorMessage("Json数据转换失败,数据未获取");
} else {
for (UserTitleInfo datum : data) {
if (StringUtils.equals(userName, datum.getUsername())) {
picList.add("img/" + userName + "/1.png");
picList.add("img/" + userName + "/12.png");
picList.add("img/" + userName + "/mid.png");
picList.add("img/" + userName + "/mid-75.png");
voData.setTitle(datum.getTitle());
voData.setThemePics(picList);
return ServerResponse.createBySuccess(voData);
}
}
picList.add("img/admin/1.png");
picList.add("img/admin/12.png");
picList.add("img/admin/mid.png");
picList.add("img/admin/mid-75.png");
voData.setThemePics(picList);
voData.setTitle("魔幻照相馆");
return ServerResponse.createBySuccess(voData);
}
}
// U3D转到手机端
@GetMapping("/Login")
public PhoneURLVO<String> getPicList(HttpSession session, @RequestParam(value = "UserName", required = false) String userName) {
for (PicCountByUserDTO userDTO : picCountByUserDTOS) {
if (StringUtils.equals(userDTO.getName(), userName)) {
PhoneURLVO URL = new PhoneURLVO();
URL.setData(PropertiesUtil.getProperty("phone.http.prefix") + "?u=" + userName);
return URL;
}
}
PhoneURLVO URL = new PhoneURLVO();
URL.setData(PropertiesUtil.getProperty("phone.http.prefix"));
return URL;
}
}
| [
"[email protected]"
] | |
a06ba6235204493afcb234134c343b8b35e74ea2 | e9ff244089c37377d553e5d6df5c16c0549fbd55 | /MyMaven1Project/src/main/java/com/training/step/Steps4B.java | 11db8dcd12ddfd270eae7b4ba79303e447539e08 | [] | no_license | swetha-telukutla/homepage | ec498d88681ccae39b7bd2101e4280dab667e65a | 1ee327d09aded64298c791a0339c68926f00a1dd | refs/heads/master | 2020-05-01T07:23:42.519136 | 2019-03-25T19:42:19 | 2019-03-25T19:42:19 | 177,351,573 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 59 | java | package com.training.step;
public class Steps4B {
}
| [
"[email protected]"
] | |
bfeb889f3d50ec319d7148219a59428ecea71a42 | 089bd286cf2438b7998e9b6792b8f1b6dcc10ad2 | /src/com/code/services/UserService.java | b97da0d9bc733e6983d6c314fa115b104fc3be40 | [] | no_license | mohamed-nageh/Ejada-Temp | 10ceb39b388b0d28812de7ba89dc7eb2f5ee07b2 | 4401b60080057049dbd2ae201c6a245f89ed552b | refs/heads/master | 2021-06-01T07:07:30.432031 | 2016-08-18T10:37:20 | 2016-08-18T10:37:20 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,220 | java | package com.code.services;
import com.code.dal.orm.User;
import com.code.dal.orm.UserRole;
import org.hibernate.Query;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
public class UserService {
public static final String SCHEMA_NAME = "TEST";
public static final String UNIQUE_USERNAME_CONSTRAINT_NAME = SCHEMA_NAME + "." + "SYS_C0046515";
private static UserService singleton = null;
private SessionFactory sessionFactory = null;
private UserService() {
sessionFactory = SessionFactorySingleton.getSingleton().getSessionFactory();
}
public static UserService getSingleton() {
if (singleton == null)
singleton = new UserService();
return singleton;
}
public User getUserById(Long id) {
User user = null;
Session session = sessionFactory.openSession();
session.beginTransaction();
Query query = session.getNamedQuery("User.byId");
query.setLong("id", id);
List list = query.list();
if (list.size() == 1)
user = (User) list.get(0);
session.getTransaction().commit();
session.close();
return user;
}
public User getUserByUsernameAndPassword(String username, String password) {
User user = null;
Session session = sessionFactory.openSession();
session.beginTransaction();
Query query = session.getNamedQuery("User.byUsernameAndPassword");
query.setString("username", username);
query.setString("password", password);
List list = query.list();
if (list.size() == 1)
user = (User) list.get(0);
session.getTransaction().commit();
session.close();
return user;
}
public Collection<User> getAllUsers() {
Collection<User> users = new ArrayList<User>();
Session session = sessionFactory.openSession();
session.beginTransaction();
Query query = session.getNamedQuery("User.all");
List list = query.list();
for (Object o : list)
users.add((User) o);
session.getTransaction().commit();
session.close();
return users;
}
public void saveUser(User user) {
Session session = sessionFactory.openSession();
session.beginTransaction();
session.save(user);
session.getTransaction().commit();
session.close();
}
public void updateUser(User user) {
Session session = sessionFactory.openSession();
session.beginTransaction();
session.update(user);
session.getTransaction().commit();
session.close();
}
public User getUserByUsername(String username) {
return getUserByUsernameAndPassword(username, null);
}
public User authenticateUser(String username, String password) {
return getUserByUsernameAndPassword(username, password);
}
public String getUserRole(Long userId) {
String userRole = null;
Session session = sessionFactory.openSession();
session.beginTransaction();
Query query = session.getNamedQuery("UserRole.byUserId");
query.setLong("userId", userId);
List list = query.list();
if (list.size() > 0) // TODO handle multiple roles
userRole = ((UserRole) list.get(0)).getRoleName();
session.getTransaction().commit();
session.close();
if (userRole == null)
userRole = UserRole.NORMAL;
return userRole;
}
}
| [
"[email protected]"
] | |
535ddccd95f1c10c8cb9b10cfa2b28d1f0409a94 | 1c7c1759264b0e9c9a2215476225dc5c5e697e26 | /src/test/resources/features/glue/unit/JournalStepdefs.java | a18a6a945fcaccdc4fe4689a41f7e3785e7596ae | [] | no_license | joris77/admin-api | cebc3cce3cf9e57dca8d7db91c7bdb210a3af7e1 | d105a0bd77e2ba316de38e5dbc260925958ebe0e | refs/heads/master | 2020-04-06T03:53:00.705961 | 2017-07-04T21:23:17 | 2017-07-04T21:23:17 | 59,432,071 | 0 | 1 | null | 2016-07-13T15:11:49 | 2016-05-22T20:10:13 | Java | UTF-8 | Java | false | false | 1,312 | java | package features.glue.unit;
import java.math.BigDecimal;
import org.springframework.beans.factory.annotation.Autowired;
import cucumber.api.java.en.And;
import nl.smartworkx.admin.FinancialFactTestHelper;
import nl.smartworkx.admin.FinancialFactServiceTestHelper;
import nl.smartworkx.admin.JournalEntryServiceTestHelper;
import features.glue.integration.AbstractIntegrationStepdefs;
import nl.smartworkx.admin.model.Amount;
import nl.smartworkx.admin.model.financialfact.FinancialFact;
/**
* @author Joris Wijlens
* @version 1.0
* @since 1.0
*/
public class JournalStepdefs extends AbstractIntegrationStepdefs {
@Autowired
private FinancialFactServiceTestHelper financialFactServiceTestHelper;
@Autowired
private JournalEntryServiceTestHelper journalEntryServiceTestHelper;
@And("^there is a journal entry for an outgoing invoice with an amount of (\\d+) ex VAT of (\\d+)%$")
public void thereIsAnOutgoingInvoiceWithAnAmountOfExVATOf(BigDecimal amount, int taxRate) throws Throwable {
Amount amountExVat = new Amount(amount, "EUR");
FinancialFact financialFact = financialFactServiceTestHelper.createFinancialFact(FinancialFactTestHelper.create().amount(amountExVat).build());
journalEntryServiceTestHelper
.createOutgoingInvoiceJournalEntry(financialFact.getId(), amountExVat);
}
}
| [
"[email protected]"
] | |
982a9a42550245c9982f6bacd6632196cfc9564d | 0b457fce08eb4cf18fbf5f7e64f38a9ed3f593ff | /jgnash-swing/src/main/java/jgnash/ui/account/AccountPanel.java | c8f3e3feaf9c45dbcc58cfa68fe22bfc95a997b3 | [] | no_license | gitter-badger/jgnash | 60a28cca12f4ea600ac288c50f9a098bceffc6a8 | 135a04b6acd036dc05f4a9e756083b2ba8a78fba | refs/heads/master | 2021-01-18T16:23:26.570670 | 2015-05-27T16:52:18 | 2015-05-27T16:52:18 | 36,392,439 | 0 | 0 | null | 2015-05-27T20:03:03 | 2015-05-27T20:03:03 | null | UTF-8 | Java | false | false | 11,632 | java | /*
* jGnash, a personal finance application
* Copyright (C) 2001-2015 Craig Cavanaugh
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package jgnash.ui.account;
import com.jgoodies.forms.builder.DefaultFormBuilder;
import com.jgoodies.forms.layout.FormLayout;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.Iterator;
import java.util.Set;
import java.util.TreeSet;
import javax.swing.DefaultComboBoxModel;
import javax.swing.JButton;
import javax.swing.JCheckBox;
import javax.swing.JComboBox;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.JTextField;
import jgnash.engine.Account;
import jgnash.engine.AccountType;
import jgnash.engine.CurrencyNode;
import jgnash.engine.SecurityNode;
import jgnash.ui.components.CurrencyComboBox;
import jgnash.ui.components.JIntegerField;
import jgnash.ui.components.JTextFieldEx;
import jgnash.util.Resource;
/**
* Panel for entering / modifying account information.
*
* @author Craig Cavanaugh
*/
final class AccountPanel extends JPanel implements ActionListener {
private final transient Resource rb = Resource.get();
private Account parentAccount;
private Set<SecurityNode> commodityList = new TreeSet<>();
private CurrencyComboBox currencyCombo;
private JTextFieldEx accountNumberField;
JCheckBox placeholderCheckBox;
private JTextFieldEx nameField;
private JCheckBox lockedCheckBox;
private JButton parentButton;
private JTextFieldEx descriptionField;
private JButton securityButton;
private JTextArea notesArea;
private JTextField bankIdField;
private JIntegerField accountCodeField;
private JCheckBox hideCheckBox;
private JCheckBox excludeBudgetCheckBox;
private JComboBox<AccountType> accountTypeCombo;
private DefaultComboBoxModel<AccountType> accountTypeModel;
private Account modifyingAccount;
public AccountPanel() {
layoutMainPanel();
setAccountType(AccountType.BANK);
}
private void initComponents() {
accountNumberField = new JTextFieldEx();
accountCodeField = new JIntegerField();
nameField = new JTextFieldEx();
bankIdField = new JTextFieldEx();
nameField.setText(rb.getString("Word.Name"));
descriptionField = new JTextFieldEx();
descriptionField.setText(rb.getString("Word.Description"));
currencyCombo = new CurrencyComboBox();
securityButton = new JButton(rb.getString("Word.None"));
// for preferred width so button does not force a wide layout
securityButton.setPreferredSize(new Dimension(20, securityButton.getPreferredSize().height));
accountTypeModel = new DefaultComboBoxModel<>(AccountType.values());
accountTypeModel.removeElement(AccountType.ROOT);
accountTypeCombo = new JComboBox<>(accountTypeModel);
lockedCheckBox = new JCheckBox(rb.getString("Button.Locked"));
placeholderCheckBox = new JCheckBox(rb.getString("Button.PlaceHolder"));
hideCheckBox = new JCheckBox(rb.getString("Button.HideAccount"));
excludeBudgetCheckBox = new JCheckBox(rb.getString("Button.ExcludeFromBudget"));
parentButton = new JButton("Root");
notesArea = new javax.swing.JTextArea();
notesArea.setLineWrap(true);
notesArea.setAutoscrolls(false);
notesArea.setPreferredSize(new java.awt.Dimension(100, 80));
accountTypeCombo.addActionListener(this);
securityButton.addActionListener(this);
parentButton.addActionListener(this);
}
private void layoutMainPanel() {
initComponents();
FormLayout layout = new FormLayout("right:max(20dlu;pref), $lcgap, d, $lcgap, d:g", "");
DefaultFormBuilder builder = new DefaultFormBuilder(layout, this);
builder.appendSeparator(rb.getString("Title.AccountInfo"));
builder.rowGroupingEnabled(true);
builder.append(rb.getString("Label.Name"), nameField, 3);
builder.nextLine();
builder.append(rb.getString("Label.Description"), descriptionField, 3);
builder.nextLine();
builder.append(rb.getString("Label.AccountNumber"), accountNumberField, 3);
builder.nextLine();
builder.append(rb.getString("Label.AccountCode"), accountCodeField, 3);
builder.nextLine();
builder.append(rb.getString("Label.BankID"), bankIdField, 3);
builder.nextLine();
builder.append(rb.getString("Label.Currency"), currencyCombo, 3);
builder.nextLine();
builder.append(rb.getString("Label.Securities"), securityButton, 3);
builder.nextLine();
builder.append(rb.getString("Label.AccountType"), accountTypeCombo, 3);
builder.nextLine();
builder.append(rb.getString("Label.AccountOptions"), lockedCheckBox, hideCheckBox);
builder.nextLine();
builder.append("", placeholderCheckBox, excludeBudgetCheckBox);
builder.rowGroupingEnabled(false);
builder.appendSeparator(rb.getString("Title.ParentAccount"));
builder.append(parentButton, 5);
builder.appendSeparator(rb.getString("Title.Notes"));
JScrollPane pane = new JScrollPane(notesArea);
pane.setAutoscrolls(true);
builder.appendRow("f:60dlu:g(1.0)");
builder.append(pane, 5);
}
private void showAccountListDialog() {
AccountListDialog dlg = new AccountListDialog(parentAccount);
dlg.setLocationRelativeTo(this);
dlg.setVisible(true);
if (dlg.getReturnStatus()) {
setParentAccount(dlg.getAccount());
}
}
private void accountAction() {
updateCommodityButton();
}
public void setParentAccount(final Account parentAccount) {
this.parentAccount = parentAccount;
parentButton.setText(parentAccount.getName());
setAccountCurrency(parentAccount.getCurrencyNode());
}
public Account getParentAccount() {
return parentAccount;
}
public String getAccountName() {
return nameField.getText();
}
public void setAccountName(final String name) {
nameField.setText(name);
}
public void setBankId(final String id) {
bankIdField.setText(id);
}
public void setAccountHidden(final boolean hide) {
hideCheckBox.setSelected(hide);
}
public String getAccountNumber() {
return accountNumberField.getText();
}
public void setAccountNumber(final String accountNumber) {
accountNumberField.setText(accountNumber);
}
public int getAccountCode() {
return accountCodeField.intValue();
}
public void setAccountCode(final int accountCode) {
accountCodeField.setIntValue(accountCode);
}
public String getBankId() {
return bankIdField.getText();
}
public void setAccountDescription(final String description) {
descriptionField.setText(description);
}
public String getAccountDescription() {
return descriptionField.getText();
}
public void setAccountCurrency(final CurrencyNode node) {
currencyCombo.setSelectedNode(node);
}
public CurrencyNode getAccountCurrency() {
return currencyCombo.getSelectedNode();
}
void disableAccountCurrency() {
currencyCombo.setEnabled(false);
}
public void setAccountNotes(String notes) {
notesArea.setText(notes);
}
public String getAccountNotes() {
return notesArea.getText();
}
public void setAccountLocked(final boolean locked) {
lockedCheckBox.setSelected(locked);
}
public boolean isAccountLocked() {
return lockedCheckBox.isSelected();
}
public void setPlaceholder(final boolean selected) {
placeholderCheckBox.setSelected(selected);
}
public boolean isPlaceholder() {
return placeholderCheckBox.isSelected();
}
public void setAccountType(final AccountType type) {
accountTypeCombo.setSelectedItem(type);
updateCommodityButton();
}
public void setModifyingAccount(final Account account) {
modifyingAccount = account;
}
public AccountType getAccountType() {
return (AccountType) accountTypeCombo.getSelectedItem();
}
public boolean isAccountHidden() {
return hideCheckBox.isSelected();
}
public void setExcludedFromBudget(final boolean excludeBudget) {
excludeBudgetCheckBox.setSelected(excludeBudget);
}
public boolean isExcludedFromBudget() {
return excludeBudgetCheckBox.isSelected();
}
public void setAccountSecurities(final Set<SecurityNode> list) {
commodityList.clear();
commodityList.addAll(list);
}
public Set<SecurityNode> getAccountSecurities() {
return commodityList;
}
private void showSecuritiesDialog() {
AccountSecuritiesDialog dlg = new AccountSecuritiesDialog(modifyingAccount, commodityList, this);
dlg.setVisible(true);
if (dlg.getReturnValue()) {
commodityList = dlg.getSecuritiesList();
}
updateCommodityText();
}
private void updateCommodityButton() {
AccountType type = getAccountType();
if (type == AccountType.INVEST || type == AccountType.MUTUAL) {
securityButton.setEnabled(true);
updateCommodityText();
} else {
securityButton.setEnabled(false);
}
}
private void updateCommodityText() {
if (!commodityList.isEmpty()) {
StringBuilder buf = new StringBuilder();
Iterator<SecurityNode> it = commodityList.iterator();
SecurityNode node = it.next();
buf.append(node.getSymbol());
while (it.hasNext()) {
buf.append(", ");
node = it.next();
buf.append(node.getSymbol());
}
securityButton.setText(buf.toString());
securityButton.setToolTipText(buf.toString());
} else {
securityButton.setText(rb.getString("Word.None"));
}
}
void disableAccountType(final AccountType type) {
if (type.isMutable()) {
for (AccountType t : AccountType.values()) {
if (!t.isMutable()) {
accountTypeModel.removeElement(t);
}
}
} else {
accountTypeCombo.setSelectedItem(type);
accountTypeCombo.setEnabled(false);
}
}
@Override
public void actionPerformed(final ActionEvent e) {
if (e.getSource() == accountTypeCombo) {
accountAction();
} else if (e.getSource() == securityButton) {
showSecuritiesDialog();
} else if (e.getSource() == parentButton) {
showAccountListDialog();
}
}
} | [
"[email protected]"
] | |
0cae017efba06313d7df2d40d7bee8db7a0bbe9f | aaf90ea388bc911abce34257c6b5f2ab7f1a9533 | /metier/PackageAlgorithme/packageIA/precondition/PreconditionNotEgale.java | b99597bbe3b17144b8199380871001530da5f08a | [] | no_license | Delsus78/AlvaAFaim | 4fbdf448d781196e7231acf6e97ce0942909eff0 | 997db07e02eb3c043933308857b52fdb91c8acdf | refs/heads/main | 2023-02-23T23:28:41.980902 | 2021-01-20T19:42:48 | 2021-01-20T19:42:48 | 331,332,789 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,665 | java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package metier.PackageAlgorithme.packageIA.precondition;
import java.util.Objects;
import metier.PackageAlgorithme.packageIA.Etat;
import metier.PackageAlgorithme.packageIA.parametre.Parametre;
/**
* Précondition non égale d'une règle de l'IA qui hérite de Precondition
* @author UNC
*/
public class PreconditionNotEgale extends Precondition{
/**
* Constructeur d'une condition non égale
* @param parametre paramètre devant être validé
* @param val un entier, la valeur à comparer
*/
public PreconditionNotEgale(Parametre parametre, Integer val) {
super(parametre, val);
}
@Override
public boolean estValide(Etat etat) {
boolean res = false;
if (!etat.getValue(parametre).equals(value)) res = true;
return res;
}
@Override
public int hashCode() {
int hash = 7;
hash = 47 * hash + Objects.hashCode(this.parametre);
hash = 47 * hash + Objects.hashCode(this.value);
return hash;
}
@Override
public boolean equals(Object obj) {
boolean res = true;
if (obj instanceof PreconditionNotEgale) {
PreconditionNotEgale other = (PreconditionNotEgale) obj;
if (!this.parametre.equals(other.parametre)) res = false;
if (!this.value.equals(other.value)) res = false;
} else res = false;
return res;
}
}
| [
"[email protected]"
] | |
7c3cb3c5db24fa8f0e6268bd0b4bf79139883119 | 9a6ea6087367965359d644665b8d244982d1b8b6 | /src/main/java/X/C12920jJ.java | 63438761f4312e3a740f27827262216e2a8c7ba0 | [] | no_license | technocode/com.wa_2.21.2 | a3dd842758ff54f207f1640531374d3da132b1d2 | 3c4b6f3c7bdef7c1523c06d5bd9a90b83acc80f9 | refs/heads/master | 2023-02-12T11:20:28.666116 | 2021-01-14T10:22:21 | 2021-01-14T10:22:21 | 329,578,591 | 2 | 1 | null | null | null | null | UTF-8 | Java | false | false | 4,644 | java | package X;
import android.content.Context;
import android.view.ActionMode;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.View;
import java.lang.ref.WeakReference;
/* renamed from: X.0jJ reason: invalid class name and case insensitive filesystem */
public class C12920jJ extends ActionMode {
public final Context A00;
public final AbstractC06110Rt A01;
public C12920jJ(Context context, AbstractC06110Rt r2) {
this.A00 = context;
this.A01 = r2;
}
public void finish() {
this.A01.A00();
}
public View getCustomView() {
AbstractC06110Rt r1 = this.A01;
if (!(r1 instanceof AnonymousClass1ZM)) {
WeakReference weakReference = ((AnonymousClass0V6) r1).A01;
if (weakReference != null) {
return (View) weakReference.get();
}
return null;
}
WeakReference weakReference2 = ((AnonymousClass1ZM) r1).A04;
if (weakReference2 != null) {
return (View) weakReference2.get();
}
return null;
}
public Menu getMenu() {
AnonymousClass0T8 r1;
Context context = this.A00;
AbstractC06110Rt r12 = this.A01;
if (!(r12 instanceof AnonymousClass1ZM)) {
r1 = ((AnonymousClass0V6) r12).A03;
} else {
r1 = ((AnonymousClass1ZM) r12).A02;
}
return new AnonymousClass1ZY(context, r1);
}
public MenuInflater getMenuInflater() {
AbstractC06110Rt r1 = this.A01;
if (!(r1 instanceof AnonymousClass1ZM)) {
return new C12950jM(((AnonymousClass0V6) r1).A02);
}
return new C12950jM(((AnonymousClass1ZM) r1).A03.getContext());
}
public CharSequence getSubtitle() {
AbstractC06110Rt r1 = this.A01;
if (!(r1 instanceof AnonymousClass1ZM)) {
return ((AnonymousClass0V6) r1).A04.A09.A08;
}
return ((AnonymousClass1ZM) r1).A03.A08;
}
public Object getTag() {
return this.A01.A00;
}
public CharSequence getTitle() {
AbstractC06110Rt r1 = this.A01;
if (!(r1 instanceof AnonymousClass1ZM)) {
return ((AnonymousClass0V6) r1).A04.A09.A09;
}
return ((AnonymousClass1ZM) r1).A03.A09;
}
public boolean getTitleOptionalHint() {
return this.A01.A01;
}
public void invalidate() {
this.A01.A01();
}
public boolean isTitleOptional() {
AbstractC06110Rt r1 = this.A01;
if (r1 instanceof AnonymousClass1ZM) {
return ((AnonymousClass1ZM) r1).A03.A0A;
}
if (!(r1 instanceof AnonymousClass0V6)) {
return false;
}
return ((AnonymousClass0V6) r1).A04.A09.A0A;
}
public void setCustomView(View view) {
this.A01.A02(view);
}
@Override // android.view.ActionMode
public void setSubtitle(int i) {
AbstractC06110Rt r2 = this.A01;
if (!(r2 instanceof AnonymousClass1ZM)) {
AnonymousClass0V6 r22 = (AnonymousClass0V6) r2;
r22.A03(r22.A04.A01.getResources().getString(i));
return;
}
AnonymousClass1ZM r23 = (AnonymousClass1ZM) r2;
r23.A03.setSubtitle(r23.A00.getString(i));
}
@Override // android.view.ActionMode
public void setSubtitle(CharSequence charSequence) {
this.A01.A03(charSequence);
}
public void setTag(Object obj) {
this.A01.A00 = obj;
}
@Override // android.view.ActionMode
public void setTitle(int i) {
AbstractC06110Rt r2 = this.A01;
if (!(r2 instanceof AnonymousClass1ZM)) {
AnonymousClass0V6 r22 = (AnonymousClass0V6) r2;
r22.A04(r22.A04.A01.getResources().getString(i));
return;
}
AnonymousClass1ZM r23 = (AnonymousClass1ZM) r2;
r23.A03.setTitle(r23.A00.getString(i));
}
@Override // android.view.ActionMode
public void setTitle(CharSequence charSequence) {
this.A01.A04(charSequence);
}
public void setTitleOptionalHint(boolean z) {
AbstractC06110Rt r1 = this.A01;
if (r1 instanceof AnonymousClass1ZM) {
AnonymousClass1ZM r12 = (AnonymousClass1ZM) r1;
((AbstractC06110Rt) r12).A01 = z;
r12.A03.setTitleOptional(z);
} else if (!(r1 instanceof AnonymousClass0V6)) {
r1.A01 = z;
} else {
AnonymousClass0V6 r13 = (AnonymousClass0V6) r1;
((AbstractC06110Rt) r13).A01 = z;
r13.A04.A09.setTitleOptional(z);
}
}
}
| [
"[email protected]"
] | |
8dfbfe49aa4eb9f2ab27d264d8f961f9e856b322 | 208ba847cec642cdf7b77cff26bdc4f30a97e795 | /fg/fc/src/main/java/org.wp.fc/util/GravatarUtils.java | 2d9beae719a7a6a0d9910cb6503b8420d77b3c27 | [] | no_license | kageiit/perf-android-large | ec7c291de9cde2f813ed6573f706a8593be7ac88 | 2cbd6e74837a14ae87c1c4d1d62ac3c35df9e6f8 | refs/heads/master | 2021-01-12T14:00:19.468063 | 2016-09-27T13:10:42 | 2016-09-27T13:10:42 | 69,685,305 | 0 | 0 | null | 2016-09-30T16:59:49 | 2016-09-30T16:59:48 | null | UTF-8 | Java | false | false | 3,025 | java | package org.wp.fc.util;
import android.text.TextUtils;
/**
* see https://en.gravatar.com/site/implement/images/
*/
public class GravatarUtils {
// by default tell gravatar to respond to non-existent images with a 404 - this means
// it's up to the caller to catch the 404 and provide a suitable default image
private static final DefaultImage DEFAULT_GRAVATAR = DefaultImage.STATUS_404;
public static enum DefaultImage {
MYSTERY_MAN,
STATUS_404,
IDENTICON,
MONSTER,
WAVATAR,
RETRO,
BLANK;
@Override
public String toString() {
switch (this) {
case MYSTERY_MAN:
return "mm";
case STATUS_404:
return "404";
case IDENTICON:
return "identicon";
case MONSTER:
return "monsterid";
case WAVATAR:
return "wavatar";
case RETRO:
return "retro";
default:
return "blank";
}
}
}
/*
* gravatars often contain the ?s= parameter which determines their size - detect this and
* replace it with a new ?s= parameter which requests the avatar at the exact size needed
*/
public static String fixGravatarUrl(final String imageUrl, int avatarSz) {
return fixGravatarUrl(imageUrl, avatarSz, DEFAULT_GRAVATAR);
}
public static String fixGravatarUrl(final String imageUrl, int avatarSz, DefaultImage defaultImage) {
if (TextUtils.isEmpty(imageUrl)) {
return "";
}
// if this isn't a gravatar image, return as resized photon image url
if (!imageUrl.contains("gravatar.com")) {
return PhotonUtils.getPhotonImageUrl(imageUrl, avatarSz, avatarSz);
}
// remove all other params, then add query string for size and default image
return UrlUtils.removeQuery(imageUrl) + "?s=" + avatarSz + "&d=" + defaultImage.toString();
}
public static String gravatarFromEmail(final String email, int size) {
return gravatarFromEmail(email, size, DEFAULT_GRAVATAR);
}
public static String gravatarFromEmail(final String email, int size, DefaultImage defaultImage) {
return "http://gravatar.com/avatar/"
+ StringUtils.getMd5Hash(StringUtils.notNullStr(email))
+ "?d=" + defaultImage.toString()
+ "&size=" + Integer.toString(size);
}
public static String blavatarFromUrl(final String url, int size) {
return blavatarFromUrl(url, size, DEFAULT_GRAVATAR);
}
public static String blavatarFromUrl(final String url, int size, DefaultImage defaultImage) {
return "http://gravatar.com/blavatar/"
+ StringUtils.getMd5Hash(UrlUtils.getHost(url))
+ "?d=" + defaultImage.toString()
+ "&size=" + Integer.toString(size);
}
}
| [
"[email protected]"
] | |
ae8f7c0416ff76af1936cd16212bbd7328be3b25 | 6da25b97a75534c548c0f08942d7c7440d129d96 | /src/main/java/com/cs/ums/SecurityConfig.java | ef88959369a4d131f435c4b81b4966b6df6d8c3f | [
"MIT"
] | permissive | microservicescloud/user-manage-service | def65b003bc386331e2a04dffb1d5b2cab05bc48 | dd31e539e4b7691656d7931de01ee944baac3351 | refs/heads/main | 2023-02-07T12:16:16.100733 | 2020-12-24T06:43:09 | 2020-12-26T10:24:46 | 324,065,400 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,380 | java | package com.cs.ums;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
import org.springframework.security.core.userdetails.User;
import org.springframework.security.core.userdetails.UserDetailsService;
import org.springframework.security.crypto.factory.PasswordEncoderFactories;
import org.springframework.security.crypto.password.PasswordEncoder;
import org.springframework.security.provisioning.InMemoryUserDetailsManager;
@Configuration
@EnableWebSecurity
public class SecurityConfig extends WebSecurityConfigurerAdapter {
// @Override
// protected void configure(AuthenticationManagerBuilder auth) throws Exception {
// auth.inMemoryAuthentication().withUser("admin").password("{noop}admin").authorities("ADMIN", "USER")
// .and().withUser("user").password("{noop}user").authorities("USER");
// }
@Override
public void configure(HttpSecurity http) throws Exception {
http
.csrf().disable()
.authorizeRequests()
.antMatchers("/Intranet/Bokning").authenticated() // Block this
.antMatchers("/**", "/Intranet**").permitAll() // Allow this for all
.anyRequest().authenticated()
.and().logout().logoutSuccessUrl("/").permitAll()
.and()
.oauth2Login();
}
// @Bean
// public UserDetailsService userDetailsService() {
// PasswordEncoder encoder = PasswordEncoderFactories.createDelegatingPasswordEncoder();
// InMemoryUserDetailsManager manager = new InMemoryUserDetailsManager();
// manager.createUser(User.withUsername("user")
// .password(encoder.encode("user"))
// .roles("USER").build());
// manager.createUser(User.withUsername("admin")
// .password(encoder.encode("admin"))
// .roles("USER", "ADMIN").build());
// return manager;
// }
}
| [
"[email protected]"
] | |
5001d9931eb38a46e2e0aea93a77157da2b3ec85 | 9a6ea6087367965359d644665b8d244982d1b8b6 | /src/main/java/X/AbstractC05020Mv.java | e9e1b7825aed4b37a82bb46b45647190444a5a5f | [] | no_license | technocode/com.wa_2.21.2 | a3dd842758ff54f207f1640531374d3da132b1d2 | 3c4b6f3c7bdef7c1523c06d5bd9a90b83acc80f9 | refs/heads/master | 2023-02-12T11:20:28.666116 | 2021-01-14T10:22:21 | 2021-01-14T10:22:21 | 329,578,591 | 2 | 1 | null | null | null | null | UTF-8 | Java | false | false | 180 | java | package X;
/* renamed from: X.0Mv reason: invalid class name and case insensitive filesystem */
public interface AbstractC05020Mv {
byte[] A39(byte[] bArr, int i, int i2);
}
| [
"[email protected]"
] | |
0ebda44cf9160a1ba198a6d371b08eb35087d5f1 | ae71ea77eb13d0962b863ee68ef0fc33b65ecb75 | /app/src/main/java/com/slb/factory/weight/hellocharts/listener/PieChartOnValueSelectListener.java | ebb8a4493480aad3f7195df22c3db03b36939f6b | [] | no_license | 154336119/factory | 7174ce842c8007d86aaa08403b9f169f6e1d9548 | 2f88ffd52e995f33db5a908aa2e165b8668c3671 | refs/heads/master | 2020-05-26T20:15:16.552551 | 2019-09-24T08:13:52 | 2019-09-24T08:13:52 | 188,358,859 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 266 | java | package com.slb.factory.weight.hellocharts.listener;
import com.slb.factory.weight.hellocharts.model.SliceValue;
public interface PieChartOnValueSelectListener extends OnValueDeselectListener {
public void onValueSelected(int arcIndex, SliceValue value);
}
| [
"[email protected]"
] | |
f95b4d1b389577494d06abfffd281fc556bb5b7a | 0450b3e5b37109f7bc941ea85ac5cc64a8c2ec42 | /src/main/java/vista/NewMain.java | 85ea6894036a364468d8a4926e6e05d2d61887fa | [] | no_license | ftolosa01/taller2 | e049356964caebe473c74ed2aa668b45ce158d74 | 25f19e174b051f5f380408f7b7a01fc6658396d1 | refs/heads/master | 2022-06-29T19:54:21.538586 | 2019-09-27T13:47:41 | 2019-09-27T13:47:41 | 211,325,865 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 459 | java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package vista;
/**
*
* @author frnano
*/
public class NewMain {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
Home home = new Home();
home.setVisible(true);
}
}
| [
"[email protected]"
] | |
1d5b6b29cf92929d91c778d7c2f8a7c7a708af2f | 47dd7721aa666613f1add2e4c5aa48cc62c82bf6 | /yoink-core-bootstrap/src/main/java/org/wallerlab/yoink/pdbml/v42/generated/PdbxNmrChemShiftExperimentType.java | d2873507db350a45ca6c736207f96f2571ae080a | [] | no_license | ChristianOT/yoink | 0edf95485baba749722e47bf15831d28442b50ae | bd2eebfc42f4cc26dbf439965868fa9ffe817180 | refs/heads/master | 2020-05-29T08:40:27.658171 | 2016-12-06T17:10:51 | 2016-12-06T17:10:51 | 69,651,847 | 0 | 0 | null | 2016-09-30T09:07:05 | 2016-09-30T09:07:04 | null | UTF-8 | Java | false | false | 10,527 | java | //
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2016.05.06 at 06:37:17 PM CEST
//
package org.wallerlab.yoink.pdbml.v42.generated;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.*;
import java.math.BigInteger;
import java.util.ArrayList;
import java.util.List;
/**
*
*
* Items in the chem_shift_experiment category provide pointers to the NMR experiments and samples used to collect the data for a set of reported assigned chemical shifts.
*
*
*
* <p>Java class for pdbx_nmr_chem_shift_experimentType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="pdbx_nmr_chem_shift_experimentType">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="pdbx_nmr_chem_shift_experiment" maxOccurs="unbounded" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="experiment_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="sample_state" minOccurs="0">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="isotropic"/>
* <enumeration value="anisotropic"/>
* </restriction>
* </simpleType>
* </element>
* <element name="solution_id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
* </all>
* <attribute name="assigned_chem_shift_list_id" use="required" type="{http://www.w3.org/2001/XMLSchema}integer" />
* <attribute name="entry_id" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="experiment_id" use="required" type="{http://www.w3.org/2001/XMLSchema}integer" />
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "pdbx_nmr_chem_shift_experimentType", propOrder = {
"pdbxNmrChemShiftExperiment"
})
public class PdbxNmrChemShiftExperimentType {
@XmlElement(name = "pdbx_nmr_chem_shift_experiment")
protected List<PdbxNmrChemShiftExperimentType.PdbxNmrChemShiftExperiment> pdbxNmrChemShiftExperiment;
/**
* Gets the value of the pdbxNmrChemShiftExperiment property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a <CODE>set</CODE> method for the pdbxNmrChemShiftExperiment property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getPdbxNmrChemShiftExperiment().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link PdbxNmrChemShiftExperimentType.PdbxNmrChemShiftExperiment }
*
*
*/
public List<PdbxNmrChemShiftExperimentType.PdbxNmrChemShiftExperiment> getPdbxNmrChemShiftExperiment() {
if (pdbxNmrChemShiftExperiment == null) {
pdbxNmrChemShiftExperiment = new ArrayList<PdbxNmrChemShiftExperimentType.PdbxNmrChemShiftExperiment>();
}
return this.pdbxNmrChemShiftExperiment;
}
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="experiment_name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="sample_state" minOccurs="0">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="isotropic"/>
* <enumeration value="anisotropic"/>
* </restriction>
* </simpleType>
* </element>
* <element name="solution_id" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
* </all>
* <attribute name="assigned_chem_shift_list_id" use="required" type="{http://www.w3.org/2001/XMLSchema}integer" />
* <attribute name="entry_id" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="experiment_id" use="required" type="{http://www.w3.org/2001/XMLSchema}integer" />
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
})
public static class PdbxNmrChemShiftExperiment {
@XmlElementRef(name = "experiment_name", namespace = "http://pdbml.pdb.org/schema/pdbx-v42.xsd", type = JAXBElement.class, required = false)
protected JAXBElement<String> experimentName;
@XmlElementRef(name = "sample_state", namespace = "http://pdbml.pdb.org/schema/pdbx-v42.xsd", type = JAXBElement.class, required = false)
protected JAXBElement<String> sampleState;
@XmlElementRef(name = "solution_id", namespace = "http://pdbml.pdb.org/schema/pdbx-v42.xsd", type = JAXBElement.class, required = false)
protected JAXBElement<BigInteger> solutionId;
@XmlAttribute(name = "assigned_chem_shift_list_id", required = true)
protected BigInteger assignedChemShiftListId;
@XmlAttribute(name = "entry_id", required = true)
protected String entryId;
@XmlAttribute(name = "experiment_id", required = true)
protected BigInteger experimentId;
/**
* Gets the value of the experimentName property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getExperimentName() {
return experimentName;
}
/**
* Sets the value of the experimentName property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setExperimentName(JAXBElement<String> value) {
this.experimentName = value;
}
/**
* Gets the value of the sampleState property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public JAXBElement<String> getSampleState() {
return sampleState;
}
/**
* Sets the value of the sampleState property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link String }{@code >}
*
*/
public void setSampleState(JAXBElement<String> value) {
this.sampleState = value;
}
/**
* Gets the value of the solutionId property.
*
* @return
* possible object is
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
*
*/
public JAXBElement<BigInteger> getSolutionId() {
return solutionId;
}
/**
* Sets the value of the solutionId property.
*
* @param value
* allowed object is
* {@link JAXBElement }{@code <}{@link BigInteger }{@code >}
*
*/
public void setSolutionId(JAXBElement<BigInteger> value) {
this.solutionId = value;
}
/**
* Gets the value of the assignedChemShiftListId property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getAssignedChemShiftListId() {
return assignedChemShiftListId;
}
/**
* Sets the value of the assignedChemShiftListId property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setAssignedChemShiftListId(BigInteger value) {
this.assignedChemShiftListId = value;
}
/**
* Gets the value of the entryId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEntryId() {
return entryId;
}
/**
* Sets the value of the entryId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEntryId(String value) {
this.entryId = value;
}
/**
* Gets the value of the experimentId property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getExperimentId() {
return experimentId;
}
/**
* Sets the value of the experimentId property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setExperimentId(BigInteger value) {
this.experimentId = value;
}
}
}
| [
"[email protected]"
] | |
3daadf1e6a12ca401d0092d78eb5f78c5178df0e | adc551b6fa2267532b1732b8d9738e8d99cb3ca9 | /app/src/main/java/com/example/bouchef/tubolsillo/LocationActivityAmigable.java | a09a94fd2446644d399fd95dadc0a9fadc84eab9 | [] | no_license | bouchef/TuBolsilloApp | 7fe6cf487ae2943e2a97816e8618f40b285c2489 | 8a47b262d9c002813a3a5f9d3eb6a8327510ed25 | refs/heads/master | 2020-08-04T02:26:16.739047 | 2019-09-30T23:17:47 | 2019-09-30T23:17:47 | 211,970,583 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,951 | java | package com.example.bouchef.tubolsillo;
import android.graphics.Point;
import android.os.Bundle;
import android.widget.ImageView;
import androidx.appcompat.app.AppCompatActivity;
import com.bumptech.glide.Glide;
import com.bumptech.glide.request.RequestOptions;
import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.MapFragment;
import com.google.android.gms.maps.OnMapReadyCallback;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.LatLngBounds;
/**
* Created by World of UI/UX on 01/04/2019.
*/
public class LocationActivityAmigable extends AppCompatActivity implements OnMapReadyCallback {
private GoogleMap mMap;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_location_amigable);
// Google map code is here.
ImageView imgProfile=(ImageView)findViewById(R.id.imgprofile);
Glide.with(this)
.load(R.drawable.restaurant)
.apply(RequestOptions.circleCropTransform())
.into(imgProfile);
MapFragment mapFragment = (MapFragment) getFragmentManager()
.findFragmentById(R.id.map2);
mapFragment.getMapAsync((OnMapReadyCallback) this);
}
@Override
public void onMapReady(GoogleMap googleMap) {
mMap = googleMap;
LatLng origin = new LatLng(-0.1550, 51.5207);
LatLng destination = new LatLng(-0.1550, 51.5207);
LatLngBounds bounds = new LatLngBounds.Builder()
.include(origin)
.include(destination).build();
Point displaySize = new Point();
getWindowManager().getDefaultDisplay().getSize(displaySize);
mMap.moveCamera(CameraUpdateFactory.newLatLngBounds(bounds, displaySize.x, 250, 30));
}
}
| [
"[email protected]"
] | |
da803260275d7948c2b6e08d537f905547883c8f | 235e5efd8e22ebc25ced3d1328e9117f107ce549 | /src/test/java/sis/studentinfo/CourseTest.java | 1941a7b78e466e60b629acb5647eab68ca510420 | [] | no_license | biglong/AgileJava | 35eefc0115e4911e2f94b5bfcbe04b139d0938df | d06dd06129dfdec89ee2e30fd9a5785c0170c61b | refs/heads/master | 2020-05-27T05:06:38.404619 | 2014-12-26T10:08:15 | 2014-12-26T10:08:15 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 291 | java | package sis.studentinfo;
import junit.framework.TestCase;
public class CourseTest extends TestCase {
public void testCreate(){
Course course = new Course("CMSC","120");
assertEquals("CMSC",course.getDepartment());
assertEquals("120",course.getNumber());
}
} | [
"[email protected]"
] | |
a6041878abbebee083d89db6b5a5555771e813a8 | c49369238323ac21f10665c45067f46d86368cff | /src/main/java/com/askrindo/repository/SequenceIdReleaseRepository.java | ad0302f08593e6ee852363877b10e4cc588a4bf9 | [] | no_license | pratamaV/monitoring_project_BE | 8f8981ade18b3e166d9e766aec72a5646f7a9668 | f97c02077b52a09f8c07a79aa475bb92deaaf9ab | refs/heads/master | 2023-05-07T08:35:46.756221 | 2021-03-14T13:44:33 | 2021-03-14T13:44:33 | 343,460,248 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 312 | java | package com.askrindo.repository;
import com.askrindo.entity.sequence.SequenceIdRelease;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface SequenceIdReleaseRepository extends JpaRepository<SequenceIdRelease, String> {
}
| [
"[email protected]"
] | |
374139f2be6024ff40f01d37008e0b3333a23d8b | 9a9fcafa9bbc28c9f1930e01c46af8f023955aea | /JavaEE就业班面向对象IO阶段/day12/code/day12/src/cn/itcast04/print/PrintDemo.java | 3f3b4bdbbff44c86339643c89298b4a52a64b6c5 | [] | no_license | zhengbingyanbj/JavaSE | 84cd450ef5525050809c78a8b6660b9495c072db | 671ac02dcafe81d425c3c191c313b6040e8ae557 | refs/heads/master | 2021-09-01T18:20:49.082475 | 2017-12-28T07:13:30 | 2017-12-28T07:13:30 | 115,139,599 | 0 | 0 | null | null | null | null | GB18030 | Java | false | false | 875 | java | package cn.itcast04.print;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.PrintWriter;
/*
*
* PrintStream 字节打印流
* System.out 是一个通道 从程序 通向 控制台的 一个通道
* PrintWriter 字符打印流 也是一个字符输出流
*
* print() 直接输出 println()输出后换行
*
* write() 输出
*
* print println可以写任何类型
* write写的范围小
*
*
*/
public class PrintDemo {
public static void main(String[] args) throws IOException {
// System.out.println();
//创建字符输出流对象
PrintWriter pw = new PrintWriter("nba.txt");//通向哪里 数据就到哪里
//写数据
pw.write("凯文杜软特");
pw.println(new Object());
pw.print(true);
//释放资源
pw.close();
}
}
| [
"[email protected]"
] | |
37fcb12d81b8463a02b4999fc29111838f5d94c4 | e7d8749047683227ae5253e43b4681dc18c91c80 | /agent-module/agent-backend/src/main/java/com/megatravel/agentbackend/ws/CategorySoap.java | eca66d2bed2feee783524d1af165504de2b96348 | [] | no_license | ZeljkovicIgor/mega-travel | 46bae902915f623bd30df57239b62631f75c42b9 | 5fd484f187bd00df7726852f7f6485aebdefeee0 | refs/heads/master | 2022-01-22T06:23:50.991152 | 2019-06-30T08:29:28 | 2019-06-30T08:29:28 | 194,932,026 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,962 | java |
package com.megatravel.agentbackend.ws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for categorySoap complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="categorySoap">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="category_id" type="{http://www.w3.org/2001/XMLSchema}long"/>
* <element name="category_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "categorySoap", propOrder = {
"categoryId",
"categoryName"
})
public class CategorySoap {
@XmlElement(name = "category_id")
protected long categoryId;
@XmlElement(name = "category_name", required = true)
protected String categoryName;
/**
* Gets the value of the categoryId property.
*
*/
public long getCategoryId() {
return categoryId;
}
/**
* Sets the value of the categoryId property.
*
*/
public void setCategoryId(long value) {
this.categoryId = value;
}
/**
* Gets the value of the categoryName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCategoryName() {
return categoryName;
}
/**
* Sets the value of the categoryName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCategoryName(String value) {
this.categoryName = value;
}
}
| [
"[email protected]"
] | |
d9b1f581e90e0c351f19557f22478994f9b703dd | b28a4af5ed9ac0763aef533a486463b2c713080d | /app/src/main/java/com/sujian/lines/ui/gank/welfare/WelfarePresenter.java | 28983ac2ba3bcc8a62fe92a9d8a50676de04f2f4 | [
"Apache-2.0"
] | permissive | sujianqingfeng/Lines | 7cd88cbcd15217255616345aacde3c56c90d6bf6 | 52fd900b8ae3fc9288624dd0c8ef9998620c0f63 | refs/heads/master | 2020-09-24T21:06:49.805938 | 2016-09-29T14:37:25 | 2016-09-29T14:37:25 | 67,345,083 | 1 | 2 | null | null | null | null | UTF-8 | Java | false | false | 1,511 | java | package com.sujian.lines.ui.gank.welfare;
import com.sujian.lines.data.entity.GankItemBean;
import java.util.List;
import rx.Subscriber;
/**
* Created by sujian on 2016/9/13.
* Mail:[email protected]
*/
public class WelfarePresenter extends WelfareContract.Presenter {
public static final int NUM_OF_PAGE = 20;
private int currentPage = 1;
@Override
void getGirlData() {
currentPage = 1;
mRxManager.add(mModel.getGirlList(NUM_OF_PAGE,currentPage)
.subscribe(new Subscriber<List<GankItemBean>>() {
@Override
public void onCompleted() {
}
@Override
public void onError(Throwable e) {
}
@Override
public void onNext(List<GankItemBean> list) {
mView.showGirl(list);
}
})
);
}
@Override
void getMoreGirlData() {
mRxManager.add(mModel.getGirlList(NUM_OF_PAGE,++currentPage)
.subscribe(new Subscriber<List<GankItemBean>>() {
@Override
public void onCompleted() {
}
@Override
public void onError(Throwable e) {
}
@Override
public void onNext(List<GankItemBean> list) {
mView.showGirl(list);
}
})
);
}
@Override
public void onStart() {
}
}
| [
"[email protected]"
] | |
d46bbf8c890c9f2ed52582f4ce2bf7e33a6cee43 | c073013a79715f53ebf862c5b0a61d64303fe6b3 | /src/com/duobility/hackathons/xkcd/data/photoview/scrollerproxy/ScrollerProxy.java | f7cb3d35a48143ffdfa80abdd0762bef151d7db3 | [] | no_license | vaginessa/xkcd | c2753b75b7e9fc56406cecec4d5cc2b3b5c1644e | e18264b0646ec5bfe04686c3a7e6912846d75b3b | refs/heads/master | 2021-01-23T10:48:38.501074 | 2014-05-31T17:47:47 | 2014-05-31T17:47:47 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,751 | java | /*******************************************************************************
* Copyright 2011, 2012 Chris Banes.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*******************************************************************************/
package com.duobility.hackathons.xkcd.data.photoview.scrollerproxy;
import android.content.Context;
import android.os.Build.VERSION;
import android.os.Build.VERSION_CODES;
public abstract class ScrollerProxy {
public static ScrollerProxy getScroller(Context context) {
if (VERSION.SDK_INT < VERSION_CODES.GINGERBREAD) {
return new PreGingerScroller(context);
} else if (VERSION.SDK_INT < VERSION_CODES.ICE_CREAM_SANDWICH) {
return new GingerScroller(context);
} else {
return new IcsScroller(context);
}
}
public abstract boolean computeScrollOffset();
public abstract void fling(int startX, int startY, int velocityX, int velocityY, int minX, int maxX, int minY,
int maxY, int overX, int overY);
public abstract void forceFinished(boolean finished);
public abstract boolean isFinished();
public abstract int getCurrX();
public abstract int getCurrY();
}
| [
"[email protected]"
] | |
a224e7233230de68e5053f75a8cd08d893ed5742 | 5d5c2688698a2d6689c1d635724b550b31224c86 | /extlib/lwp/product/runtime/eclipse/plugins/com.ibm.xsp.extlib.controls/src/com/ibm/xsp/extlib/component/dojo/form/UIDojoRangeBoundTextBox.java | e26e034ba68486a287e4a92d0fe7fd3160a92d6f | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0",
"BSD-3-Clause",
"LicenseRef-scancode-generic-cla",
"LicenseRef-scancode-other-permissive",
"MIT",
"CDDL-1.1",
"LicenseRef-scancode-public-domain"
] | permissive | OpenNTF/XPagesExtensionLibrary | 6bffba4bd5eab5b148a3b4d700da244aab053743 | 25b3b1df7fafb7ceb131e07ade93de5c9ff733d5 | refs/heads/master | 2020-04-15T16:12:15.910509 | 2020-03-11T11:49:17 | 2020-03-11T11:49:17 | 26,643,618 | 21 | 35 | Apache-2.0 | 2019-03-25T12:55:44 | 2014-11-14T15:08:35 | Java | WINDOWS-1252 | Java | false | false | 1,719 | java | /*
* © Copyright IBM Corp. 2010
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
* implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package com.ibm.xsp.extlib.component.dojo.form;
import javax.faces.context.FacesContext;
import javax.faces.el.ValueBinding;
public class UIDojoRangeBoundTextBox extends UIDojoMappedTextBox {
// RangeBoundTextBox
private String rangeMessage;
public UIDojoRangeBoundTextBox() {
}
public String getRangeMessage() {
if (null != this.rangeMessage) {
return this.rangeMessage;
}
ValueBinding _vb = getValueBinding("rangeMessage"); //$NON-NLS-1$
if (_vb != null) {
return (java.lang.String) _vb.getValue(FacesContext.getCurrentInstance());
} else {
return null;
}
}
public void setRangeMessage(String rangeMessage) {
this.rangeMessage = rangeMessage;
}
// State management
@Override
public void restoreState(FacesContext _context, Object _state) {
Object _values[] = (Object[]) _state;
super.restoreState(_context, _values[0]);
this.rangeMessage = (String)_values[1];
}
@Override
public Object saveState(FacesContext _context) {
Object _values[] = new Object[2];
_values[0] = super.saveState(_context);
_values[1] = rangeMessage;
return _values;
}
}
| [
"[email protected]"
] | |
79c1b30b9c2020a661b0e89a2861c55674f36c5a | ca86012525c81eaf3bbdc7c5b1bb26076f771419 | /UserService/src/test/java/com/springbook/biz/user/UserServiceClient.java | 1f784411477037e2707a61e58b2e6a48be7a8ccf | [] | no_license | Knightofcydonia51/SpringQuickStart | 5846b69fef3f6e738ae61818e4ee3c07d62ee717 | b3729cd3ee311ff4c9f8b4b6fe572aab1b1b1237 | refs/heads/master | 2022-12-31T09:54:14.837218 | 2020-10-20T08:56:39 | 2020-10-20T08:56:39 | 297,505,365 | 0 | 0 | null | null | null | null | UHC | Java | false | false | 969 | java | package com.springbook.biz.user;
import org.springframework.context.support.AbstractApplicationContext;
import org.springframework.context.support.GenericXmlApplicationContext;
public class UserServiceClient {
public static void main(String[] args) {
// 1. Spring 컨테이너 구동
AbstractApplicationContext container =
new GenericXmlApplicationContext("applicationContext.xml");
// 2. Spring 컨테이너로부터 UserServiceImpl 객체를 Lookup
UserService userService =
(UserService) container.getBean("userService");
// 3. 로그인 기능 테스트
UserVO vo = new UserVO();
vo.setId("test");
vo.setPassword("test123");
vo.setName("관리자");
vo.setRole("관리자");
UserVO user = userService.getUser(vo);
System.out.println(user);
if (user != null) {
System.out.println(user.getName() + "님 환영합니다.");
} else {
System.out.println("로그인 실패");
}
container.close();
}
}
| [
"[email protected]"
] | |
b0cc7df458875c0224e02824ca41ed5f208f66a4 | 928cac8c43150e8740234d135e6c2663a816222e | /android/MobildCloudChattingApp/app/src/test/java/kr/ac/kookmin/embedded/mobilecloudchattingapp/AdderTest.java | c1733d8b20b0bb76d02608576765c9c2038f81c2 | [] | no_license | eyeballss/161KMUMobileCloudClass | 4af89e590062596dc4a011d997de6b920eaba0a5 | 2d52a2b5a7c04c7c312e56c38443efca378b90d8 | refs/heads/master | 2021-01-22T02:04:34.429644 | 2016-06-16T10:39:03 | 2016-06-16T10:39:03 | 53,376,829 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 1,268 | java | package kr.ac.kookmin.embedded.mobilecloudchattingapp;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mock;
import org.mockito.MockitoAnnotations;
import org.mockito.runners.MockitoJUnitRunner;
import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.mockito.Matchers.anyInt;
import static org.mockito.Mockito.when;
/**
* Created by kesl on 2016-05-30.
*/
@RunWith(MockitoJUnitRunner.class)
public class AdderTest {
@Mock
private Adder adder;
@Before //Test 시작 전에 수행해야 할 것을 구현한 Method
public void setUp() throws Exception {
MockitoAnnotations.initMocks(adder);
}
@After //Test 후에 수행해야 할 것을 구현한 Method
public void tearDown() throws Exception {
}
@Test //@Test는 실제 Test를 구현한 Test Method
public void testAdd() throws Exception {
when(adder.add(anyInt(), anyInt())).thenCallRealMethod();
assertThat(adder.add(1, 2), is(3));
}
@Test
public void testMultiply() throws Exception {
when(adder.multiply(2, 3)).thenReturn(6);
assertThat(adder.multiply(2, 3), is(6));
}
} | [
"[email protected]"
] | |
cc4c690b8ba0bf9a9304789a034c39d1a903fefb | 78d085b4c2fd822af3d22c46998d8b296762b106 | /app/src/androidTest/java/appone/bmp/com/cmysql/ExampleInstrumentedTest.java | 175d9e77c604a5d5df6e7a19c3807de38abf8384 | [] | no_license | soulith/CMYS | 88bea4ca00a9fecb97740d2585d29dc33db69c92 | 887350509b6273b232e6d979ae0f28f2b2fc6745 | refs/heads/master | 2020-03-29T15:17:00.581923 | 2018-09-21T04:33:22 | 2018-09-21T04:33:22 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 726 | java | package appone.bmp.com.cmysql;
import android.content.Context;
import android.support.test.InstrumentationRegistry;
import android.support.test.runner.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.junit.Assert.*;
/**
* Instrumented test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getTargetContext();
assertEquals("appone.bmp.com.cmysql", appContext.getPackageName());
}
}
| [
"[email protected]"
] | |
627534358e03a4ee3ea752c8ef6688c4e5daf23e | 1f3c4c5c377dbc8ce1bfdd91b205f757138538d9 | /src/prueba/Summation.java | b325a396af5138b66a4b405df3bc9999d8fcb8c0 | [] | no_license | LeonardoHOjeda/MetodosNumericos | bc8ff37732827eb0ca2b17379070954d0e0c7ecf | 25b29868e8f9c148ea2419bd2c40a21d81b2c391 | refs/heads/master | 2020-05-14T12:01:28.746695 | 2019-06-12T02:36:14 | 2019-06-12T02:36:14 | 181,787,382 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,845 | java | package prueba;
import java.util.List;
public class Summation {
private List<XYPoint> listXY;
private float xSum = 0;
private float ySum = 0;
private float xySum = 0;
private float squareXSum = 0;
private float Ym = 0;
private float Xm = 0;
private float STSum = 0;
private float SRSum = 0;
public Summation(List<XYPoint> listXY) {
this.listXY = listXY;
for(XYPoint xyPoint : listXY) {
xSum += xyPoint.getX();
ySum += xyPoint.getY();
xySum += (xyPoint.getX() * xyPoint.getY());
squareXSum += Math.pow(xyPoint.getX(), 2);
}
Xm = xSum / listXY.size();
Ym = ySum / listXY.size();
}
public float getXSum(){
return xSum;
}
public float getYSum(){
return ySum;
}
public float getXYSum() {
return xySum;
}
public float getSquareXSum() {
return squareXSum;
}
public float getYm() {
return Ym;
}
public float getXm() {
return Xm;
}
public float getSTSum() {
return STSum;
}
public float getSRSum() {
return SRSum;
}
public float getA1(){
int n = listXY.size();
return (n * xySum - xSum * ySum) / (n * squareXSum - (float)Math.pow(xSum, 2));
}
public float getA0(){
return Ym - getA1() * Xm;
}
public float getR(){
return (float)Math.sqrt((STSum - SRSum) / STSum);
}
public void setSTSum(){
STSum = 0;
for(XYPoint xyPoint : listXY)
STSum += xyPoint.getFloatST();
}
public void setSRSum(){
SRSum = 0;
for(XYPoint xyPoint : listXY)
SRSum += xyPoint.getFloatSR();
}
} | [
"[email protected]"
] | |
7ad783ca44da0a7b920599a4b4a95fc5b47bad4a | 71d44620231292f3d86fb3289d08768d7bc8d5e1 | /tb-service-user/src/main/java/cn/gg3083/tb/mapper/MenuMapper.java | 04fdce6a3390b9edb28f276cb1abf6a33d2d6ed3 | [] | no_license | gg3083/TB | 0775302117059ca397a7091a4131345bb3eca16f | fdff3c09fc06e39aa589a73d12ea19a6fb956966 | refs/heads/master | 2020-03-23T07:50:41.453890 | 2018-09-15T09:49:27 | 2018-09-15T09:49:27 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 165 | java | package cn.gg3083.tb.mapper;
import cn.gg3083.tb.domain.Menu;
import tk.mybatis.mapper.common.BaseMapper;
public interface MenuMapper extends BaseMapper<Menu> {
} | [
"[email protected]"
] | |
fa3dd28c34674819d0122a1ce3a20f1983887179 | b8f421e141860d21a1fd9568e81730ca815f0c65 | /graph-api/src/main/java/atharvai/GraphService.java | 84e8344fa0171fa5a9cd8275c38f83d085b98cb3 | [] | no_license | atharvai/data-ontology | ae4d3f9d519c64b8a787c01c6ed8dd8a9869b216 | ec272c00a78e582f03ffbee4373be667786cf19c | refs/heads/master | 2021-01-18T23:40:50.048352 | 2016-05-08T10:43:05 | 2016-05-08T10:43:05 | 53,977,678 | 1 | 0 | null | 2016-05-21T21:00:30 | 2016-03-15T20:51:46 | Java | UTF-8 | Java | false | false | 762 | java | package atharvai;
import atharvai.webresources.BaseResource;
import com.fasterxml.jackson.core.JsonProcessingException;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
@Path("/graph")
@Produces(MediaType.APPLICATION_JSON)
public class GraphService extends BaseResource {
@GET
@Path("/info")
public Response getGraph() throws JsonProcessingException, org.apache.tinkerpop.shaded.jackson.core.JsonProcessingException {
return Response.ok(graph.variables().asMap()).build();
}
@GET
@Path("/save")
public Response saveGraph() {
Boolean b = gi.saveGraph();
return Response.accepted().entity(b).build();
}
}
| [
"[email protected]"
] | |
12056c83fe8e9b2d17f39e90e76376d49fa606a0 | be2cb98b7faca3f01aaf16a2858a00f47c757987 | /lib/glm_modified to serialaze/src/main/java/glm/vec/_3/Vec3.java | 327224745d6ca3643d0d14a911a0b1b51ed42a8e | [
"MIT"
] | permissive | ibfernandes/narvaljava2d | c9781fb56e1529e3eafca30704b214ebcc6f0015 | 99c83211ecfd5793c96e6c2f203670fdabeba5a2 | refs/heads/master | 2020-12-10T02:56:13.504195 | 2020-01-13T01:38:30 | 2020-01-13T01:38:30 | 233,486,033 | 0 | 0 | MIT | 2020-10-13T18:48:23 | 2020-01-13T01:22:08 | Java | UTF-8 | Java | false | false | 4,041 | java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package glm.vec._3;
import glm.vec._4.Vec4;
import glm.Glm;
import java.io.PrintStream;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.nio.FloatBuffer;
/**
*
* @author GBarbieri
*/
public class Vec3 extends funcRelational {
public Vec3() {
x = 0f;
y = 0f;
z = 0f;
}
public Vec3(Vec3 v) {
x = v.x;
y = v.y;
z = v.z;
}
public Vec3(Vec4 v) {
x = v.x;
y = v.y;
z = v.z;
}
public Vec3(float f) {
x = f;
y = f;
z = f;
}
public Vec3(float x, float y, float z) {
this.x = x;
this.y = y;
this.z = z;
}
public Vec3(float[] fa) {
this(fa, 0);
}
public Vec3(float[] fa, int i) {
x = fa[i + 0];
y = fa[i + 1];
z = fa[i + 2];
}
public Vec3(double x, double y, double z) {
this.x = (float) x;
this.y = (float) y;
this.z = (float) z;
}
public Vec3 set(Vec3 v) {
return set(v.x, v.y, v.z);
}
public Vec3 set(float f) {
x = f;
y = f;
z = f;
return this;
}
public Vec3 set(double x, double y, double z) {
return set((float) x, (float) y, (float) z);
}
public Vec3 set(float x, float y, float z) {
this.x = x;
this.y = y;
this.z = z;
return this;
}
public Vec3 set(float[] fa) {
x = fa[0];
y = fa[1];
z = fa[2];
return this;
}
public static Vec3 linearRand_(Vec3 min, Vec3 max) {
return linearRand(min, max, new Vec3());
}
public static Vec3 linearRand(Vec3 min, Vec3 max, Vec3 res) {
res.x = (float) Glm.linearRand(min.x, max.x);
res.y = (float) Glm.linearRand(min.y, max.y);
res.z = (float) Glm.linearRand(min.z, max.z);
return res;
}
public Vec3 negate() {
return negate(this);
}
public Vec3 negate_() {
return negate(new Vec3());
}
public Vec3 negate(Vec3 res) {
res.x = -x;
res.y = -y;
res.z = -z;
return res;
}
public float length() {
return (float) Math.sqrt(x * x + y * y + z * z);
}
public Vec4 toVec4_() {
return toVec4(new Vec4());
}
public Vec4 toVec4(Vec4 res) {
return res.set(x, y, z, 1.0f);
}
public float[] toFa_() {
return toFa(new float[3]);
}
public float[] toFa(float[] fa) {
fa[0] = x;
fa[1] = y;
fa[2] = z;
return fa;
}
public FloatBuffer toDfb_() {
return toDfb(ByteBuffer.allocateDirect(SIZE).order(ByteOrder.nativeOrder()).asFloatBuffer());
}
public FloatBuffer toDfb(FloatBuffer fb) {
return toDfb(fb, 0);
}
public FloatBuffer toDfb(FloatBuffer fb, int index) {
return fb
.put(index + 0, x)
.put(index + 1, y)
.put(index + 2, z);
}
public ByteBuffer toDbb_() {
return toDbb(ByteBuffer.allocateDirect(SIZE).order(ByteOrder.nativeOrder()));
}
public ByteBuffer toDbb(ByteBuffer bb) {
return toDbb(bb, 0);
}
public ByteBuffer toDbb(ByteBuffer bb, int index) {
return bb
.putFloat(index + 0 * Float.BYTES, x)
.putFloat(index + 1 * Float.BYTES, y)
.putFloat(index + 2 * Float.BYTES, z);
}
@Override
public String toString() {
return "(" + x + ", " + y + ", " + z + ")";
}
public void print() {
print("", System.out);
}
public void print(String title) {
print(title, System.out);
}
public void print(String title, PrintStream printStream) {
printStream.println(title + "\n(" + x + ", " + y + ", " + z + ")");
}
}
| [
"[email protected]"
] | |
48ef1cb0aca68d19f2621bd9703e2496c36ff782 | c5661e22b4903626d77417ad15068be5c2ddd50f | /core-lang/src/main/java/bingo/lang/resource/Resource.java | 866590a4a2cf2e5cdf9816de7078827cb8393c51 | [
"Apache-2.0"
] | permissive | bingo-open-source/bingo-core | 01e70ce12f90ca5fd933903f94e22ba20b17ca69 | 3eb5512e905a7e158a5f51d9c62e9831d734da7b | refs/heads/master | 2020-04-08T08:33:42.282004 | 2013-09-06T06:30:53 | 2013-09-06T06:30:53 | 4,103,949 | 0 | 3 | null | null | null | null | UTF-8 | Java | false | false | 4,555 | java | /*
* Copyright 2002-2012 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package bingo.lang.resource;
import java.io.File;
import java.io.IOException;
import java.net.URI;
import java.net.URL;
/**
* Interface for a resource descriptor that abstracts from the actual
* type of underlying resource, such as a file or class path resource.
*
* <p>An InputStream can be opened for every resource if it exists in
* physical form, but a URL or File handle can just be returned for
* certain resources. The actual behavior is implementation-specific.
*
* @author Juergen Hoeller
* @see #getInputStream()
* @see #getURL()
* @see #getURI()
* @see #getFile()
* @see WritableResource
* @see ContextResource
* @see FileSystemResource
* @see ClassPathResource
* @see UrlResource
* @see ByteArrayResource
* @see InputStreamResource
*/
public interface Resource extends InputStreamSource {
/**
* Return whether this resource actually exists in physical form.
* <p>This method performs a definitive existence check, whereas the
* existence of a <code>Resource</code> handle only guarantees a
* valid descriptor handle.
*/
boolean exists();
/**
* Return whether the contents of this resource can be read,
* e.g. via {@link #getInputStream()} or {@link #getFile()}.
* <p>Will be <code>true</code> for typical resource descriptors;
* note that actual content reading may still fail when attempted.
* However, a value of <code>false</code> is a definitive indication
* that the resource content cannot be read.
* @see #getInputStream()
*/
boolean isReadable();
/**
* Return whether this resource represents a handle with an open
* stream. If true, the InputStream cannot be read multiple times,
* and must be read and closed to avoid resource leaks.
* <p>Will be <code>false</code> for typical resource descriptors.
*/
boolean isOpen();
/**
* Return a URL handle for this resource.
* @throws IOException if the resource cannot be resolved as URL,
* i.e. if the resource is not available as descriptor
*/
URL getURL() throws IOException;
/**
* Return a URI handle for this resource.
* @throws IOException if the resource cannot be resolved as URI,
* i.e. if the resource is not available as descriptor
*/
URI getURI() throws IOException;
/**
* Return a File handle for this resource.
* @throws IOException if the resource cannot be resolved as absolute
* file path, i.e. if the resource is not available in a file system
*/
File getFile() throws IOException;
/**
* Determine the content length for this resource.
* @throws IOException if the resource cannot be resolved
* (in the file system or as some other known physical resource type)
*/
long contentLength() throws IOException;
/**
* Determine the last-modified timestamp for this resource.
* @throws IOException if the resource cannot be resolved
* (in the file system or as some other known physical resource type)
*/
long lastModified() throws IOException;
/**
* Create a resource relative to this resource.
* @param relativePath the relative path (relative to this resource)
* @return the resource handle for the relative resource
* @throws IOException if the relative resource cannot be determined
*/
Resource createRelative(String relativePath) throws IOException;
/**
* Determine a filename for this resource, i.e. typically the last
* part of the path: for example, "myfile.txt".
* <p>Returns <code>null</code> if this type of resource does not
* have a filename.
*/
String getFilename();
/**
* Return a description for this resource,
* to be used for error output when working with the resource.
* <p>Implementations are also encouraged to return this value
* from their <code>toString</code> method.
* @see java.lang.Object#toString()
*/
String getDescription();
}
| [
"[email protected]"
] | |
80890bdebb29b3d1eba62e97b1b62bd2e8124a5c | 397c346d4010ccc80d6c450bff198364f7328601 | /Multiplus/src/panel/jogo/PainelJogoPigrabbit.java | 6583fcd10d946949609599ffbcc499950c433cc0 | [] | no_license | SallyGM/mathplay-game | 0fadc5bc3e58b158c3a10939101ecadee63c39c2 | 7d2002f3eeec7f6a02d56b8c93a25ec3974142ee | refs/heads/master | 2020-08-13T03:39:02.974343 | 2019-10-13T22:36:58 | 2019-10-13T22:36:58 | 214,898,398 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 8,270 | java | package panel.jogo;
import java.awt.Color;
import java.awt.Font;
import java.awt.Rectangle;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyEvent;
import java.util.ArrayList;
import java.util.Random;
import javax.swing.AbstractAction;
import javax.swing.Action;
import javax.swing.ActionMap;
import javax.swing.InputMap;
import javax.swing.JComponent;
import javax.swing.JLabel;
import javax.swing.KeyStroke;
import javax.swing.Timer;
import label.jogoInfo.LabelJogoInfoPigrabbit;
import label.jogoPigrabbit.LabelBonus;
import label.jogoPigrabbit.LabelNave;
import label.jogoPigrabbit.LabelTiro;
import label.personagem.LabelPersonagemPigrabbit;
import usefulTools.ImageTools;
@SuppressWarnings("serial")
public class PainelJogoPigrabbit extends PainelJogo {
// ///////////////////////////////////////////////////////////////
// DECLARACAO DE VARIAVEIS
private LabelPersonagemPigrabbit pigrabbit;
private ArrayList<LabelNave> naves;
private ArrayList<LabelTiro> tiros;
private ArrayList<LabelBonus> bonuses;
private JLabel expressao;
private int codigoResultado;
private ActionListener tempoLimite, tempoAdd, tempoTiro;
private Action inTiro, outTiro;
private Timer tLimite, tAdd, tTiro;
private Thread colisaoTiro, colisaoLimites, colisaoNave;
// ///////////////////////////////////////////////////////////////
// INICIALIZACAO DO PAINEL JOGOPIGRABBIT
public PainelJogoPigrabbit() {
config(ImageTools.JOGOPIGRABBIT_BACKGROUND, 9);
}
// ///////////////////////////////////////////////////////////////
// METODOS POLIMORFICOS (CONCRETOS)
@Override
protected void configLabels() {
info = new LabelJogoInfoPigrabbit();
pigrabbit = new LabelPersonagemPigrabbit();
tiros = new ArrayList<>();
naves = new ArrayList<>();
bonuses = new ArrayList<>();
expressao = new JLabel();
Font f = new Font("impact", Font.BOLD, 100);
expressao.setFont(f);
expressao.setForeground(Color.WHITE);
add(pigrabbit);
add(expressao);
}
@Override
protected void setActionsThreads() {
tempoLimite = new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
setNovaExpressao();
}
};
tempoAdd = new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
Random r = new Random();
int categoria = r.nextInt(5);
if (categoria != 0) {
LabelNave n = new LabelNave();
naves.add(n);
add(n);
} else {
LabelBonus b = new LabelBonus();
bonuses.add(b);
add(b);
}
}
};
tempoTiro = new ActionListener() {
@Override
public void actionPerformed(ActionEvent arg0) {
LabelTiro t = new LabelTiro(pigrabbit.getX() + 25,
pigrabbit.getY());
tiros.add(t);
add(t);
}
};
inTiro = new AbstractAction() {
@Override
public void actionPerformed(ActionEvent e) {
setTiro(true);
}
};
outTiro = new AbstractAction() {
@Override
public void actionPerformed(ActionEvent e) {
setTiro(false);
}
};
colisaoTiro = new Thread() {
@Override
public void run() {
while (!fimJogo) {
for (int i = 0; i < tiros.size(); i++) {
LabelTiro t = tiros.get(i);
Rectangle tRectangle = t.getBounds();
for (int j = 0; j < naves.size(); j++) {
LabelNave n = naves.get(j);
Rectangle nRectangle = n.getBounds();
if (tRectangle.intersects(nRectangle)) {
if (codigoResultado == n.getCodigo())
info.addNumErros();
else
info.addNumAcertos();
removerComponente(n);
removerComponente(t);
naves.remove(n);
tiros.remove(t);
}
}
for (int j = 0; j < bonuses.size(); j++) {
LabelBonus b = bonuses.get(j);
Rectangle bRectangle = b.getBounds();
if (tRectangle.intersects(bRectangle)) {
removerComponente(b);
removerComponente(t);
bonuses.remove(b);
tiros.remove(t);
}
}
}
try {
Thread.sleep(17);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
};
colisaoLimites = new Thread() {
@Override
public void run() {
while (!fimJogo) {
for (int i = 0; i < tiros.size(); i++) {
LabelTiro t = tiros.get(i);
if (t.getY() <= 150) {
removerComponente(t);
tiros.remove(t);
}
}
for (int i = 0; i < naves.size(); i++) {
LabelNave n = naves.get(i);
if (n.getY() >= 739 - n.getHeight()) {
if (codigoResultado == n.getCodigo())
info.addNumAcertos();
else
info.addNumErros();
removerComponente(n);
naves.remove(n);
}
}
for (int i = 0; i < bonuses.size(); i++) {
LabelBonus b = bonuses.get(i);
if (b.getY() >= 739 - b.getHeight()) {
removerComponente(b);
bonuses.remove(b);
}
}
try {
Thread.sleep(17);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
};
colisaoNave = new Thread() {
@Override
public void run() {
while (!fimJogo) {
Rectangle prRectangle = pigrabbit.getBounds();
for (int i = 0; i < naves.size(); i++) {
LabelNave n = naves.get(i);
Rectangle nRectangle = n.getBounds();
if (prRectangle.intersects(nRectangle)) {
if (codigoResultado == n.getCodigo())
info.addNumAcertos();
else
info.addNumErros();
removerComponente(n);
naves.remove(n);
}
}
for (int i = 0; i < bonuses.size(); i++) {
LabelBonus b = bonuses.get(i);
Rectangle bRectangle = b.getBounds();
if (prRectangle.intersects(bRectangle)) {
if (b.getCodigo() == 0)
info.addNumAcertos();
else
counter += 5;
removerComponente(b);
bonuses.remove(b);
}
}
try {
Thread.sleep(17);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
};
}
@Override
protected void initTimersThreads() {
tAdd = new Timer(1000, tempoAdd);
tLimite = new Timer(10000, tempoLimite);
tTiro = new Timer(300, tempoTiro);
tAdd.setInitialDelay(0);
tTiro.setInitialDelay(0);
t.start();
tAdd.start();
tLimite.start();
colisaoLimites.start();
colisaoTiro.start();
colisaoNave.start();
}
@Override
protected void initMetodos() {
setNovaExpressao();
setKeyBindings();
}
@Override
protected void stopTimers() {
t.stop();
tAdd.stop();
}
// ///////////////////////////////////////////////////////////////
// CONFIGURANDO ENTRADAS DO TECLADO
private void setKeyBindings() {
InputMap inMap = this.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW);
ActionMap actMap = this.getActionMap();
inMap.put(KeyStroke.getKeyStroke(KeyEvent.VK_SPACE, 0, false),
"PressedSpace");
inMap.put(KeyStroke.getKeyStroke(KeyEvent.VK_SPACE, 0, true),
"ReleasedSpace");
actMap.put("PressedSpace", inTiro);
actMap.put("ReleasedSpace", outTiro);
}
// ///////////////////////////////////////////////////////////////
// METODOS PROPRIOS DO JOGO
private void setNovaExpressao() {
gerarExpressao();
validate();
repaint();
}
// ///////////////////////////////////////////////////////////////
// METODOS AUXILIARES
private void gerarExpressao() {
Random r = new Random();
int codigo = r.nextInt(4);
int num1 = 0;
int num2 = 0;
int resultado = 0;
// ////////////////////////////////////////
switch (codigo) {
case 0:
num1 = r.nextInt(10) + 1;
num2 = r.nextInt(10) + 1;
resultado = num1 + num2;
break;
case 1:
num1 = r.nextInt(10) + 1;
num2 = r.nextInt(10) + 1;
resultado = num1 - num2;
break;
case 2:
num1 = r.nextInt(10) + 1;
num2 = r.nextInt(10) + 1;
resultado = num1 * num2;
break;
case 3:
num2 = r.nextInt(10) + 1;
num1 = num2 * (r.nextInt(5) + 1);
resultado = num1 / num2;
break;
}
expressao.setText(num1 + " ? " + num2 + " = " + resultado);
expressao.setSize(expressao.getPreferredSize());
expressao.setLocation((1020 - expressao.getWidth()) / 2, 0);
codigoResultado = codigo;
}
private void setTiro(boolean tiro) {
if (tiro)
tTiro.start();
else
tTiro.stop();
}
}
| [
"[email protected]"
] | |
5d2a2fdcd054ee09084199dca5120d8042ea6681 | 65ffeaba767291afbab6ca6ea0c6aa82c27217dc | /testng.integration/src/test/java/com/github/toy/constructor/testng/integration/test/ignored/IgnoredStubTest.java | ca8126894b1e968cd7824da84a80ad32defa762a | [] | no_license | TikhomirovSergey/toy.constructor | cac0dd3599b07bb6ec4fbe16ea54c2878987786e | 1c5ceae47bea68f37356f92f8f4d9827231fd831 | refs/heads/master | 2021-01-20T07:57:29.177684 | 2018-07-17T17:16:20 | 2018-07-17T17:16:20 | 90,073,743 | 1 | 2 | null | null | null | null | UTF-8 | Java | false | false | 1,337 | java | package com.github.toy.constructor.testng.integration.test.ignored;
import com.github.toy.constructor.testng.integration.test.BaseTestNgIntegrationTest;
import org.testng.annotations.*;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.is;
@Ignore
public class IgnoredStubTest extends BaseTestNgIntegrationTest {
@BeforeSuite
public static void beforeSuiteStatic3() {
//does nothing
}
@BeforeSuite
public void beforeSuiteObject3() {
//does nothing
}
@BeforeTest
public static void beforeTestStatic3() {
//does nothing
}
@BeforeTest
public void beforeTestObject3() {
//does nothing
}
@BeforeClass
public static void beforeClassStatic3() {
//does nothing
}
@BeforeClass
public void beforeClassObject3() {
//does nothing
}
@BeforeMethod
public static void beforeMethodStatic3() {
//does nothing
}
@BeforeMethod
public void beforeMethodObject3() {
//does nothing
}
@Test
public void someEmptyTest() {
assertThat(true, is(true));
}
@Test
public void someEmptyTest2() {
assertThat(false, is(false));
}
@Test
public void someEmptyTest3() {
assertThat(true, is(true));
}
}
| [
"[email protected]"
] | |
d4a052ce260ed4a695ec8aeaf12921803d601e3e | a3e5ecad679814e44a31ff7859d23b50e2466bec | /app/src/main/java/com/example/kamanashis/biswas/mybuttondemo/Activity59_bmw_1000cc.java | b5b595812ddd7d9cf0400bb07b647a366ae12a13 | [] | no_license | Kamanashis-Biswas/Car-Pricing-App | cee04b6eee83152d1ae306429641aba94ceab0a7 | aa86bc8c55b26e28b49fe86d2786f057761921aa | refs/heads/master | 2022-04-06T04:41:43.655369 | 2020-01-22T08:55:59 | 2020-01-22T08:55:59 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 381 | java | package com.example.kamanashis.biswas.mybuttondemo;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
public class Activity59_bmw_1000cc extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_activity59_bmw_1000cc);
}
}
| [
"[email protected]"
] | |
d705615df748aadced7e552d8fa40d3575594cb8 | 26691a40e0fab104ac3e3bdf45eb021179ef7a3a | /src/main/java/animals/model/LandAnimalFamily.java | 2346425d4f9f6a385451a64b2ce48b673b4ca2cb | [] | no_license | CodingNagger/CodeRefactoringExample | 1852ed547de874340fd3f0cffa127eebea62edd3 | 48b2568595f029aa1b6c1bd43aeb251398880170 | refs/heads/master | 2020-06-25T13:37:52.524966 | 2019-07-22T06:51:18 | 2019-07-28T18:54:50 | 199,324,168 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 319 | java | package animals.model;
public enum LandAnimalFamily implements AnimalFamily {
SPIDER("Spider"),
DOG("Doggo");
private final String description;
LandAnimalFamily(String description) {
this.description = description;
}
public String description() {
return description;
}
}
| [
"[email protected]"
] | |
6e81b65157aa2105bbac347c03298ff775e41089 | 47023c38bc331215bb87ccc7a5ead7a4c48d9672 | /src/main/java/com/yogo/demo/config/WebConfig.java | a08d87d51c2ed2442ef30750b1564a032ee54772 | [] | no_license | Bluehu/Angular-backend | 29e8a1943ed2d10ff81680d4ab4f0b82560b9289 | d8823672663f76797bbf88cefd3084d3dc93dfce | refs/heads/main | 2023-01-05T07:54:53.511050 | 2020-11-03T19:35:53 | 2020-11-03T19:35:53 | 309,786,467 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,369 | java | package com.yogo.demo.config;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.SerializationFeature;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
@Configuration
public class WebConfig {
@Bean
public WebMvcConfigurer corsConfigurer() {
return new WebMvcConfigurer() {
@Override
//重写父类提供的跨域请求处理的接口
public void addCorsMappings(CorsRegistry registry) {
//添加映射路径
registry.addMapping("/**")
//放行所有域
.allowedOrigins("*")
//允许发送Cookie信息
.allowCredentials(true)
//放行请求方式
.allowedMethods("GET","POST", "PUT", "DELETE")
//放行所有头部信息
.allowedHeaders("*")
//暴露头部信息(因为跨域访问默认不能获取全部头部信息)
.exposedHeaders("Header1", "Header2");
}
};
}
}
| [
"[email protected]"
] | |
35860c4e11fdbf9d98b3bd5e7286ea5932a67b7d | e9ce19c7644e579ccaf3d29d8c7e5bf4d602793c | /UpLoad/src/com/algorithm/MathAlg/LetterToNum.java | 819ec81648b2ca988d17e2394839a8fe41197d8b | [] | no_license | doctor1717/lau-workplace | d131e7326ff2c766b3be2c1f68b52a7ce3092870 | 57909bbdfdc1519b40a7245b682d0610702843cf | refs/heads/master | 2021-07-08T18:17:49.037799 | 2019-07-29T15:13:05 | 2019-07-29T15:13:05 | 147,302,698 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,257 | java | package com.algorithm.MathAlg;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
public class LetterToNum{
public static int Change(String input){
char[] c = input.toCharArray();
int sum = 0;
for(int i = 0;i<c.length;i++){
int temp = c[i]-'A';
sum += temp*Math.pow(26,i);
}
return sum;
}
public static List<Integer> partitionLabels(String S) {
List<Integer> list = new ArrayList<>();
if(S == null || S.length() == 0){
return list;
}
char[] c = S.toCharArray();
int[] count = new int[26];
for(int i = 0;i < c.length;i++){
int index = c[i]-'a';
count[index] = i;
}
int k = 0;
while(k < c.length){
int t = count[c[k]-'a'];
for (int j = k + 1; j < t && j < c.length; j++) {
if (count[c[j]-'a'] > t) {
t = count[c[j]-'a'];
}
}
list.add(t - k + 1);
k = t + 1;
}
return list;
}
public static void main(String[] args) {
System.out.println(partitionLabels("ababcbacadefegdehijhklij").toString());
}
}
| [
"[email protected]"
] | |
606e4323ba1d721cd95764ffdbe0a4e74b780a9a | fbb0eb04519b92604861e236ff4cffaaab28f131 | /diplom/src/main/java/ru/sapteh/logic/FillTable.java | 3a2093719927ed2643ed64b9c3c1c5dce8858e1b | [] | no_license | elex82/diplomTest | f11b604a15793fb75b5164dc2885201bfd45f040 | f98d5e5925827455af10994329f26e0a11467893 | refs/heads/main | 2023-05-31T19:28:22.565293 | 2021-06-10T16:49:24 | 2021-06-10T16:49:24 | 375,767,271 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,072 | java | package ru.sapteh.logic;
import ru.sapteh.Connect;
import ru.sapteh.model.Column;
import ru.sapteh.model.ForinKey;
import ru.sapteh.model.Table;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
public class FillTable {
Connection connection;
public List<Table> fill() throws SQLException, ClassNotFoundException {
connection = Connect.getConnection();
String sqlh="SHOW TABLES ";
List<Table> tableList =new ArrayList<>();
PreparedStatement statement = connection.prepareStatement(sqlh);
ResultSet resultSet = statement.executeQuery();
while (resultSet.next()){
String str = resultSet.getString(1);
tableList.add(new Table(str,fillColumn("testtyp", str),fillForinkey(str)));
}
return tableList;
}
public List<Column>fillColumn(String name, String tableName) throws SQLException, ClassNotFoundException {
connection = Connect.getConnection();
List<Column> columnList = new ArrayList<>();
String sqlh="SELECT COLUMN_NAME,COLUMN_DEFAULT, " +
"IS_NULLABLE, DATA_TYPE," +
" CHARACTER_MAXIMUM_LENGTH, " +
"COLUMN_KEY, EXTRA FROM information_schema.COLUMNS" +
" where TABLE_SCHEMA = 'test' and TABLE_NAME= '" +tableName+"'";
PreparedStatement statement = connection.prepareStatement(sqlh);
ResultSet resultSet = statement.executeQuery();
while (resultSet.next()){
Column column = new Column(resultSet.getString(1),
resultSet.getString(2),
resultSet.getString(3),
resultSet.getString(4),
resultSet.getString(5),
resultSet.getString(6),
resultSet.getString(7));
columnList.add(column);
}
return columnList;
}
public List<ForinKey> fillForinkey(String str) throws SQLException, ClassNotFoundException {
connection = Connect.getConnection();
String sqlh="SELECT " +
"TABLE_NAME, " +
"COLUMN_NAME, " +
"REFERENCED_TABLE_NAME," +
" REFERENCED_COLUMN_NAME " +
"FROM " +
"INFORMATION_SCHEMA.KEY_COLUMN_USAGE" +
" where TABLE_SCHEMA = '"+"test"+"' and POSITION_IN_UNIQUE_CONSTRAINT and TABLE_NAME ='"+str+"'";
PreparedStatement statement = connection.prepareStatement(sqlh);
ResultSet resultSet = statement.executeQuery();
List <ForinKey> forinK = new ArrayList<>();
if (!resultSet.equals(null)) {
while (resultSet.next()){
forinK.add(new ForinKey(resultSet.getString(2),resultSet.getString(3),resultSet.getString(4)));
}
}
return forinK ;
}
}
| [
"[email protected]"
] | |
9cf866381ab66d7570722634c14a7ad259069e60 | 05d62a289ac484368067ccf0a133e52fe19153a0 | /app/src/main/java/com/res/ticketplease/Classes/Participante.java | 5efd3de2d8b6656fd0c68bb3cf20dc7e41fd7c03 | [] | no_license | Rodrigo1901/TicketPlease | c6ff11a0737d471c37439e2fed2ef72b8bd58a1c | e261fec7c4f823859390ce95238dea90f535bbf3 | refs/heads/master | 2023-03-30T19:30:56.186780 | 2021-03-29T12:01:38 | 2021-03-29T12:01:38 | 351,534,002 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,138 | java | package com.res.ticketplease.Classes;
import com.google.firebase.database.DatabaseReference;
import com.res.ticketplease.Config.ConfigFirebase;
public class Participante {
private String nome, cpf, email, senha, id;
public Participante() {
}
public void salvar() {
DatabaseReference firebaseRef = ConfigFirebase.getFirebaseDatabase();
DatabaseReference usuario = firebaseRef.child("participantes").child(getId());
usuario.setValue(this);
}
public String getNome() {
return nome;
}
public void setNome(String nome) {
this.nome = nome;
}
public String getCpf() {
return cpf;
}
public void setCpf(String cpf) {
this.cpf = cpf;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getSenha() {
return senha;
}
public void setSenha(String senha) {
this.senha = senha;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
}
| [
"[email protected]"
] | |
26bc649ee16f94a69fa7337a45465f0ee322a637 | 329a5d91d7020986c3084fc9b2ac0fe75fde1634 | /src/main/java/com/wills/netty/chapter3_chat/server/ChatServerHandler.java | 635b6b1e7219dcb683fbee4c3ec58bc7b67927b1 | [] | no_license | get2bad/JavaStudy | c911811bdda2d6af26ab72ffb247c83dd3c9e956 | fbc24598692bbf0c8bc8570d858bef38f69acbaa | refs/heads/master | 2023-07-03T15:14:55.458627 | 2021-08-09T07:42:43 | 2021-08-09T07:42:43 | 390,593,529 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 3,147 | java | package com.wills.netty.chapter3_chat.server;
import io.netty.buffer.ByteBuf;
import io.netty.buffer.Unpooled;
import io.netty.channel.Channel;
import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.SimpleChannelInboundHandler;
import io.netty.channel.group.ChannelGroup;
import io.netty.channel.group.DefaultChannelGroup;
import io.netty.util.concurrent.GlobalEventExecutor;
import java.net.SocketAddress;
import java.nio.charset.StandardCharsets;
/**
* @author 王帅
* @date 2021-07-30 23:34:59
* @description:
*/
public class ChatServerHandler extends SimpleChannelInboundHandler<String> {
private static ChannelGroup group = new DefaultChannelGroup(GlobalEventExecutor.INSTANCE);
@Override
protected void channelRead0(ChannelHandlerContext ctx, String msg) throws Exception {
// 发送消息
Channel channel = ctx.channel();
for (Channel ch : group) {
if(ch == channel){
// 发送给自己
String finalMsg = "我说:" + msg + "\r\n";
ByteBuf buf = Unpooled.copiedBuffer(finalMsg, StandardCharsets.UTF_8);
ch.writeAndFlush(buf);
} else {
// 发送给别人
String finalMsg = channel.remoteAddress().toString() + "说:" + msg + "\r\n";
ByteBuf buf = Unpooled.copiedBuffer(finalMsg, StandardCharsets.UTF_8);
ch.writeAndFlush(buf);
}
}
}
@Override
public void handlerAdded(ChannelHandlerContext ctx) throws Exception {
SocketAddress address = ctx.channel().remoteAddress();
String msg = "服务器消息:客户端:【" + address.toString() + "】加入了聊天室!\r\n";
group.writeAndFlush(msg);
group.add(ctx.channel());
}
@Override
public void handlerRemoved(ChannelHandlerContext ctx) throws Exception {
SocketAddress address = ctx.channel().remoteAddress();
String msg = "服务器消息:客户端:【" + address.toString() + "】离开了聊天室!\r\n";
group.writeAndFlush(msg);
// group.remove(ctx.channel());
}
@Override
public void channelActive(ChannelHandlerContext ctx) throws Exception {
SocketAddress address = ctx.channel().remoteAddress();
String msg = "服务器消息:客户端:【" + address.toString() + "】上线了!\n";
group.writeAndFlush(msg);
}
@Override
public void channelInactive(ChannelHandlerContext ctx) throws Exception {
SocketAddress address = ctx.channel().remoteAddress();
String msg = "服务器消息:客户端:【" + address.toString() + "】离线!\n";
group.writeAndFlush(msg);
}
@Override
public void channelReadComplete(ChannelHandlerContext ctx) throws Exception {
super.channelReadComplete(ctx);
}
@Override
public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
cause.printStackTrace();
group.writeAndFlush("服务器遇到了一些错误,请您等待管理员解决!\n");
}
}
| [
"[email protected]"
] | |
42d8bc4888b6405ca76812294baed4a795083eb9 | afc901778f61a3b5c57aa42e1338066fc4a66193 | /src/main/java/com/cybrilla/bank/system/bankingSystem/dto/BankSummaryDto.java | 789a1e2be3f9ecd8dbdc2102508a95d410fc6bd5 | [] | no_license | ambikeshshukla/bankingsystem | 9d078e9ba9baaa0a078e689fc8ea2aa484d85dd8 | 8c2308bfeaaac29b96cb161fad3db292bb99410a | refs/heads/master | 2020-04-07T04:45:46.790726 | 2018-11-18T10:04:18 | 2018-11-18T10:04:18 | 158,070,321 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,320 | java | package com.cybrilla.bank.system.bankingSystem.dto;
import com.cybrilla.bank.system.bankingSystem.entity.BankSummary;
public class BankSummaryDto {
private String mode;
private Long deposit;
private Long withdraw;
private Long totalBalance;
public BankSummaryDto(){}
public BankSummaryDto(BankSummary summary) {
setMode(summary.getMode());
setDeposit(summary.getDeposit());
setWithdraw(summary.getWithdraw());
setTotalBalance(summary.getTotalBalance());
}
/**
* @return the mode
*/
public String getMode() {
return mode;
}
/**
* @param mode the mode to set
*/
public void setMode(String mode) {
this.mode = mode;
}
/**
* @return the deposit
*/
public Long getDeposit() {
return deposit;
}
/**
* @param deposit the deposit to set
*/
public void setDeposit(Long deposit) {
this.deposit = deposit;
}
/**
* @return the withdraw
*/
public Long getWithdraw() {
return withdraw;
}
/**
* @param withdraw the withdraw to set
*/
public void setWithdraw(Long withdraw) {
this.withdraw = withdraw;
}
/**
* @return the totalBalance
*/
public Long getTotalBalance() {
return totalBalance;
}
/**
* @param totalBalance the totalBalance to set
*/
public void setTotalBalance(Long totalBalance) {
this.totalBalance = totalBalance;
}
}
| [
"[email protected]"
] | |
8ec6f400fafb05f0fb32fde30d5e2b40d7628365 | a26baf7eb246f9142f2647e8ec71ed4dd02a9f84 | /Stringtokenise.java | a726653b850179a24d47e6520b6f9012463945c7 | [] | no_license | Learner-Supriya/Java-Programs | 129a8b411d8640d73e085edbafbf9c25bbccaccf | e59fca93bf5854da5c8e289c9404f2a801752c73 | refs/heads/master | 2020-06-29T14:27:52.848070 | 2019-08-05T01:34:52 | 2019-08-05T01:34:52 | 200,561,020 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,350 | java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package stringtokenise;
/**
*
* @author sri ram
*/
import java.util.*;
public class Stringtokenise {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
String str="hello iam supriya ede,my brother is charan sri hari";
StringTokenizer someobj=new StringTokenizer(str);
System.out.println(someobj.countTokens());
System.out.println(someobj.nextToken());
System.out.println(someobj.nextToken());
System.out.println(someobj.nextToken(" "));
System.out.println(someobj.countTokens());
StringTokenizer someobj1=new StringTokenizer(str,",");
System.out.println(someobj1.countTokens());
System.out.println(someobj1.nextToken());
System.out.println(someobj1.nextToken());
System.out.println(someobj1.countTokens());
System.out.println(someobj1.hasMoreTokens());
StringTokenizer someobj3=new StringTokenizer(str,",",true);
System.out.println(someobj3.countTokens());
}
}
| [
"[email protected]"
] | |
0581d534846877ff1489b71c771755e0bddf85de | d01c4eb527939ef2297322c8b47444672a94a94f | /src/test/java/http/tests/HttpQueryStringBuilderTest.java | 2c7096ac74dcc74039ff7420a031e345ef215be6 | [] | no_license | adagiu/simple-exercise | a92cf446070c5d021ed357b6c1859f2085185890 | a00e7e9fc609f038535e40c14e150ac14a20f338 | refs/heads/master | 2022-06-12T09:43:00.470738 | 2019-12-10T16:33:59 | 2019-12-10T16:33:59 | 123,624,316 | 0 | 0 | null | 2022-05-20T20:51:03 | 2018-03-02T19:55:56 | Java | UTF-8 | Java | false | false | 3,325 | java | package http.tests;
import org.junit.Test;
import utils.http.QueryStringBuilder;
import static org.junit.Assert.*;
/**
* giuseppe.adaldo
*/
public class HttpQueryStringBuilderTest {
@Test
public void testNullParams() {
try {
final String query = QueryStringBuilder.buildURIParams(new String[] { "accountId", "supports", "onlyActive" });
assertNotNull(query);
assertTrue(query.isEmpty());
assertEquals(query, "");
} catch (Exception e) {
fail();
}
}
@Test
public void testNormalBehaviour() {
try {
final String query = QueryStringBuilder.buildURIParams(new String[] { "accountId", "supports", "onlyActive" }, 10010011,
new String[] { "", "" }, true);
assertNotNull(query);
assertFalse(query.isEmpty());
assertEquals(query, "?accountId=10010011&supports=&supports=&onlyActive=true");
} catch (Exception e) {
fail();
}
}
@Test
public void testLessParamsThanNames() {
try {
final String query = QueryStringBuilder.buildURIParams(new String[] { "accountId", "supports", "onlyActive" }, 10010011,
new String[] { "", "" });
assertNotNull(query);
assertTrue(query.isEmpty());
assertEquals(query, "");
} catch (Exception e) {
fail();
}
}
@Test
public void testLessNamesThanParams() {
try {
final String query = QueryStringBuilder.buildURIParams(new String[] { "accountId", "supports" }, 10010011, "a", "b", "c");
assertNotNull(query);
assertTrue(query.isEmpty());
assertEquals(query, "");
} catch (Exception e) {
fail();
}
}
@Test
public void testArraySingleObj() {
try {
final String query = QueryStringBuilder.buildURIParams(new String[] { "accountId", "supports" }, 10010011, new String[] { "a" });
assertNotNull(query);
assertFalse(query.isEmpty());
assertEquals(query, "?accountId=10010011&supports=a");
} catch (Exception e) {
fail();
}
}
@Test
public void testEmptyArrayObj() {
try {
final String query = QueryStringBuilder.buildURIParams(new String[] { "accountId", "supports" }, 10010011, new String[] {});
assertNotNull(query);
assertFalse(query.isEmpty());
assertEquals(query, "?accountId=10010011");
} catch (Exception e) {
fail();
}
}
@Test
public void testEmptyArrayFirstObj() {
try {
final String query = QueryStringBuilder.buildURIParams(new String[] { "", "supports" }, 10010011, new String[] {});
assertNotNull(query);
assertTrue(query.isEmpty());
assertEquals(query, "");
} catch (Exception e) {
fail();
}
}
@Test
public void testEmptyArrayFirstObjNonNullValues() {
try {
final String query = QueryStringBuilder.buildURIParams(new String[] { "", "supports" }, 10010011, new String[] { "hello world" });
assertNotNull(query);
assertFalse(query.isEmpty());
assertEquals(query, "?supports=hello+world");
} catch (Exception e) {
fail();
}
}
@Test
public void testLongString() {
try {
final String query = QueryStringBuilder.buildURIParams(new String[] { "oneLongStringAsParameterName" },
"a very long string to parse and check as query string value!");
assertNotNull(query);
assertFalse(query.isEmpty());
assertEquals(query, "?oneLongStringAsParameterName=a+very+++long+string+to+parse+and+check+as+query+string+value%21");
} catch (Exception e) {
fail();
}
}
}
| [
"[email protected]"
] | |
06683c6de3019949de07d4abf67de1d65e5209a7 | 4fff4eb71eab0235e50f0987a16311eb81a48c61 | /OptionsTab/src/com/example/fragments/D.java | 98cf2be0bd345da1b47e15b2906c434ad2e97393 | [] | no_license | zouyi9807/AndroidPage | d7dc45fda855c217dad011382f706e61cafebf25 | 4e51f7938e9f590f2334c92b7e4699c87903fd6d | refs/heads/master | 2020-03-18T23:10:06.299540 | 2018-05-30T04:10:50 | 2018-05-30T04:10:50 | 135,386,503 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 511 | java | package com.example.fragments;
import com.example.optiontab.R;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
public class D extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
System.out.println("DDDDDDDDDDDDDD____onCreateView");
return inflater.inflate(R.layout.d, container, false);
}
}
| [
"[email protected]"
] | |
f915a3320149d8c7768c6384d07b25109f562101 | 10d77fabcbb945fe37e15ae438e360a89a24ea05 | /graalvm/transactions/fork/narayana/qa/tests/src/org/jboss/jbossts/qa/PerfProfile01Clients/Client_ExplicitObject_TranCommit_TranRollbackNullOper.java | abd05436fd3e5919ae634649d1e2215ee16fbef2 | [
"Apache-2.0",
"LGPL-2.1-only",
"LGPL-2.1-or-later",
"LicenseRef-scancode-other-copyleft"
] | permissive | nmcl/scratch | 1a881605971e22aa300487d2e57660209f8450d3 | 325513ea42f4769789f126adceb091a6002209bd | refs/heads/master | 2023-03-12T19:56:31.764819 | 2023-02-05T17:14:12 | 2023-02-05T17:14:12 | 48,547,106 | 2 | 1 | Apache-2.0 | 2023-03-01T12:44:18 | 2015-12-24T15:02:58 | Java | UTF-8 | Java | false | false | 3,815 | java | /*
* JBoss, Home of Professional Open Source
* Copyright 2007, Red Hat Middleware LLC, and individual contributors
* as indicated by the @author tags.
* See the copyright.txt in the distribution for a
* full listing of individual contributors.
* This copyrighted material is made available to anyone wishing to use,
* modify, copy, or redistribute it subject to the terms and conditions
* of the GNU Lesser General Public License, v. 2.1.
* This program is distributed in the hope that it will be useful, but WITHOUT A
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General Public License,
* v.2.1 along with this distribution; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*
* (C) 2005-2006,
* @author JBoss Inc.
*/
//
// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003
//
// Arjuna Technologies Ltd.,
// Newcastle upon Tyne,
// Tyne and Wear,
// UK.
//
package org.jboss.jbossts.qa.PerfProfile01Clients;
/*
* Copyright (C) 1999-2001 by HP Bluestone Software, Inc. All rights Reserved.
*
* HP Arjuna Labs,
* Newcastle upon Tyne,
* Tyne and Wear,
* UK.
*
* $Id: Client_ExplicitObject_TranCommit_TranRollbackNullOper.java,v 1.2 2003/06/26 11:44:19 rbegg Exp $
*/
/*
* Try to get around the differences between Ansi CPP and
* K&R cpp with concatenation.
*/
/*
* Copyright (C) 1999-2001 by HP Bluestone Software, Inc. All rights Reserved.
*
* HP Arjuna Labs,
* Newcastle upon Tyne,
* Tyne and Wear,
* UK.
*
* $Id: Client_ExplicitObject_TranCommit_TranRollbackNullOper.java,v 1.2 2003/06/26 11:44:19 rbegg Exp $
*/
import com.arjuna.ats.jts.extensions.AtomicTransaction;
import org.jboss.jbossts.qa.PerfProfile01.*;
import org.jboss.jbossts.qa.Utils.*;
import java.util.Date;
public class Client_ExplicitObject_TranCommit_TranRollbackNullOper
{
public static void main(String[] args)
{
try
{
ORBInterface.initORB(args, null);
OAInterface.initOA();
String prefix = args[args.length - 3];
int numberOfCalls = Integer.parseInt(args[args.length - 2]);
String explicitObjectIOR = ServerIORStore.loadIOR(args[args.length - 1]);
ExplicitObject explicitObject = ExplicitObjectHelper.narrow(ORBInterface.orb().string_to_object(explicitObjectIOR));
boolean correct = true;
Date start = new Date();
for (int index = 0; index < numberOfCalls; index++)
{
AtomicTransaction atomicTransaction = new AtomicTransaction();
atomicTransaction.begin();
explicitObject.tran_rollback_nulloper(OTS.current().get_control());
atomicTransaction.commit(true);
}
Date end = new Date();
float operationDuration = ((float) (end.getTime() - start.getTime())) / ((float) numberOfCalls);
System.err.println("Operation duration : " + operationDuration + "ms");
System.err.println("Test duration : " + (end.getTime() - start.getTime()) + "ms");
correct = PerformanceProfileStore.checkPerformance(prefix + "_ExplicitObject_TranCommit_TranRollbackNullOper", operationDuration);
if (correct)
{
System.out.println("Passed");
}
else
{
System.out.println("Failed");
}
}
catch (Exception exception)
{
System.out.println("Failed");
System.err.println("Client_ExplicitObject_TranCommit_TranRollbackNullOper.main: " + exception);
exception.printStackTrace(System.err);
}
try
{
OAInterface.shutdownOA();
ORBInterface.shutdownORB();
}
catch (Exception exception)
{
System.err.println("Client_ExplicitObject_TranCommit_TranRollbackNullOper.main: " + exception);
exception.printStackTrace(System.err);
}
}
}
| [
"[email protected]"
] | |
fea70914884c10f445cebaff6e89f31d1d8f5c03 | 9a85c7743d0be2cad46d378fff88e0b6b2436956 | /BiscuitCaseApp/src/main/java/me/noahandrews/biscuitcaseapp/ViewPagerAdapter.java | 739d9816ca12f433a8cacdd51d7f39f01542fbb5 | [] | no_license | NoahAndrews/BiscuitCase | 447483a385f314baf12396e2e7e9e2eeb8bd6256 | c68a14b2ff81b852736c146ccd20d13285b7622f | refs/heads/master | 2021-01-18T13:59:31.393199 | 2015-05-14T19:10:52 | 2015-05-14T19:10:52 | 34,825,609 | 1 | 0 | null | 2015-05-03T21:42:32 | 2015-04-30T00:30:12 | Java | UTF-8 | Java | false | false | 1,205 | java | package me.noahandrews.biscuitcaseapp;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentPagerAdapter;
import me.noahandrews.biscuitcaselibrary.Category;
import me.noahandrews.biscuitcaselibrary.ItemsDataSource;
import java.util.ArrayList;
public class ViewPagerAdapter extends FragmentPagerAdapter {
CharSequence Titles[];
int numOfTabs;
FragmentManager fm;
ArrayList<Category> categories;
public ViewPagerAdapter(FragmentManager fm, CharSequence mTitles[], int mNumOfTabs,ArrayList<Category> categories) {
super(fm);
this.Titles = mTitles;
this.numOfTabs = mNumOfTabs;
this.fm = fm;
this.categories = categories;
}
public Fragment getItem(int position) {
ItemsDataSource dataSource;
dataSource = ItemsDataSource.GUEST_INSTANCE;
if(!dataSource.isOpened()) {
dataSource.open();
}
return CategoryFragment.newInstance(categories.get(position));
}
public CharSequence getPageTitle(int position) {
return Titles[position];
}
public int getCount() {
return numOfTabs;
}
}
| [
"[email protected]"
] | |
ed745e676e329b6df808952f5a96ad27ea86962a | 1fb1084efdb60c0e6f5139b2da36ddc9a49cf6d9 | /src/java/com/betel/dao/EmpleadoDaoImpl.java | f518d0f093bf70f3ea6ecda1a0325f7dfffb1ab5 | [] | no_license | CrissangelF19/Proytectodbetel | 68d63d298e7bc6ddd91b36e53f3b1c0d999d63ca | a221e270765c07803db41ba76cb13d0d65159cff | refs/heads/master | 2021-04-12T12:22:51.012639 | 2018-03-22T20:57:35 | 2018-03-22T20:57:35 | 126,393,563 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 11,468 | java |
package com.betel.dao;
import com.betel.db.ConectarDB;
import com.betel.modelo.Empleado;
import com.betel.modelo.Persona;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
public class EmpleadoDaoImpl implements IDAO{
ConectarDB con = new ConectarDB();
PreparedStatement psmt = null;
ResultSet rs = null;
String respuesta = null;
Empleado empl;
public EmpleadoDaoImpl() {
}
@Override
public String insertar(Object obj) throws SQLException {
Empleado objEmpl = (Empleado) obj;
try {
psmt = con.conectar().prepareStatement("INSERT INTO persona VALUES (null,?,?,?,?,?,?,?,?,?,?,?)");
psmt.setString(1, objEmpl.getNombreCompleto());
psmt.setString(2, objEmpl.getTipoDocIdentidad());
//Para Rgistrar Null
if (objEmpl.getTipoDocIdentidad().equals("Seleccione")) {
psmt.setString(3, "");
}else{
psmt.setString(3, objEmpl.getNroIdentidad());
}
psmt.setString(4, objEmpl.getGenero());
psmt.setString(5, objEmpl.getDireccion());
psmt.setString(6, objEmpl.getCiudad());
psmt.setString(7, objEmpl.getBarrio());
psmt.setString(8,objEmpl.getEmail());
psmt.setString(9,objEmpl.getCelular());
psmt.setString(10,objEmpl.getTelefono());
psmt.setString(11,objEmpl.getEstado());
psmt.executeUpdate();
Persona p = (Persona) buscarPorID(objEmpl.getNroIdentidad());
System.out.println("Id de persona: " + buscarPorID(objEmpl.getNroIdentidad()));
System.out.println("documento identidad: " + objEmpl.getNroIdentidad());
psmt = con.conectar().prepareStatement("INSERT INTO empleado VALUES(null,?,?,?,?)");
psmt.setString(1, p.getIdPersona());
psmt.setString(2, objEmpl.getIdRol());
psmt.setDate(3, objEmpl.getFechaIngreso());
psmt.setString(4, objEmpl.getEstadoz());
psmt.executeUpdate();
respuesta = "El registro se realizo con exito";
} catch (NumberFormatException | SQLException e) {
// throw new SQLException("Error al registrar: " + e.toString());
System.out.println("Problemas en el serverE: " + e.toString());
e.printStackTrace();
}finally{
if(psmt!=null){
psmt.close();
}
if(rs!=null){
rs.close();
}
con.desconectar();
}
return respuesta;
}
@Override
public String eliminar(Object obj) throws SQLException {
Empleado objempl = (Empleado) obj;
try {
psmt = con.conectar().prepareStatement("UPDATE empleado SET estado = ? WHERE idEmpleado= ?");
psmt.setString(1, "Inactivo");
psmt.setInt(2, Integer.parseInt(objempl.getIdEmpleado()));
psmt.executeUpdate();
respuesta = "El registro se realizó correctamente";
} catch (SQLException e) {
throw new SQLException("Error al Eliminar: " + e.toString());
}finally{
if(psmt!=null){
psmt.close();
}
con.desconectar();
}
return respuesta;
}
@Override
public String modificar(Object obj) throws SQLException {
Empleado objempl = (Empleado) obj;
try {
psmt = con.conectar().prepareStatement("{CALL actualizarEmpl(?,?,?,?,?,?,?,?,?,?,?,?,?,?)}");
psmt.setString(1, objempl.getIdEmpleado());
psmt.setString(2, objempl.getIdPersona());
psmt.setString(3, objempl.getIdRol());
psmt.setString(4, objempl.getEstadoz());
psmt.setString(5, objempl.getNombreCompleto());
psmt.setString(6, objempl.getTipoDocIdentidad());
psmt.setString(7, objempl.getNroIdentidad());
psmt.setString(8, objempl.getGenero());
psmt.setString(9, objempl.getDireccion());
psmt.setString(10, objempl.getCiudad());
psmt.setString(11, objempl.getBarrio());
psmt.setString(12, objempl.getEmail());
psmt.setString(13, objempl.getCelular());
psmt.setString(14, objempl.getTelefono());
psmt.executeUpdate();
respuesta = "El registro se realizo con exito";
} catch (Exception e) {
throw new SQLException("Error al actualizar: " + e.toString());
}finally{
if(psmt!=null){
psmt.close();
}
if(rs!=null){
rs.close();
}
con.desconectar();
}
return respuesta;
}
@Override
public List<Empleado> listar() throws SQLException {
List<Empleado> listaEmpl= new ArrayList<>();
try {
psmt = con.conectar().prepareStatement("{CALL listarEmpleado ()}");
rs = psmt.executeQuery();
while (rs.next()) {
listaEmpl.add(Empleado.load(rs));
}
} catch (Exception e) {
System.out.println("Error en la consulta: " + e);
}finally{
if(psmt!=null){
psmt.close();
}
if(rs!=null){
rs.close();
}
con.desconectar();
}
return listaEmpl;
}
@Override
public Object buscarPorID(String id) throws SQLException {
List<Persona> listaPersonas = new ArrayList<>();
try {
psmt = con.conectar().prepareStatement("SELECT * FROM persona WHERE nroIdentidad=?");
psmt.setString(1, id);
rs = psmt.executeQuery();
while (rs.next()) {
listaPersonas.add(Persona.load(rs));
}
// for (Persona persona : listaPersonas) {
// System.out.println("nombre : " + persona.getIdPersona());
// }
} catch (Exception e) {
System.out.println("Error en el Id: " + e);
}finally{
if(psmt!=null){
psmt.close();
}
if(rs!=null){
rs.close();
}
con.desconectar();
}
return listaPersonas.get(0);
}
@Override
public int contar() throws SQLException{
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
@Override
public boolean existe(Object id) throws SQLException{
Empleado objempl = (Empleado) id;
Boolean respuesta = false;
try {
psmt = con.conectar().prepareStatement("{CALL bNIdentidadEmpl(?)}");
psmt.setString(1,objempl.getNroIdentidad());
rs = psmt.executeQuery();
while (rs.next()) {
respuesta = true;
}
} catch (SQLException e) {
System.out.println("Error en la consulta: " + e);
}finally{
if(psmt!=null){
psmt.close();
}
if(rs!=null){
rs.close();
}
con.desconectar();
}
return respuesta;
}
@Override
public List<Empleado> busquedaPorParametro(String field, Object param) throws SQLException {
List<Empleado> listaBusquedaEmpl = new ArrayList<>();
Empleado Empl = (Empleado) param;
int item = Integer.valueOf(field);
String sql = null;
try {
switch (item) {
case 0:
sql = "{CALL bNombreEmpl (?)}";
psmt = con.conectar().prepareStatement(sql);
psmt.setString(1, Empl.getNombreCompleto());
break;
case 1:
sql = "{CALL bRolEmpl (?)}";
psmt = con.conectar().prepareStatement(sql);
psmt.setString(1, Empl.getIdRol());
break;
case 2:
sql = "{CALL bEstadoEmpl (?)}";
psmt = con.conectar().prepareStatement(sql);
psmt.setString(1, Empl.getEstadoz());
break;
case 3:
sql = "{CALL bTodoEmpl ()}";
psmt = con.conectar().prepareStatement(sql);
break;
default:
throw new AssertionError();
}
rs = psmt.executeQuery();
while (rs.next()) {
listaBusquedaEmpl.add(Empleado.load(rs));
}
} catch (Exception e) {
System.out.println("Error em la consulta: "+ e);
}finally{
if(psmt!=null){
psmt.close();
}
if(rs!=null){
rs.close();
}
con.desconectar();
}
return listaBusquedaEmpl;
}
@Override
public List<?> existeUsuario(String usuario, String clave) throws Exception {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
@Override
public String generarCodigo() throws SQLException {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
public Empleado consultaEmpleado(String id) throws SQLException {
List<Empleado> listaEmpleado = new ArrayList<>();
System.out.println("mostrar ide :" + id);
try {
psmt = con.conectar().prepareStatement("{CALL consultarEmpl(?)}");
psmt.setString(1, id);
rs = psmt.executeQuery();
while (rs.next()) {
listaEmpleado.add(Empleado.load(rs));
}
// for (Proveedor proveedor : listaProveedor) {
// System.out.println("Valor : " + proveedor.toString() );
// }
} catch (Exception e) {
System.out.println("Error en la consulta Empl: " + e);
}finally{
if(psmt!=null){
psmt.close();
}
if(rs!=null){
rs.close();
}
con.desconectar();
}
return listaEmpleado.get(0);
}
}
| [
"Estudiante@S306018"
] | Estudiante@S306018 |
6a483f2fe931e33e8c5756c89f1b080ffc99abc6 | 3cd2c8d07025c2e7b937cb489d5e8e5c7222358b | /IES-RI-USA/src/main/java/com/usa/ri/gov/ies/admin/service/AdminService.java | c57d2a5bb87e243101df2d115e2717ebcbd3c6b6 | [] | no_license | OmprakashSolanki/IES | fd7fd561b8f3205030731cfa5515ad55c94cecf4 | ce815094076ea6a053e28c3aefa50ec38d46e0c6 | refs/heads/master | 2020-05-14T15:22:11.811829 | 2019-04-26T06:36:17 | 2019-04-26T06:36:17 | 181,852,132 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 894 | java | package com.usa.ri.gov.ies.admin.service;
import java.util.List;
import com.usa.ri.gov.ies.admin.model.AppAccount;
import com.usa.ri.gov.ies.admin.model.PlanDetails;
public interface AdminService {
public boolean registerAppAccount(AppAccount accModel);
public String checkDuplicateEmail(String email);
public List<AppAccount> findAllAccounts();
public boolean updateActiveSw(int accId, String activeSw);
public AppAccount findByAccountId(String accId);
boolean editAppAccount(AppAccount accModel);
public boolean createPlan(PlanDetails planDetails);
public String checkDuplicatePlan(String plan);
public List<PlanDetails> findAllPlans();
public boolean updatePlanActiveSw(int planId, String activeSw);
public PlanDetails findPlanById(int planId);
public boolean editPlan(PlanDetails planDetails);
public String appAccountLogin(String email, String pwd);
}
| [
"[email protected]"
] | |
125f0610401f875132171472bdc87e0772f670e9 | 81404aa3ded8aad72449c4ae037268b48d1bf533 | /src/main/java/org/afdemp/wellness/ServletInitializer.java | bd49c38a45cad0bdb1cbc0e060bf1f0c63aea0fc | [
"MIT"
] | permissive | christosponirakos/Group-Project | bc77b91a4da71e8c695a72cbb636c97e7aaf05ef | c36a44aa34ea63129c728c89bcd823e3868c8799 | refs/heads/master | 2023-02-15T15:33:57.164100 | 2021-01-11T09:39:15 | 2021-01-11T09:39:15 | 263,682,209 | 1 | 0 | MIT | 2021-01-11T09:38:40 | 2020-05-13T16:18:12 | Java | UTF-8 | Java | false | false | 411 | java | package org.afdemp.wellness;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
public class ServletInitializer extends SpringBootServletInitializer {
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
return application.sources(WellnessApplication.class);
}
}
| [
"[email protected]"
] | |
01b11cdcc133f6fa89dc359c5fcbd285bfbb816d | 4ce931723cd7193adf675ce9a6dd80b6cdae93a1 | /src/main/java/com/study/hadoop/MyWordCountReducer.java | 5e572521b91655290dbedeb8cc4e3e583797a1f0 | [] | no_license | pero-gve/study | d447a38f70df0834734f44ac9556a2603dc53e56 | 5a3b540d0eb8c4ccebaaa1e161e19bb7425acc90 | refs/heads/master | 2023-02-19T14:10:39.519189 | 2020-04-06T08:46:35 | 2020-04-06T08:46:35 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 614 | java | package com.study.hadoop;
import java.io.IOException;
import org.apache.hadoop.io.LongWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Reducer;
public class MyWordCountReducer extends Reducer<Text, LongWritable, Text, LongWritable>{
@Override
protected void reduce(Text key, Iterable<LongWritable> values,
Reducer<Text, LongWritable, Text, LongWritable>.Context context) throws IOException, InterruptedException {
Long count = 0l;
for(LongWritable value : values){
count += value.get();
}
context.write(key, new LongWritable(count));
}
}
| [
"[email protected]"
] | |
54b8af5269601b8a1b716601136f063af767bb66 | f4b79db15e073091dbf23fabccad58143b5ffee5 | /ispyb-ejb/src/main/java/ispyb/server/mx/services/ws/rest/autoprocessingintegration/AutoProcessingIntegrationServiceLocal.java | 07aa4809148bcefccabc6846abf3c1242e89b88c | [] | no_license | ispyb/ISPyB | 9686eaa6dbe38ac1379df9555a73e1733f345060 | df575d39c9a7bfbb313d6e6edd22ebf8cfae235d | refs/heads/master | 2023-08-09T04:21:02.170113 | 2023-07-24T07:59:05 | 2023-07-24T07:59:05 | 79,993,897 | 10 | 33 | null | 2023-07-24T08:04:04 | 2017-01-25T07:51:06 | Java | UTF-8 | Java | false | false | 1,250 | java | /*************************************************************************************************
* This file is part of ISPyB.
*
* ISPyB is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ISPyB is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with ISPyB. If not, see <http://www.gnu.org/licenses/>.
*
* Contributors : S. Delageniere, R. Leal, L. Launer, K. Levik, S. Veyrier, P. Brenchereau, M. Bodin, A. De Maria Antolinos
****************************************************************************************************/
package ispyb.server.mx.services.ws.rest.autoprocessingintegration;
import javax.ejb.Local;
@Local
public interface AutoProcessingIntegrationServiceLocal extends AutoProcessingIntegrationService {
}
| [
"[email protected]"
] | |
203e824db42c52e453c5f94b5e9957c02e6d2eb6 | 8b74b5a6de25989fc19297c45fef2a8fa0ad94f3 | /General Store Java/src/GUI/Controller.java | 921c1b06a6a2dd8ef54c7cf456fcc0b2623aad51 | [] | no_license | qasimraheem/Semester-3-Main-Project | e3289b330d5bdb2d50c6441b5fc0fd5c7a5cb5fb | 2e8745e8a48ce72206a8d78d941d29fb67c59bc9 | refs/heads/master | 2021-04-15T07:19:04.890397 | 2018-08-02T06:06:03 | 2018-08-02T06:06:03 | 126,844,895 | 4 | 0 | null | null | null | null | UTF-8 | Java | false | false | 78,523 | java | package GUI;
import BillAPI.Bill_Data;
import BillAPI.Bill_Get;
import BillAPI.Bill_Post;
import BillAPI.Bill_ProductData;
import EmployeeAPI.Employee_Data;
import EmployeeAPI.Employee_Get;
import EmployeeAPI.Employee_Post;
import EmployeeAPI.Employee_Put;
import billClasses.BillDetail_Table;
import billClasses.Bill_Table;
import com.sun.javafx.tools.resource.ConsolidatedResources;
import javafx.beans.InvalidationListener;
import de.jensd.fx.glyphs.fontawesome.FontAwesomeIconView;
import javafx.scene.image.Image;
import saleClasses.*;
import java.io.File;
import java.net.URL;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.ResourceBundle;
import javafx.fxml.FXML;
import javafx.scene.control.Label;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TableView;
import javafx.scene.control.TextField;
import javafx.scene.image.ImageView;
import javafx.scene.input.KeyEvent;
import javafx.scene.input.MouseEvent;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.scene.shape.SVGPath;
import javafx.scene.web.WebView;
import javafx.collections.ListChangeListener;
import javafx.collections.ObservableArray;
import javafx.collections.ObservableList;
import javafx.collections.FXCollections;
import javafx.collections.transformation.FilteredList;
import javafx.collections.transformation.SortedList;
import de.jensd.fx.glyphs.fontawesome.FontAwesomeIconView;
import javafx.stage.FileChooser;
import javafx.collections.transformation.FilteredList;
import javafx.scene.control.TableCell;
import javafx.scene.control.MenuButton;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TableView;
import javafx.scene.control.TextField;
import javafx.scene.control.TextField;
import javafx.scene.control.cell.PropertyValueFactory;
import javafx.scene.image.ImageView;
import javafx.scene.layout.Border;
import javafx.scene.layout.BorderStroke;
import productAPI.Data;
import productAPI.Get;
import productClasses.*;
import java.net.URL;
import java.util.ResourceBundle;
import javafx.fxml.FXML;
import javafx.scene.control.Label;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TableView;
import javafx.scene.control.TextField;
import javafx.scene.image.ImageView;
import javafx.scene.input.KeyEvent;
import javafx.scene.input.MouseEvent;
import javafx.scene.layout.AnchorPane;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.scene.shape.SVGPath;
import javafx.scene.web.WebView;
import productAPI.*;
import java.util.Random;
import javafx.application.Application;
import javafx.beans.property.SimpleBooleanProperty;
import javafx.beans.property.SimpleIntegerProperty;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.value.ObservableValue;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.chart.XYChart;
import javafx.scene.control.Button;
import javafx.scene.control.ContentDisplay;
import javafx.scene.control.TableCell;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TableView;
import javafx.scene.control.TextField;
import javafx.scene.control.cell.PropertyValueFactory;
import javafx.scene.input.KeyCode;
import javafx.scene.input.KeyEvent;
import javafx.stage.Stage;
import javafx.util.Callback;
import javafx.scene.web.WebView;
import javafx.fxml.FXML;
import javafx.scene.input.MouseEvent;
import javafx.scene.layout.VBox;
import javafx.scene.shape.SVGPath;
import javafx.scene.layout.HBox;
import javafx.scene.layout.*;
import javafx.scene.paint.Color;
import javafx.scene.*;
import javafx.fxml.LoadException;
import java.awt.*;
//import java.awt.event.KeyEvent;
import java.net.URL;
import java.util.*;
import java.util.List;
import java.util.function.Predicate;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.effect.ColorAdjust;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.web.WebEngine;
import javafx.scene.control.*;
import saleClasses.SaleSearch_Table;
import javax.lang.model.type.NullType;
import javax.xml.stream.Location;
public class Controller implements Initializable {
@FXML
private HBox employeeButton;
@FXML
private SVGPath customerIcon;
@FXML
private SVGPath billIcon;
@FXML
private Label customerText;
@FXML
private AnchorPane anchorSale;
@FXML
private AnchorPane anchorAddProduct;
@FXML
private AnchorPane anchorProduct;
@FXML
private AnchorPane anchorBills;
@FXML
private AnchorPane anchorEmployee;
@FXML
private AnchorPane anchorLogin;
@FXML
private WebView Employee_Image_Web;
@FXML
private WebView CanvasWeb;
public HBox productButtoN;
@FXML
private HBox dashboardButton;
@FXML
private SVGPath dashboard;
@FXML
private Label dashboardText;
@FXML
private HBox saleButton;
@FXML
private SVGPath saleIcon;
@FXML
private Label saleText;
@FXML
private HBox addproductButton;
@FXML
private SVGPath addproductIcon;
@FXML
private Label addproductText;
@FXML
private SVGPath productButton;
@FXML
private Label productText;
@FXML
private HBox billButton;
@FXML
private Label billText;
@FXML
private VBox vbox;
@FXML
private VBox vboxDeleteProduct;
@FXML
private ImageView productButtonDelete;
@FXML
private ImageView productButtonUpdate;
@FXML
private ImageView productButtonSearch;
@FXML
private ImageView productButtonRefresh;
@FXML
private TableView<productTable> pTableID;
@FXML
private TableColumn<productTable, String> pTableName;
@FXML
private TableColumn<productTable, String> pTableQuantity;
@FXML
private TableColumn<productTable, String> pTableBuyPrice;
@FXML
private TableColumn<productTable, String> pTableSalePrice;
@FXML
private TextField productDeleteName;
@FXML
private TextField productDeleteQuantity;
@FXML
private TextField SaleAddQuantity;
@FXML
private TextField SaleRemoveQuantity;
@FXML
private TextField productDeleteBuyPrice;
@FXML
private TextField productDeleteSalePrice;
@FXML
private ImageView productButtonDeleteTick;
@FXML
private ImageView AddImage;
@FXML
private SVGPath productIcon;
@FXML
private ImageView productButtonDeleteCross;
@FXML
private VBox vboxUpdateProduct;
@FXML
private TextField productUpdateName;
@FXML
private TextField productUpdateQuantity;
@FXML
private TextField productUpdateBuyPrice;
@FXML
private TextField productUpdateSalePrice;
@FXML
private TextField productUpdateNewName;
@FXML
private TextField productUpdateNewQuantity;
@FXML
private TextField productUpdateNewBuyPrice;
@FXML
private TextField productUpdateNewSalePrice;
@FXML
private ImageView productButtonUpdateTick;
@FXML
private ImageView productButtonUpdateCross;
@FXML
private VBox vboxSearchProduct;
@FXML
private VBox Product;
@FXML
private TextField productSearchName;
@FXML
private TextField productSearchQuantity;
@FXML
private TextField productSearchBuyPrice;
@FXML
private TextField productSearchSalePrice;
@FXML
private ImageView productButtonSearchTick;
@FXML
private ImageView productButtonSearchCross;
@FXML
private VBox AddProduct;
@FXML
private TextField AddProductName;
@FXML
private TextField AddProductQuantity;
@FXML
private TextField AddProductBuyPrice;
@FXML
private TextField AddProductSalePrice;
@FXML
private ImageView AddProductTick;
@FXML
private ImageView AddProductCross;
//Extra
@FXML
private ResourceBundle resources;
@FXML
private URL location;
@FXML
private VBox vbox_menu;
@FXML
private VBox Product1;
@FXML
private ImageView SaleTick;
@FXML
private ImageView SaleCross;
@FXML
private ImageView SaleRemove;
@FXML
private TextField SaleSearch;
@FXML
private ImageView SaleAdd;
@FXML
private ImageView SaleRefresh;
@FXML
private VBox Product2;
@FXML
private TableView<SaleSearch_Table> SaleSearchTable;
@FXML
private TableColumn<SaleSearch_Table, String> SaleSearchTableName;
@FXML
private TableColumn<SaleSearch_Table, String> SaleSearchTablePrice;
@FXML
private TableColumn<SaleSearch_Table, String> SaleSearchTableQuantity;
@FXML
private TableView<SaleItems_Table> SaleItemsTable;
@FXML
private TableColumn<SaleItems_Table, String> SaleItemsTableID;
@FXML
private TableColumn<SaleItems_Table, String> SaleItemsTableName;
@FXML
private TableColumn<SaleItems_Table, String> SaleItemsTableQuantity;
@FXML
private TableColumn<SaleItems_Table, String> SaleItemsTablePrice;
@FXML
private TableColumn<SaleItems_Table, String> SaleItemsTablePriceX;
@FXML
private TableView<SaleBill_Table> SaleBillTable;
@FXML
private TableColumn<SaleBill_Table, String> SaleBillTableitems;
@FXML
private TableColumn<SaleBill_Table, String> SaleBillTablePrice;
@FXML
private ImageView productButtonSearch1;
@FXML
private ImageView productButtonUpdateDown;
@FXML
private ImageView productButtonRefresh1;
@FXML
private VBox vboxSearchProduct11;
@FXML
private TextField productSearchName11;
@FXML
private TextField productSearchQuantity11;
@FXML
private TextField productSearchBuyPrice11;
@FXML
private VBox vboxSearchProduct1;
@FXML
private TextField productSearchName1;
@FXML
private TextField productSearchQuantity1;
@FXML
private TextField productSearchBuyPrice1;
@FXML
private ImageView productButtonSearchTick1;
@FXML
private ImageView productButtonSearchCross1;
@FXML
private TextField productSearchName2;
@FXML
private TextField productSearchSalePrice11;
@FXML
private TableView<Bill_Table> BillTable;
@FXML
private TableColumn<Bill_Table, String> BillTableID;
@FXML
private TableColumn<Bill_Table, String> BillTableTotalItems;
@FXML
private TableColumn<Bill_Table, String> BillTableTotalPrice;
@FXML
private TableColumn<Bill_Table, String> BillTableDate;
@FXML
private TableView<BillDetail_Table> BillTableDetait;
@FXML
private TableColumn<BillDetail_Table, String> BillTableName;
@FXML
private TableColumn<BillDetail_Table, String> BillTableQuantity;
@FXML
private TableColumn<BillDetail_Table, String> BillTablePrice;
@FXML
private VBox vboxBillSearch;
@FXML
private VBox vboxEmployeeDiv;
@FXML
private HBox hBoxImageDiv;
@FXML
private ImageView billSearch;
@FXML
private ImageView billrefresh;
@FXML
private ImageView billtick;
@FXML
private ImageView billcross;
@FXML
private TextField billtextid;
@FXML
private TextField billtextitems;
@FXML
private TextField billtextprice;
@FXML
private TextField employeeUsername;
@FXML
private PasswordField employeePassword;
@FXML
private PasswordField employeeconfirm;
@FXML
private TextField employeeImageUrl;
@FXML
private ImageView EmployeeEdit;
@FXML
private ImageView EmployeeNew;
@FXML
private TextField loginuser;
@FXML
private PasswordField loginpassword;
@FXML
private Button loginbutton;
//variables
String tepm_user;
String temp_password;
String temp_Image;
ObservableList<productTable> data;
ObservableList<productTable> data2;
ObservableList<SaleSearch_Table> SaleSearchdata;
ObservableList<SaleItems_Table> SaleItemdata;
ObservableList<SaleItems_Table> SaleItemdata2;
ObservableList<SaleBill_Table> SaleBilldata;
ObservableList<Bill_Table> Billdata;
ObservableList<BillDetail_Table> Billdetaildata;
ObservableList<BillDetail_Table> BillDetaildata;
List<Bill_Data> Billd = new ArrayList<>();
Validations validate = new Validations();
ColorAdjust brightLight = new ColorAdjust(0, 0, .25, 0.25);
//Login
public void Login(MouseEvent event) {
if (event.getSource() == loginbutton) {
System.out.println("login pressed");
try {
List<Employee_Data> d = new ArrayList<>();
d = Employee_Get.get();
System.out.println(d.size());
for (int i = 0; i < d.size(); i++) {
System.out.println(loginuser.getText() + "==" + d.get(i).getUsername() + loginpassword.getText() + "==" + d.get(i).getPassword());
if (loginuser.getText().equals(d.get(i).getUsername()) && loginpassword.getText().equals(d.get(i).getPassword())) {
System.out.println("login");
tepm_user = d.get(i).getUsername();
temp_password = d.get(i).getPassword();
temp_Image = d.get(i).getImage();
anchorLogin.setVisible(false);
}
}
} catch (Exception e) {
e.printStackTrace();
}
}
}
//Side_Menu
public void displayMenu(MouseEvent mouseEvent) {
if (mouseEvent.getSource() == saleButton) {
anchorSale.setVisible(true);
anchorAddProduct.setVisible(false);
anchorProduct.setVisible(false);
anchorBills.setVisible(false);
anchorEmployee.setVisible(false);
//
saleIcon.setFill(Color.valueOf("#FFFFFF"));
saleText.setTextFill(Color.valueOf("#FFFFFF"));
addproductIcon.setFill(Color.valueOf("#FFFFFF"));
addproductText.setTextFill(Color.valueOf("#FFFFFF"));
productIcon.setFill(Color.valueOf("#FFFFFF"));
productText.setTextFill(Color.valueOf("#FFFFFF"));
billIcon.setFill(Color.valueOf("#FFFFFF"));
billText.setTextFill(Color.valueOf("#FFFFFF"));
customerIcon.setFill(Color.valueOf("#FFFFFF"));
customerText.setTextFill(Color.valueOf("#FFFFFF"));
////////////////
saleIcon.setFill(Color.valueOf("#F3C300"));
saleText.setTextFill(Color.valueOf("#F3C300"));
getSaleSearchTableData();
SaleItemdata2 = FXCollections.observableArrayList();
}
if (mouseEvent.getSource() == addproductButton) {
anchorSale.setVisible(false);
anchorAddProduct.setVisible(true);
anchorProduct.setVisible(false);
anchorBills.setVisible(false);
anchorEmployee.setVisible(false);
//
saleIcon.setFill(Color.valueOf("#FFFFFF"));
saleText.setTextFill(Color.valueOf("#FFFFFF"));
addproductIcon.setFill(Color.valueOf("#FFFFFF"));
addproductText.setTextFill(Color.valueOf("#FFFFFF"));
productIcon.setFill(Color.valueOf("#FFFFFF"));
productText.setTextFill(Color.valueOf("#FFFFFF"));
billIcon.setFill(Color.valueOf("#FFFFFF"));
billText.setTextFill(Color.valueOf("#FFFFFF"));
customerIcon.setFill(Color.valueOf("#FFFFFF"));
customerText.setTextFill(Color.valueOf("#FFFFFF"));
////////////////
addproductIcon.setFill(Color.valueOf("#F3C300"));
addproductText.setTextFill(Color.valueOf("#F3C300"));
} else if (mouseEvent.getSource() == productButtoN) {
anchorSale.setVisible(false);
anchorAddProduct.setVisible(false);
anchorProduct.setVisible(true);
anchorBills.setVisible(false);
anchorEmployee.setVisible(false);
//
saleIcon.setFill(Color.valueOf("#FFFFFF"));
saleText.setTextFill(Color.valueOf("#FFFFFF"));
addproductIcon.setFill(Color.valueOf("#FFFFFF"));
addproductText.setTextFill(Color.valueOf("#FFFFFF"));
productIcon.setFill(Color.valueOf("#FFFFFF"));
productText.setTextFill(Color.valueOf("#FFFFFF"));
billIcon.setFill(Color.valueOf("#FFFFFF"));
billText.setTextFill(Color.valueOf("#FFFFFF"));
customerIcon.setFill(Color.valueOf("#FFFFFF"));
customerText.setTextFill(Color.valueOf("#FFFFFF"));
////////////////
productIcon.setFill(Color.valueOf("#F3C300"));
productText.setTextFill(Color.valueOf("#F3C300"));
getProductTableData();
} else if (mouseEvent.getSource() == billButton) {
anchorSale.setVisible(false);
anchorAddProduct.setVisible(false);
anchorProduct.setVisible(false);
anchorBills.setVisible(true);
anchorEmployee.setVisible(false);
//
saleIcon.setFill(Color.valueOf("#FFFFFF"));
saleText.setTextFill(Color.valueOf("#FFFFFF"));
addproductIcon.setFill(Color.valueOf("#FFFFFF"));
addproductText.setTextFill(Color.valueOf("#FFFFFF"));
productIcon.setFill(Color.valueOf("#FFFFFF"));
productText.setTextFill(Color.valueOf("#FFFFFF"));
billIcon.setFill(Color.valueOf("#FFFFFF"));
billText.setTextFill(Color.valueOf("#FFFFFF"));
customerIcon.setFill(Color.valueOf("#FFFFFF"));
customerText.setTextFill(Color.valueOf("#FFFFFF"));
////////////////
billIcon.setFill(Color.valueOf("#F3C300"));
billText.setTextFill(Color.valueOf("#F3C300"));
GetBills();
} else if (mouseEvent.getSource() == employeeButton) {
anchorSale.setVisible(false);
anchorAddProduct.setVisible(false);
anchorProduct.setVisible(false);
anchorBills.setVisible(false);
anchorEmployee.setVisible(true);
//
saleIcon.setFill(Color.valueOf("#FFFFFF"));
saleText.setTextFill(Color.valueOf("#FFFFFF"));
addproductIcon.setFill(Color.valueOf("#FFFFFF"));
addproductText.setTextFill(Color.valueOf("#FFFFFF"));
productIcon.setFill(Color.valueOf("#FFFFFF"));
productText.setTextFill(Color.valueOf("#FFFFFF"));
billIcon.setFill(Color.valueOf("#FFFFFF"));
billText.setTextFill(Color.valueOf("#FFFFFF"));
customerIcon.setFill(Color.valueOf("#FFFFFF"));
customerText.setTextFill(Color.valueOf("#FFFFFF"));
////////////////
customerIcon.setFill(Color.valueOf("#F3C300"));
customerText.setTextFill(Color.valueOf("#F3C300"));
GetEmployee();
SetImages();
}
}
//Sale_page
public void getSaleSearchTableData() {
productAPI.Get gat = new Get();
List<Data> d = new ArrayList<>();
try {
d = Get.get();
System.out.println(d.size());
for (int i = 0; i < d.size(); i++)
System.out.println(d.get(i).getName());
} catch (Exception e) {
e.printStackTrace();
}
SaleSearchdata = FXCollections.observableArrayList();
for (int i = 0; i < d.size(); i++) {
SaleSearchdata.add(new SaleSearch_Table(d.get(i).getName(), d.get(i).getQuantity(), d.get(i).getBuyPrice(), d.get(i).getSellPrice()));
}
SaleSearchTableName.setCellValueFactory(
new PropertyValueFactory<SaleSearch_Table, String>("tName")
);
SaleSearchTablePrice.setCellValueFactory(
new PropertyValueFactory<SaleSearch_Table, String>("tPrice")
);
SaleSearchTableQuantity.setCellValueFactory(
new PropertyValueFactory<SaleSearch_Table, String>("tQuantity")
);
SaleSearchTable.setItems(SaleSearchdata);
}
public void getSaleBillTableData() {
double bill_total = 0;
for (int i = 0; i < SaleItemdata.size(); i++) {
bill_total += Double.parseDouble(SaleItemdata.get(i).gettPriceX());
}
SaleBilldata = FXCollections.observableArrayList();
SaleBilldata.add(new SaleBill_Table(Integer.toString(SaleItemdata.size()), Double.toString(bill_total)));
SaleBillTableitems.setCellValueFactory(
new PropertyValueFactory<SaleBill_Table, String>("tItems")
);
SaleBillTablePrice.setCellValueFactory(
new PropertyValueFactory<SaleBill_Table, String>("tPrice")
);
SaleBillTable.setItems(SaleBilldata);
}
public void SaleButtonsActions(MouseEvent mouseEvent) {
boolean flagquantityremove = true;
boolean flagquantityadd = true;
if (mouseEvent.getSource() == SaleAdd) {
int quantityset = Integer.parseInt(SaleAddQuantity.getText());
int quantitystored = Integer.parseInt(SaleSearchTable.getSelectionModel().getSelectedItem().gettQuantity());
if (quantityset > quantitystored) {
flagquantityadd = false;
}
if (SaleAddQuantity.getText().equalsIgnoreCase("") || validate.getIntValid(SaleAddQuantity.getText()) == 0 ||!validate.getQuantityValid(SaleAddQuantity.getText())|| flagquantityadd == false) {
SaleAddQuantity.setBorder(new Border(new BorderStroke(Color.RED, BorderStrokeStyle.SOLID, new CornerRadii(2), new BorderWidths(0, 0, 2, 0))));
} else if (SaleSearchTable.getSelectionModel().isEmpty()) {
System.out.println("SaleAddempty");
} else {
boolean flagfind = false;
SaleItemdata = FXCollections.observableArrayList();
for (int i = 0; i < SaleItemdata2.size(); i++) {
if (SaleItemdata2.get(i).gettName() == SaleSearchTable.getSelectionModel().getSelectedItem().gettName()) {
int id = i + 1;
String ID = Integer.toString(id);
String quantity = Integer.toString(validate.getIntValid(SaleAddQuantity.getText()) + validate.getIntValid(SaleItemdata2.get(i).gettQuantity()));
String PriceX = Double.toString(validate.getDoubleValid(quantity) * validate.getDoubleValid(SaleSearchTable.getSelectionModel().getSelectedItem().gettPrice()));
System.out.println("find" + quantity + PriceX);
try {
Data d = new Data();
Data up = new Data();
String quantityRemain = Integer.toString(validate.getIntValid(SaleSearchTable.getSelectionModel().getSelectedItem().gettQuantity()) - validate.getIntValid(SaleAddQuantity.getText()));
//old data
d.setName(SaleSearchTable.getSelectionModel().getSelectedItem().gettName());
d.setQuantity(SaleSearchTable.getSelectionModel().getSelectedItem().gettQuantity());
d.setBuyPrice(SaleSearchTable.getSelectionModel().getSelectedItem().gettBuyPrice());
d.setSellPrice(SaleSearchTable.getSelectionModel().getSelectedItem().gettPrice());
//new data
up.setName(SaleSearchTable.getSelectionModel().getSelectedItem().gettName());
up.setQuantity(quantityRemain);
up.setSellPrice(SaleSearchTable.getSelectionModel().getSelectedItem().gettPrice());
up.setBuyPrice(SaleSearchTable.getSelectionModel().getSelectedItem().gettBuyPrice());
Put.put(d, up);
} catch (Exception e) {
e.printStackTrace();
}
SaleItemdata.add(new SaleItems_Table(ID, SaleItemdata2.get(i).gettName(), quantity, SaleItemdata2.get(i).gettPrice(), PriceX));
flagfind = true;
} else {
int id = i + 1;
String ID = Integer.toString(id);
SaleItemdata.add(new SaleItems_Table(ID, SaleItemdata2.get(i).gettName(), SaleItemdata2.get(i).gettQuantity(), SaleItemdata2.get(i).gettPrice(), SaleItemdata2.get(i).gettPriceX()));
}
}
if (flagfind == false) {
for (int i = 0; i < 1; i++) {
int id = SaleItemdata.size() + 1;
String ID = Integer.toString(id);
String PriceX = Double.toString(validate.getDoubleValid(SaleAddQuantity.getText()) * validate.getDoubleValid(SaleSearchTable.getSelectionModel().getSelectedItem().gettPrice()));
try {
Data d = new Data();
Data up = new Data();
String quantityRemain = Integer.toString(validate.getIntValid(SaleSearchTable.getSelectionModel().getSelectedItem().gettQuantity()) - validate.getIntValid(SaleAddQuantity.getText()));
//old data
d.setName(SaleSearchTable.getSelectionModel().getSelectedItem().gettName());
d.setQuantity(SaleSearchTable.getSelectionModel().getSelectedItem().gettQuantity());
d.setBuyPrice(SaleSearchTable.getSelectionModel().getSelectedItem().gettBuyPrice());
d.setSellPrice(SaleSearchTable.getSelectionModel().getSelectedItem().gettPrice());
//new data
up.setName(SaleSearchTable.getSelectionModel().getSelectedItem().gettName());
up.setQuantity(quantityRemain);
up.setSellPrice(SaleSearchTable.getSelectionModel().getSelectedItem().gettPrice());
up.setBuyPrice(SaleSearchTable.getSelectionModel().getSelectedItem().gettBuyPrice());
Put.put(d, up);
} catch (Exception e) {
e.printStackTrace();
}
SaleItemdata.add(new SaleItems_Table(ID, SaleSearchTable.getSelectionModel().getSelectedItem().gettName(), SaleAddQuantity.getText(), SaleSearchTable.getSelectionModel().getSelectedItem().gettPrice(), PriceX));
// System.out.println(ID+SaleSearchTable.getSelectionModel().getSelectedItem().gettName()+" "+SaleSearchTable.getSelectionModel().getSelectedItem().gettPrice());
}
}
SaleItemsTableID.setCellValueFactory(
new PropertyValueFactory<SaleItems_Table, String>("tID")
);
SaleItemsTableName.setCellValueFactory(
new PropertyValueFactory<SaleItems_Table, String>("tName")
);
SaleItemsTableQuantity.setCellValueFactory(
new PropertyValueFactory<SaleItems_Table, String>("tQuantity")
);
SaleItemsTablePrice.setCellValueFactory(
new PropertyValueFactory<SaleItems_Table, String>("tPrice")
);
SaleItemsTablePriceX.setCellValueFactory(
new PropertyValueFactory<SaleItems_Table, String>("tPriceX")
);
SaleItemsTable.setItems(SaleItemdata);
SaleItemdata2 = SaleItemdata;
SaleAddQuantity.setText("");
getSaleBillTableData();
getSaleSearchTableData();
}
}
if (mouseEvent.getSource() == SaleRefresh) {
getSaleSearchTableData();
}
if (mouseEvent.getSource() == SaleRemove) {
String name11 = SaleItemsTable.getSelectionModel().getSelectedItem().gettName();
String name22;
for (int j = 0; j < SaleSearchdata.size(); j++) {
name22 = SaleSearchdata.get(j).gettName();
System.out.println(name11 + "=" + name22);
if (name11.equals(name22)) {
int setquantity = validate.getIntValid(SaleRemoveQuantity.getText());
int storedquantity = validate.getIntValid(SaleItemsTable.getSelectionModel().getSelectedItem().gettQuantity());
if (setquantity > storedquantity) {
flagquantityremove = false;
}
}
}
if (SaleRemoveQuantity.getText().equalsIgnoreCase("") || validate.getIntValid(SaleRemoveQuantity.getText()) == 0 || flagquantityremove == false||!validate.getQuantityValid(SaleAddQuantity.getText())) {
SaleRemoveQuantity.setBorder(new Border(new BorderStroke(Color.RED, BorderStrokeStyle.SOLID, new CornerRadii(2), new BorderWidths(0, 0, 2, 0))));
} else if (SaleItemsTable.getSelectionModel().isEmpty()) {
System.out.println("Empyt");
} else {
boolean flagfind = false;
SaleItemdata = FXCollections.observableArrayList();
boolean flagid = false;
int id_reverse = 0;
for (int i = 0; i < SaleItemdata2.size(); i++) {
int id = i + 1;
if (flagid == true) {
for (int j = 0; j < id_reverse; j++) {
id = id - 1;
}
}
String ID = Integer.toString(id);
if (SaleItemdata2.get(i).gettName() == SaleItemsTable.getSelectionModel().getSelectedItem().gettName()) {
String quantity = Integer.toString(validate.getIntValid(SaleItemdata2.get(i).gettQuantity()) - validate.getIntValid(SaleRemoveQuantity.getText()));
try {
System.out.println("in try");
Data d = new Data();
Data up = new Data();
//old data
String name1 = SaleItemsTable.getSelectionModel().getSelectedItem().gettName();
String name2;
for (int j = 0; j < SaleSearchdata.size(); j++) {
name2 = SaleSearchdata.get(j).gettName();
System.out.println(name1 + "=" + name2);
if (name1.equals(name2)) {
System.out.println("error");
int prevoiusquantity = validate.getIntValid(SaleSearchdata.get(j).gettQuantity());
int newquantity = validate.getIntValid(SaleRemoveQuantity.getText());
newquantity = prevoiusquantity + newquantity;
String quantityRemain = Integer.toString(newquantity);
System.out.println("remain quantity" + quantityRemain);
d.setName(SaleItemsTable.getSelectionModel().getSelectedItem().gettName());
d.setQuantity(SaleSearchdata.get(j).gettQuantity());
d.setBuyPrice(SaleSearchdata.get(j).gettBuyPrice());
d.setSellPrice(SaleSearchdata.get(j).gettPrice());
//new data
up.setName(SaleSearchdata.get(j).gettName());
up.setQuantity(quantityRemain);
up.setSellPrice(SaleSearchdata.get(j).gettPrice());
up.setBuyPrice(SaleSearchdata.get(j).gettBuyPrice());
} else {
System.out.println("not found" + j);
}
}
Put.put(d, up);
} catch (Exception e) {
e.printStackTrace();
}
if (quantity == "0" || validate.getIntValid(quantity) <= 0) {
// SaleItemdata2.remove(i);
id_reverse++;
flagid = true;
} else {
String PriceX = Double.toString(validate.getDoubleValid(quantity) * validate.getDoubleValid(SaleItemsTable.getSelectionModel().getSelectedItem().gettPrice()));
System.out.println("find" + quantity + PriceX);
SaleItemdata.add(new SaleItems_Table(ID, SaleItemdata2.get(i).gettName(), quantity, SaleItemdata2.get(i).gettPrice(), PriceX));
flagfind = true;
}
} else {
SaleItemdata.add(new SaleItems_Table(ID, SaleItemdata2.get(i).gettName(), SaleItemdata2.get(i).gettQuantity(), SaleItemdata2.get(i).gettPrice(), SaleItemdata2.get(i).gettPriceX()));
}
}
SaleItemsTableID.setCellValueFactory(
new PropertyValueFactory<SaleItems_Table, String>("tID")
);
SaleItemsTableName.setCellValueFactory(
new PropertyValueFactory<SaleItems_Table, String>("tName")
);
SaleItemsTableQuantity.setCellValueFactory(
new PropertyValueFactory<SaleItems_Table, String>("tQuantity")
);
SaleItemsTablePrice.setCellValueFactory(
new PropertyValueFactory<SaleItems_Table, String>("tPrice")
);
SaleItemsTablePriceX.setCellValueFactory(
new PropertyValueFactory<SaleItems_Table, String>("tPriceX")
);
SaleItemsTable.setItems(SaleItemdata);
SaleItemdata2 = SaleItemdata;
SaleRemoveQuantity.setText("");
getSaleBillTableData();
getSaleSearchTableData();
}
}
if (mouseEvent.getSource() == SaleCross) {
for (int i = 0; i < SaleItemsTable.getItems().size(); i++) {
SaleItemsTable.getItems().clear();
}
SaleItemdata = FXCollections.observableArrayList();
SaleItemdata2 = SaleItemdata;
getSaleBillTableData();
}
if (mouseEvent.getSource() == SaleTick && (validate.getIntValid(SaleBilldata.get(0).gettItems()) > 0)) {
try {
Bill_Data data = new Bill_Data();
data.setBillid("tahseen");
data.setTotalitems(SaleBilldata.get(0).gettItems());
data.setTotalprice(SaleBilldata.get(0).gettPrice());
DateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
Date date = new Date();
System.out.println(dateFormat.format(date));
data.setDate(dateFormat.format(date));
List<Bill_ProductData> billProductData = new ArrayList<>();
Bill_ProductData[] b = new Bill_ProductData[SaleItemdata2.size()];
for (int i = 0; i < SaleItemdata2.size(); i++) {
b[i] = new Bill_ProductData(SaleItemdata2.get(i).gettName(), SaleItemdata2.get(i).gettQuantity(), SaleItemdata2.get(i).gettPriceX(), SaleItemdata2.get(i).gettPrice());
billProductData.add(b[i]);
}
data.setProductData(billProductData);
Bill_Post.post(data);
} catch (Exception e) {
e.printStackTrace();
}
SaleItemdata2.clear();
SaleItemsTable.setItems(SaleItemdata2);
SaleBilldata.clear();
SaleBillTable.setItems(SaleBilldata);
}
}
//Add_Product
public void AddProduct(MouseEvent mouseEvent) {
if (mouseEvent.getSource() == AddProductCross) {
AddProductName.setText("");
AddProductQuantity.setText("");
AddProductBuyPrice.setText("");
AddProductSalePrice.setText("");
}
if (mouseEvent.getSource() == AddProductTick) {
boolean lockUpdate1 = false, lockUpdate2 = false, lockUpdate3 = false, lockUpdate4 = false;
if (AddProductName.getText().equalsIgnoreCase("")) {
AddProductName.setBorder(new Border(new BorderStroke(Color.RED, BorderStrokeStyle.SOLID, new CornerRadii(2), new BorderWidths(0, 0, 2, 0))));
lockUpdate1 = true;
} else {
AddProductName.setBorder(new Border(new BorderStroke(Color.WHITE, BorderStrokeStyle.SOLID, new CornerRadii(2), new BorderWidths(0, 0, 2, 0))));
}
if (AddProductQuantity.getText().equalsIgnoreCase("") || (validate.getDoubleValid(AddProductQuantity.getText()) == 0)) {
AddProductQuantity.setBorder(new Border(new BorderStroke(Color.RED, BorderStrokeStyle.SOLID, new CornerRadii(2), new BorderWidths(0, 0, 2, 0))));
lockUpdate2 = true;
} else {
AddProductQuantity.setBorder(new Border(new BorderStroke(Color.WHITE, BorderStrokeStyle.SOLID, new CornerRadii(2), new BorderWidths(0, 0, 2, 0))));
}
if (AddProductBuyPrice.getText().equalsIgnoreCase("") || (validate.getDoubleValid(AddProductBuyPrice.getText()) == 0)) {
AddProductBuyPrice.setBorder(new Border(new BorderStroke(Color.RED, BorderStrokeStyle.SOLID, new CornerRadii(2), new BorderWidths(0, 0, 2, 0))));
lockUpdate3 = true;
} else {
AddProductBuyPrice.setBorder(new Border(new BorderStroke(Color.WHITE, BorderStrokeStyle.SOLID, new CornerRadii(2), new BorderWidths(0, 0, 2, 0))));
}
if (AddProductSalePrice.getText().equalsIgnoreCase("") || (validate.getDoubleValid(AddProductSalePrice.getText()) == 0)) {
AddProductSalePrice.setBorder(new Border(new BorderStroke(Color.RED, BorderStrokeStyle.SOLID, new CornerRadii(2), new BorderWidths(0, 0, 2, 0))));
lockUpdate4 = true;
} else {
AddProductSalePrice.setBorder(new Border(new BorderStroke(Color.WHITE, BorderStrokeStyle.SOLID, new CornerRadii(2), new BorderWidths(0, 0, 2, 0))));
}
if ((lockUpdate1 == false) && (lockUpdate2 == false) && (lockUpdate3 == false) && (lockUpdate4 == false)) {
Data d = new Data();
d.setName(AddProductName.getText());
d.setQuantity(AddProductQuantity.getText());
d.setBuyPrice(AddProductBuyPrice.getText());
d.setSellPrice(AddProductSalePrice.getText());
AddProductName.setText("");
AddProductQuantity.setText("");
AddProductBuyPrice.setText("");
AddProductSalePrice.setText("");
try {
Post.post(d);
} catch (Exception e) {
e.printStackTrace();
}
}
}
}
//Product
public void getProductTableData() {
productAPI.Get gat = new Get();
List<Data> d = new ArrayList<>();
try {
d = Get.get();
System.out.println(d.size());
for (int i = 0; i < d.size(); i++)
System.out.println(d.get(i).getName());
} catch (Exception e) {
e.printStackTrace();
}
data = FXCollections.observableArrayList();
for (int i = 0; i < d.size(); i++) {
data.add(new productTable(d.get(i).getName(), d.get(i).getQuantity(), d.get(i).getBuyPrice(), d.get(i).getSellPrice()));
}
// data = FXCollections.observableArrayList(
// new productTable("Jacob", "Smith", "[email protected]", ""),
// new productTable("Isabella", "Johnson", "[email protected]", ""),
// new productTable("Ethan", "Williams", "[email protected]", ""),
// new productTable("Emma", "Jones", "[email protected]", ""),
// new productTable("Michael", "Brown", "[email protected]", ""),
// new productTable("Michael", "Brown", "[email protected]", ""),
// new productTable("Michael", "Brown", "[email protected]", ""),
// new productTable("Michael", "Brown", "[email protected]", "")
// );
pTableName.setCellValueFactory(
new PropertyValueFactory<productTable, String>("tName")
);
pTableQuantity.setCellValueFactory(
new PropertyValueFactory<productTable, String>("tQuantity")
);
pTableBuyPrice.setCellValueFactory(
new PropertyValueFactory<productTable, String>("tBuyPrice")
);
pTableSalePrice.setCellValueFactory(
new PropertyValueFactory<productTable, String>("tSalePrice")
);
pTableID.setItems(data);
}
public void DeleteProduct(MouseEvent mouseEvent) {
if (mouseEvent.getSource() == productButtonDelete && (pTableID.getSelectionModel().getSelectedItem() != null)) {
productDeleteName.setText(pTableID.getSelectionModel().getSelectedItem().gettName());
productDeleteQuantity.setText(pTableID.getSelectionModel().getSelectedItem().gettQuantity());
productDeleteBuyPrice.setText(pTableID.getSelectionModel().getSelectedItem().gettBuyPrice());
productDeleteSalePrice.setText(pTableID.getSelectionModel().getSelectedItem().gettSalePrice());
vboxDeleteProduct.setVisible(true);
} else if (mouseEvent.getSource() == productButtonDeleteTick && (productDeleteName.getText().equalsIgnoreCase(pTableID.getSelectionModel().getSelectedItem().gettName())) && (productDeleteQuantity.getText().equalsIgnoreCase(pTableID.getSelectionModel().getSelectedItem().gettQuantity())) && (productDeleteBuyPrice.getText().equalsIgnoreCase(pTableID.getSelectionModel().getSelectedItem().gettBuyPrice())) && (productDeleteSalePrice.getText().equalsIgnoreCase(pTableID.getSelectionModel().getSelectedItem().gettSalePrice()))) {
try {
Data d = new Data();
d.setName(pTableID.getSelectionModel().getSelectedItem().gettName());
d.setQuantity(pTableID.getSelectionModel().getSelectedItem().gettQuantity());
d.setBuyPrice(pTableID.getSelectionModel().getSelectedItem().gettBuyPrice());
d.setSellPrice(pTableID.getSelectionModel().getSelectedItem().gettSalePrice());
try {
Delete.delete(d);
} catch (Exception e) {
e.printStackTrace();
}
pTableID.getItems().removeAll(pTableID.getSelectionModel().getSelectedItem());
productDeleteName.setText("");
productDeleteQuantity.setText("");
productDeleteBuyPrice.setText("");
productDeleteSalePrice.setText("");
vboxDeleteProduct.setVisible(false);
} catch (Exception ex) {
System.out.println("Delete Error here!");
System.out.println(pTableID.getSelectionModel().getSelectedItem().gettName() + pTableID.getSelectionModel().getSelectedItem().gettQuantity());
Data d = new Data();
d.setName(pTableID.getSelectionModel().getSelectedItem().gettName());
d.setQuantity(pTableID.getSelectionModel().getSelectedItem().gettQuantity());
d.setBuyPrice(pTableID.getSelectionModel().getSelectedItem().gettBuyPrice());
d.setSellPrice(pTableID.getSelectionModel().getSelectedItem().gettSalePrice());
try {
Delete.delete(d);
} catch (Exception e) {
e.printStackTrace();
}
productDeleteName.setText("");
productDeleteQuantity.setText("");
productDeleteBuyPrice.setText("");
productDeleteSalePrice.setText("");
vboxDeleteProduct.setVisible(false);
getProductTableData();
}
} else if (mouseEvent.getSource() == productButtonDeleteCross) {
vboxDeleteProduct.setVisible(false);
}
}
public void UpdateProduct(MouseEvent mouseEvent) {
if (mouseEvent.getSource() == productButtonUpdate && (pTableID.getSelectionModel().getSelectedItem() != null)) {
productUpdateName.setText(pTableID.getSelectionModel().getSelectedItem().gettName());
productUpdateQuantity.setText(pTableID.getSelectionModel().getSelectedItem().gettQuantity());
productUpdateBuyPrice.setText(pTableID.getSelectionModel().getSelectedItem().gettBuyPrice());
productUpdateSalePrice.setText(pTableID.getSelectionModel().getSelectedItem().gettSalePrice());
vboxUpdateProduct.setVisible(true);
productUpdateNewQuantity.setBorder(new Border(new BorderStroke(Color.WHITE, BorderStrokeStyle.SOLID, new CornerRadii(0), new BorderWidths(0, 0, 2, 0))));
productUpdateNewBuyPrice.setBorder(new Border(new BorderStroke(Color.WHITE, BorderStrokeStyle.SOLID, new CornerRadii(0), new BorderWidths(0, 0, 2, 0))));
productUpdateNewSalePrice.setBorder(new Border(new BorderStroke(Color.WHITE, BorderStrokeStyle.SOLID, new CornerRadii(0), new BorderWidths(0, 0, 2, 0))));
productUpdateNewName.setBorder(new Border(new BorderStroke(Color.WHITE, BorderStrokeStyle.SOLID, new CornerRadii(0), new BorderWidths(0, 0, 2, 0))));
} else if (mouseEvent.getSource() == productButtonUpdateTick && (productUpdateName.getText().equalsIgnoreCase(pTableID.getSelectionModel().getSelectedItem().gettName())) && (productUpdateQuantity.getText().equalsIgnoreCase(pTableID.getSelectionModel().getSelectedItem().gettQuantity())) && (productUpdateBuyPrice.getText().equalsIgnoreCase(pTableID.getSelectionModel().getSelectedItem().gettBuyPrice())) && (productUpdateSalePrice.getText().equalsIgnoreCase(pTableID.getSelectionModel().getSelectedItem().gettSalePrice()))) {
boolean lockUpdate1 = false, lockUpdate2 = false, lockUpdate3 = false, lockUpdate4 = false;
if (productUpdateNewName.getText().equalsIgnoreCase("")) {
productUpdateNewName.setBorder(new Border(new BorderStroke(Color.RED, BorderStrokeStyle.SOLID, new CornerRadii(2), new BorderWidths(0, 0, 2, 0))));
lockUpdate1 = true;
} else {
productUpdateNewName.setBorder(new Border(new BorderStroke(Color.WHITE, BorderStrokeStyle.SOLID, new CornerRadii(0), new BorderWidths(0, 0, 2, 0))));
// String css2 = this.getClass().getResource("input.css").toExternalForm();
// productUpdateNewName.getStylesheets().add(css2);
// productUpdateNewName.getStyleClass().add("input");
}
if (productUpdateNewQuantity.getText().equalsIgnoreCase("") || (validate.getDoubleValid(productUpdateNewQuantity.getText()) == 0)) {
productUpdateNewQuantity.setBorder(new Border(new BorderStroke(Color.RED, BorderStrokeStyle.SOLID, new CornerRadii(2), new BorderWidths(0, 0, 2, 0))));
lockUpdate2 = true;
} else {
productUpdateNewQuantity.setBorder(new Border(new BorderStroke(Color.WHITE, BorderStrokeStyle.SOLID, new CornerRadii(0), new BorderWidths(0, 0, 2, 0))));
}
if (productUpdateNewBuyPrice.getText().equalsIgnoreCase("") || (validate.getDoubleValid(productUpdateNewBuyPrice.getText()) == 0)) {
productUpdateNewBuyPrice.setBorder(new Border(new BorderStroke(Color.RED, BorderStrokeStyle.SOLID, new CornerRadii(2), new BorderWidths(0, 0, 2, 0))));
lockUpdate3 = true;
} else {
productUpdateNewBuyPrice.setBorder(new Border(new BorderStroke(Color.WHITE, BorderStrokeStyle.SOLID, new CornerRadii(0), new BorderWidths(0, 0, 2, 0))));
}
if (productUpdateNewSalePrice.getText().equalsIgnoreCase("") || (validate.getDoubleValid(productUpdateNewSalePrice.getText()) == 0)) {
productUpdateNewSalePrice.setBorder(new Border(new BorderStroke(Color.RED, BorderStrokeStyle.SOLID, new CornerRadii(2), new BorderWidths(0, 0, 2, 0))));
lockUpdate4 = true;
} else {
productUpdateNewSalePrice.setBorder(new Border(new BorderStroke(Color.WHITE, BorderStrokeStyle.SOLID, new CornerRadii(0), new BorderWidths(0, 0, 2, 0))));
}
if ((lockUpdate1 == false) && (lockUpdate2 == false) && (lockUpdate3 == false) && (lockUpdate4 == false)) {
Data old_d = new Data();
Data new_d = new Data();
//set old data
old_d.setName(productUpdateName.getText());
old_d.setQuantity(productUpdateQuantity.getText());
old_d.setBuyPrice(productUpdateBuyPrice.getText());
old_d.setSellPrice(productUpdateSalePrice.getText());
//set new data
new_d.setName(productUpdateNewName.getText());
new_d.setQuantity(productUpdateNewQuantity.getText());
new_d.setBuyPrice(productUpdateNewBuyPrice.getText());
new_d.setSellPrice(productUpdateNewSalePrice.getText());
System.out.println(old_d.getName() + old_d.getQuantity() + old_d.getBuyPrice() + old_d.getSellPrice());
System.out.println(new_d.getName() + new_d.getQuantity() + new_d.getBuyPrice() + new_d.getSellPrice());
try {
Put.put(old_d, new_d);
} catch (Exception e) {
e.printStackTrace();
}
pTableID.getSelectionModel().getSelectedItem().settName(productUpdateNewName.getText());
pTableID.getSelectionModel().getSelectedItem().settQuantity(productUpdateNewQuantity.getText());
pTableID.getSelectionModel().getSelectedItem().settBuyPrice(productUpdateNewBuyPrice.getText());
pTableID.getSelectionModel().getSelectedItem().settSalePrice(productUpdateNewSalePrice.getText());
productUpdateName.setText("");
productUpdateQuantity.setText("");
productUpdateBuyPrice.setText("");
productUpdateSalePrice.setText("");
productUpdateNewName.setText("");
productUpdateNewQuantity.setText("");
productUpdateNewBuyPrice.setText("");
productUpdateNewSalePrice.setText("");
vboxUpdateProduct.setVisible(false);
}
} else if (mouseEvent.getSource() == productButtonUpdateCross) {
productUpdateName.setText("");
productUpdateQuantity.setText("");
productUpdateBuyPrice.setText("");
productUpdateSalePrice.setText("");
productUpdateNewName.setText("");
productUpdateNewQuantity.setText("");
productUpdateNewBuyPrice.setText("");
productUpdateNewSalePrice.setText("");
vboxUpdateProduct.setVisible(false);
} else if (mouseEvent.getSource() == productButtonUpdateDown) {
productUpdateNewName.setText(productUpdateName.getText());
productUpdateNewQuantity.setText(productUpdateQuantity.getText());
productUpdateNewBuyPrice.setText(productUpdateBuyPrice.getText());
productUpdateNewSalePrice.setText(productUpdateSalePrice.getText());
}
}
public void SearchProduct(MouseEvent mouseEvent) {
if (mouseEvent.getSource() == productButtonSearch) {
data2 = data;
vboxSearchProduct.setVisible(true);
} else if (mouseEvent.getSource() == productButtonSearchTick) {
vboxSearchProduct.setVisible(false);
} else if (mouseEvent.getSource() == productButtonSearchCross) {
productSearchName.setText("");
productSearchQuantity.setText("");
productSearchBuyPrice.setText("");
productSearchSalePrice.setText("");
pTableID.setItems(data);
vboxSearchProduct.setVisible(false);
}
}
public void SearchProductList(KeyEvent keyEvent) {
SortedList<productTable> sortedData, sortedQuantity, sortedBuyPrice, sortedSalePrice;
if (keyEvent.getSource() == productSearchName) {
FilteredList<productTable> filteredName = new FilteredList<>(data, n -> true);
productSearchName.setOnKeyReleased(n -> {
productSearchName.textProperty().addListener(((observable, oldValue, newValue) -> {
filteredName.setPredicate((Predicate<? super productTable>) data -> {
if (newValue == null || newValue.isEmpty()) {
return true;
}
String lowerCaseFilter = newValue.toLowerCase();
if (data.gettName().toLowerCase().contains(lowerCaseFilter)) {
return true;
}
return false;
});
}));
});
sortedData = new SortedList<>(filteredName);
sortedData.comparatorProperty().bind(pTableID.comparatorProperty());
pTableID.setItems(sortedData);
data = sortedData;
} else if (keyEvent.getSource() == productSearchQuantity) {
FilteredList<productTable> filteredQuantity = new FilteredList<>(data, q -> true);
productSearchQuantity.setOnKeyReleased(q -> {
productSearchQuantity.textProperty().addListener(((observable, oldValue, newValue) -> {
filteredQuantity.setPredicate((Predicate<? super productTable>) data -> {
if (newValue == null || newValue.isEmpty()) {
return true;
}
String lowerCaseFilter = newValue.toLowerCase();
if (data.gettQuantity().toLowerCase().contains(lowerCaseFilter)) {
return true;
}
return false;
});
}));
});
sortedQuantity = new SortedList<>(filteredQuantity);
sortedQuantity.comparatorProperty().bind(pTableID.comparatorProperty());
pTableID.setItems(sortedQuantity);
data = sortedQuantity;
} else if (keyEvent.getSource() == productSearchBuyPrice) {
FilteredList<productTable> filteredBuyPrice = new FilteredList<>(data, b -> true);
productSearchBuyPrice.setOnKeyReleased(b -> {
productSearchBuyPrice.textProperty().addListener(((observable, oldValue, newValue) -> {
filteredBuyPrice.setPredicate((Predicate<? super productTable>) data -> {
if (newValue == null || newValue.isEmpty()) {
return true;
}
String lowerCaseFilter = newValue.toLowerCase();
if (data.gettBuyPrice().toLowerCase().contains(lowerCaseFilter)) {
return true;
}
return false;
});
}));
});
sortedBuyPrice = new SortedList<>(filteredBuyPrice);
sortedBuyPrice.comparatorProperty().bind(pTableID.comparatorProperty());
pTableID.setItems(sortedBuyPrice);
data = sortedBuyPrice;
} else if (keyEvent.getSource() == productSearchSalePrice) {
FilteredList<productTable> filteredSalePrice = new FilteredList<>(data, s -> true);
productSearchSalePrice.setOnKeyReleased(s -> {
productSearchSalePrice.textProperty().addListener(((observable, oldValue, newValue) -> {
filteredSalePrice.setPredicate((Predicate<? super productTable>) data -> {
if (newValue == null || newValue.isEmpty()) {
return true;
}
String lowerCaseFilter = newValue.toLowerCase();
if (data.gettSalePrice().toLowerCase().contains(lowerCaseFilter)) {
return true;
}
return false;
});
}));
});
sortedSalePrice = new SortedList<>(filteredSalePrice);
sortedSalePrice.comparatorProperty().bind(pTableID.comparatorProperty());
pTableID.setItems(sortedSalePrice);
data = sortedSalePrice;
}
}
public void RefreshProduct(MouseEvent mouseEvent) {
if (mouseEvent.getSource() == productButtonRefresh) {
productAPI.Get gat = new Get();
List<Data> d = new ArrayList<>();
try {
d = Get.get();
System.out.println(d.size());
for (int i = 0; i < d.size(); i++)
System.out.println(d.get(i).getName());
} catch (Exception e) {
e.printStackTrace();
}
data = FXCollections.observableArrayList();
for (int i = 0; i < d.size(); i++) {
data.add(new productTable(d.get(i).getName(), d.get(i).getQuantity(), d.get(i).getBuyPrice(), d.get(i).getSellPrice()));
}
pTableName.setCellValueFactory(
new PropertyValueFactory<productTable, String>("tName")
);
pTableQuantity.setCellValueFactory(
new PropertyValueFactory<productTable, String>("tQuantity")
);
pTableBuyPrice.setCellValueFactory(
new PropertyValueFactory<productTable, String>("tBuyPrice")
);
pTableSalePrice.setCellValueFactory(
new PropertyValueFactory<productTable, String>("tSalePrice")
);
pTableID.setItems(data);
}
}
//Bills
public void GetBills() {
try {
Billd = Bill_Get.get();
System.out.println(Billd.size());
for (int i = 0; i < Billd.size(); i++)
System.out.println(Billd.get(0).getProductData().get(0).getQuantity());
} catch (Exception e) {
e.printStackTrace();
}
Billdata = FXCollections.observableArrayList();
Billdetaildata = FXCollections.observableArrayList();
for (int i = 0; i < Billd.size(); i++) {
for (int j = 0; j < Billd.get(i).getProductData().size(); j++) {
Billdetaildata.add(new BillDetail_Table(Billd.get(i).getProductData().get(j).getName(), Billd.get(i).getProductData().get(j).getQuantity(), Billd.get(i).getProductData().get(j).getSellPrice()));
}
Billdata.add(new Bill_Table(Billd.get(i).getBillid(), Billd.get(i).getTotalitems(), Billd.get(i).getTotalprice(), Billd.get(i).getDate(), Billdetaildata));
}
BillTableID.setCellValueFactory(
new PropertyValueFactory<Bill_Table, String>("tBillId")
);
BillTableTotalItems.setCellValueFactory(
new PropertyValueFactory<Bill_Table, String>("tTotalItems")
);
BillTableTotalPrice.setCellValueFactory(
new PropertyValueFactory<Bill_Table, String>("tTotalPrice")
);
BillTableDate.setCellValueFactory(
new PropertyValueFactory<Bill_Table, String>("tDate")
);
BillTable.setItems(Billdata);
}
public void GetBillsDetail(MouseEvent mouseEvent) {
int index = BillTable.getSelectionModel().getSelectedIndex();
System.out.println("index" + index);
System.out.println("size" + Billd.get(index).getProductData().size());
BillDetaildata = FXCollections.observableArrayList();
for (int j = 0; j < Billd.get(index).getProductData().size(); j++) {
BillDetaildata.add(new BillDetail_Table(Billd.get(index).getProductData().get(j).getName(), Billd.get(index).getProductData().get(j).getQuantity(), Billd.get(index).getProductData().get(j).getSellPrice()));
}
BillTableName.setCellValueFactory(
new PropertyValueFactory<BillDetail_Table, String>("tName")
);
BillTableQuantity.setCellValueFactory(
new PropertyValueFactory<BillDetail_Table, String>("tQuantity")
);
BillTablePrice.setCellValueFactory(
new PropertyValueFactory<BillDetail_Table, String>("tPrice")
);
BillTableDetait.setItems(BillDetaildata);
}
public void SearchBillList(KeyEvent keyEvent) {
SortedList<Bill_Table> sortedBillId, sortedBillItems, sortedBillPrice, sortedBillDate;
if (keyEvent.getSource() == billtextid) {
FilteredList<Bill_Table> filteredBillId = new FilteredList<>(Billdata, n -> true);
billtextid.setOnKeyReleased(n -> {
billtextid.textProperty().addListener(((observable, oldValue, newValue) -> {
filteredBillId.setPredicate((Predicate<? super Bill_Table>) Billdata -> {
if (newValue == null || newValue.isEmpty()) {
return true;
}
String lowerCaseFilter = newValue.toLowerCase();
if (Billdata.gettBillId().toLowerCase().contains(lowerCaseFilter)) {
return true;
}
return false;
});
}));
});
sortedBillId = new SortedList<>(filteredBillId);
sortedBillId.comparatorProperty().bind(BillTable.comparatorProperty());
BillTable.setItems(sortedBillId);
Billdata = sortedBillId;
} else if (keyEvent.getSource() == billtextitems) {
FilteredList<Bill_Table> filteredBillItems = new FilteredList<>(Billdata, q -> true);
billtextitems.setOnKeyReleased(q -> {
billtextitems.textProperty().addListener(((observable, oldValue, newValue) -> {
filteredBillItems.setPredicate((Predicate<? super Bill_Table>) Billdata -> {
if (newValue == null || newValue.isEmpty()) {
return true;
}
String lowerCaseFilter = newValue.toLowerCase();
if (Billdata.gettTotalItems().toLowerCase().contains(lowerCaseFilter)) {
return true;
}
return false;
});
}));
});
sortedBillItems = new SortedList<>(filteredBillItems);
sortedBillItems.comparatorProperty().bind(BillTable.comparatorProperty());
BillTable.setItems(sortedBillItems);
Billdata = sortedBillItems;
} else if (keyEvent.getSource() == billtextprice) {
FilteredList<Bill_Table> filteredBillprice = new FilteredList<>(Billdata, b -> true);
billtextprice.setOnKeyReleased(b -> {
billtextprice.textProperty().addListener(((observable, oldValue, newValue) -> {
filteredBillprice.setPredicate((Predicate<? super Bill_Table>) Billdata -> {
if (newValue == null || newValue.isEmpty()) {
return true;
}
String lowerCaseFilter = newValue.toLowerCase();
if (Billdata.gettTotalPrice().toLowerCase().contains(lowerCaseFilter)) {
return true;
}
return false;
});
}));
});
sortedBillPrice = new SortedList<>(filteredBillprice);
sortedBillPrice.comparatorProperty().bind(BillTable.comparatorProperty());
BillTable.setItems(sortedBillPrice);
Billdata = sortedBillPrice;
}
}
public void BillButtons(MouseEvent mouseEvent) {
if (mouseEvent.getSource() == billSearch) {
vboxBillSearch.setVisible(true);
}
if (mouseEvent.getSource() == billrefresh) {
GetBills();
}
if (mouseEvent.getSource() == billtick) {
vboxBillSearch.setVisible(false);
}
if (mouseEvent.getSource() == billcross) {
billtextid.setText("");
billtextitems.setText("");
billtextprice.setText("");
vboxBillSearch.setVisible(false);
}
}
//Employees
public void GetEmployee() {
try {
List<Employee_Data> d = new ArrayList<>();
d = Employee_Get.get();
System.out.println(d.size());
for (int i = 0; i < d.size(); i++) {
if (tepm_user.equals(d.get(i).getUsername()) && temp_password.equals(d.get(i).getPassword())) {
employeeUsername.setText(d.get(i).getUsername());
employeePassword.setText(d.get(i).getPassword());
employeeImageUrl.setText(d.get(i).getImage());
}
}
} catch (Exception e) {
e.printStackTrace();
}
}
public void SetImages() {
String imguser = tepm_user.replace(" ", "%20");
String extension = "";
int i = temp_Image.lastIndexOf('.');
if (i > 0) {
extension = temp_Image.substring(i + 1);
}
System.out.println(extension);
String img = "file:///C:/Users/qasim/Desktop/Semester-3-Main-Project/Golang/Image_server/Images/" + imguser + "." + extension;
hBoxImageDiv.setStyle("-fx-background-image: url('" + img + "'); -fx-background-position: center center;");
vboxEmployeeDiv.setStyle("-fx-background-color: #3C3F41e0;");
WebEngine image = Employee_Image_Web.getEngine();
image.loadContent("<!DOCTYPE html>\n" +
"<html lang=\"en\">\n" +
"<head>\n" +
" <meta charset=\"UTF-8\">\n" +
" <title>Title</title>\n" +
" <link rel=\"stylesheet\" type=\"text/css\" href=\"../css/main.css\">\n" +
" <style>body{\n" +
" background-color:#5F5F5F;\n" +
" }\n" +
" div{\n" +
" background-image: url(" + img + ");\n" +
" background-size: 170px 170px;\n" +
" width:170px;\n" +
" height:170px;\n" +
" border: 5px solid #FFCD00;\n" +
" border-radius:100px;\n" +
" box-shadow: 0 0 10px 2px #000;\n" +
" }\n" +
" </style>\n" +
"</head>\n" +
"<body>\n" +
"<div>\n" +
" \n" +
"</div>\n" +
"</body>\n" +
"</html>");
WebEngine canvas = CanvasWeb.getEngine();
canvas.load("");
}
public void Explorer(MouseEvent event) {
if (event.getSource() == AddImage || event.getSource() == productIcon) {
FileChooser fileChooser = new FileChooser();
FileChooser.ExtensionFilter extFilter =
new FileChooser.ExtensionFilter("Images ", "*.png","*.jpg","*.gif","*.bmp");
fileChooser.getExtensionFilters().add(extFilter);
File SelectedFile = fileChooser.showOpenDialog(null);
if (SelectedFile != null) {
// listview.getItems().add(SelectedFile.getName());
System.out.println(SelectedFile.getName());
System.out.println(SelectedFile.getAbsolutePath());
String my_new_str = SelectedFile.getAbsolutePath().replace("\\", "/");
System.out.println(my_new_str);
employeeImageUrl.setText(my_new_str);
} else {
System.out.println("file is not correct");
}
}
}
public void EmployeeButtons(MouseEvent event) {
if (event.getSource() == EmployeeEdit) {
employeeUsername.setBorder(new Border(new BorderStroke(Color.WHITE, BorderStrokeStyle.SOLID, new CornerRadii(0), new BorderWidths(0, 0, 2, 0))));
employeePassword.setBorder(new Border(new BorderStroke(Color.WHITE, BorderStrokeStyle.SOLID, new CornerRadii(0), new BorderWidths(0, 0, 2, 0))));
employeeconfirm.setBorder(new Border(new BorderStroke(Color.WHITE, BorderStrokeStyle.SOLID, new CornerRadii(0), new BorderWidths(0, 0, 2, 0))));
employeeImageUrl.setBorder(new Border(new BorderStroke(Color.WHITE, BorderStrokeStyle.SOLID, new CornerRadii(0), new BorderWidths(0, 0, 2, 0))));
boolean lockUpdate1 = false, lockUpdate2 = false, lockUpdate3 = false, lockUpdate4 = false;
if (employeeUsername.getText().equalsIgnoreCase("")||!validate.getUserValidBool(employeeUsername.getText())) {
employeeUsername.setBorder(new Border(new BorderStroke(Color.RED, BorderStrokeStyle.SOLID, new CornerRadii(2), new BorderWidths(0, 0, 2, 0))));
lockUpdate1 = true;
} else {
employeeUsername.setBorder(new Border(new BorderStroke(Color.WHITE, BorderStrokeStyle.SOLID, new CornerRadii(0), new BorderWidths(0, 0, 2, 0))));
// String css2 = this.getClass().getResource("input.css").toExternalForm();
// productUpdateNewName.getStylesheets().add(css2);
// productUpdateNewName.getStyleClass().add("input");
}
if (employeePassword.getText().equalsIgnoreCase("") || !validate.getPasswordValid(employeePassword.getText(), 8, 1, 1)) {
employeePassword.setBorder(new Border(new BorderStroke(Color.RED, BorderStrokeStyle.SOLID, new CornerRadii(2), new BorderWidths(0, 0, 2, 0))));
lockUpdate2 = true;
} else {
employeePassword.setBorder(new Border(new BorderStroke(Color.WHITE, BorderStrokeStyle.SOLID, new CornerRadii(0), new BorderWidths(0, 0, 2, 0))));
}
if (employeeconfirm.getText().equalsIgnoreCase("") || !employeeconfirm.getText().equals(employeePassword.getText())) {
employeeconfirm.setBorder(new Border(new BorderStroke(Color.RED, BorderStrokeStyle.SOLID, new CornerRadii(2), new BorderWidths(0, 0, 2, 0))));
lockUpdate3 = true;
} else {
employeeconfirm.setBorder(new Border(new BorderStroke(Color.WHITE, BorderStrokeStyle.SOLID, new CornerRadii(0), new BorderWidths(0, 0, 2, 0))));
}
if (employeeImageUrl.getText().equalsIgnoreCase("")) {
employeeImageUrl.setBorder(new Border(new BorderStroke(Color.RED, BorderStrokeStyle.SOLID, new CornerRadii(2), new BorderWidths(0, 0, 2, 0))));
lockUpdate4 = true;
} else {
employeeImageUrl.setBorder(new Border(new BorderStroke(Color.WHITE, BorderStrokeStyle.SOLID, new CornerRadii(0), new BorderWidths(0, 0, 2, 0))));
}
if ((lockUpdate1 == false) && (lockUpdate2 == false) && (lockUpdate3 == false) && (lockUpdate4 == false)) {
try {
System.out.println("post employee");
Employee_Data d = new Employee_Data();
Employee_Data up = new Employee_Data();
//old data
d.setUsername(tepm_user);
d.setPassword(temp_password);
d.setImage(temp_Image);
//new data
up.setUsername(employeeUsername.getText());
up.setPassword(employeePassword.getText());
up.setImage(employeeImageUrl.getText());
Employee_Put.put(d, up);
} catch (Exception e) {
e.printStackTrace();
}
tepm_user = employeeUsername.getText();
temp_password = employeePassword.getText();
temp_Image = employeeImageUrl.getText();
} else if ((employeeImageUrl.getText().equals(temp_Image)) && (employeePassword.getText().equals(temp_password)) && (employeeUsername.getText().equals(tepm_user))) {
System.out.println("Employee Exist");
}
}
if (event.getSource() == EmployeeNew) {
employeeUsername.setBorder(new Border(new BorderStroke(Color.WHITE, BorderStrokeStyle.SOLID, new CornerRadii(0), new BorderWidths(0, 0, 2, 0))));
employeePassword.setBorder(new Border(new BorderStroke(Color.WHITE, BorderStrokeStyle.SOLID, new CornerRadii(0), new BorderWidths(0, 0, 2, 0))));
employeeconfirm.setBorder(new Border(new BorderStroke(Color.WHITE, BorderStrokeStyle.SOLID, new CornerRadii(0), new BorderWidths(0, 0, 2, 0))));
employeeImageUrl.setBorder(new Border(new BorderStroke(Color.WHITE, BorderStrokeStyle.SOLID, new CornerRadii(0), new BorderWidths(0, 0, 2, 0))));
boolean lockUpdate1 = false, lockUpdate2 = false, lockUpdate3 = false, lockUpdate4 = false;
if (employeeUsername.getText().equalsIgnoreCase("")||!validate.getUserValidBool(employeeUsername.getText())) {
employeeUsername.setBorder(new Border(new BorderStroke(Color.RED, BorderStrokeStyle.SOLID, new CornerRadii(2), new BorderWidths(0, 0, 2, 0))));
lockUpdate1 = true;
} else {
employeeUsername.setBorder(new Border(new BorderStroke(Color.WHITE, BorderStrokeStyle.SOLID, new CornerRadii(0), new BorderWidths(0, 0, 2, 0))));
// String css2 = this.getClass().getResource("input.css").toExternalForm();
// productUpdateNewName.getStylesheets().add(css2);
// productUpdateNewName.getStyleClass().add("input");
}
if (employeePassword.getText().equalsIgnoreCase("") || !validate.getPasswordValid(employeePassword.getText(), 8, 1, 1)) {
employeePassword.setBorder(new Border(new BorderStroke(Color.RED, BorderStrokeStyle.SOLID, new CornerRadii(2), new BorderWidths(0, 0, 2, 0))));
lockUpdate2 = true;
} else {
employeePassword.setBorder(new Border(new BorderStroke(Color.WHITE, BorderStrokeStyle.SOLID, new CornerRadii(0), new BorderWidths(0, 0, 2, 0))));
}
if (employeeconfirm.getText().equalsIgnoreCase("") || !employeeconfirm.getText().equals(employeePassword.getText())) {
employeeconfirm.setBorder(new Border(new BorderStroke(Color.RED, BorderStrokeStyle.SOLID, new CornerRadii(2), new BorderWidths(0, 0, 2, 0))));
lockUpdate3 = true;
} else {
employeeconfirm.setBorder(new Border(new BorderStroke(Color.WHITE, BorderStrokeStyle.SOLID, new CornerRadii(0), new BorderWidths(0, 0, 2, 0))));
}
if (employeeImageUrl.getText().equalsIgnoreCase("")) {
employeeImageUrl.setBorder(new Border(new BorderStroke(Color.RED, BorderStrokeStyle.SOLID, new CornerRadii(2), new BorderWidths(0, 0, 2, 0))));
lockUpdate4 = true;
} else {
employeeImageUrl.setBorder(new Border(new BorderStroke(Color.WHITE, BorderStrokeStyle.SOLID, new CornerRadii(0), new BorderWidths(0, 0, 2, 0))));
}
if ((lockUpdate1 == false) && (lockUpdate2 == false) && (lockUpdate3 == false) && (lockUpdate4 == false)) {
try {
Employee_Data d = new Employee_Data();
d.setUsername(employeeUsername.getText());
d.setPassword(employeePassword.getText());
d.setImage(employeeImageUrl.getText());
Employee_Post.post(d);
} catch (Exception e) {
e.printStackTrace();
}
} else if ((employeeImageUrl.getText().equals(temp_Image)) && (employeePassword.getText().equals(temp_password)) && (employeeUsername.getText().equals(tepm_user))) {
System.out.println("Employee Exist");
}
}
}
public void HideImageEdit(MouseEvent event) {
AddImage.setVisible(false);
}
public void ShowImageEdit(MouseEvent event) {
AddImage.setVisible(true);
}
public void initialize(URL Location,ResourceBundle resourceBundle){
// TableColumn namecol = new TableColumn("Name");
// TableColumn quantitycol = new TableColumn("Quantity");
// TableColumn buypricecol = new TableColumn("BuyPrice");
// TableColumn salepricecol = new TableColumn("SalePrice");
// pTableID.getColumns().addAll(namecol, quantitycol,buypricecol, salepricecol);
// pTableID.getColumns().addAll(pTableName,pTableQuantity,pTableQuantity,pTableSalePrice);
}
private void initialize() {
}
}
| [
"[email protected]"
] | |
71048ab0b7b34bc4fcbcabf5f542d9f6b68dbce7 | eb271a96ed08abcfe8c8a722ef517efe92676431 | /Clean Smart Ajmer android project/ProjectTester/src/com/example/projecttester/UpdateMyProfileActivity.java | 91f1db45dd2358c039de67852a299958b242cf6b | [] | no_license | jainkashish/Clean-Ajmer | cf1b3fed8d2ea91ff54e56cac6c83b9574a3d710 | e712d25082081f21a920af8b1e06b9e40246b03e | refs/heads/master | 2022-11-30T01:09:39.958477 | 2020-08-08T06:02:46 | 2020-08-08T06:02:46 | 285,841,555 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,536 | java | package com.example.projecttester;
import android.os.Bundle;
import android.app.Activity;
import android.content.ContentValues;
import android.content.Intent;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
public class UpdateMyProfileActivity extends Activity implements OnClickListener {
EditText et1,et2,et3,et4;
Button b;
String contact;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_update_my_profile);
et1=(EditText) findViewById(R.id.editText1);
et2=(EditText) findViewById(R.id.editText2);
et3=(EditText) findViewById(R.id.editText3);
b=(Button) findViewById(R.id.button1);
et4=(EditText) findViewById(R.id.editText4);
Intent i=getIntent();
contact=i.getStringExtra("contact");
b.setOnClickListener(this);
DataBaseHelper dh = new DataBaseHelper(this);
SQLiteDatabase db = dh.getReadableDatabase();
String q = "select * from data2 where contact=?";
Cursor cursor = db.rawQuery(q, new String[] { contact });
if (cursor != null)
cursor.moveToFirst();
if (cursor.moveToFirst()) {
do {
et1.setText(cursor.getString(1));
et2.setText(cursor.getString(2));
et3.setText(cursor.getString(4));
et4.setText(cursor.getString(5));
} while (cursor.moveToNext());
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.update_my_profile, menu);
return true;
}
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
DataBaseHelper dh1=new DataBaseHelper(getApplicationContext());
SQLiteDatabase db1=dh1.getReadableDatabase();
ContentValues cv=new ContentValues();
cv.put("name", et1.getText().toString());
cv.put("address", et2.getText().toString());
cv.put("email", et3.getText().toString());
cv.put("password", et4.getText().toString());
int ans=db1.update("data2", cv, "contact=?", new String[]{contact});
if(ans==1)
{
Toast.makeText(this, "Record Updated", 2000).show();
}
else
{
Toast.makeText(this, "Record Not Updated", 2000).show();
}
}
}
| [
"[email protected]"
] | |
66ef6d46682c183872a646ebc64ae18ea02fa1da | 54dc4f57ec9bbdeca39c29406b95d9e4c0d7b43e | /MultiThreading_Java/Join_IsAlive_Method.java | f45267b254edb1723f4bbba7ef1c8766af4b296d | [] | no_license | mohitmanglani2906/JAVA_CORE | 2fdf8b797560237018274041bdb93c06e6f94750 | 12627ce411461fbcafa5433c0a76716a2f0c3e68 | refs/heads/master | 2021-07-09T23:20:22.308459 | 2019-01-30T14:14:42 | 2019-01-30T14:14:42 | 141,910,848 | 1 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,223 | java | // Here we will see join and isAlive method in Multithreading
class Join_IsAlive_Method
{
public static void main(String []args) throws Exception
{
Runnable obj1;
Runnable obj2;
Thread t1=new Thread(() -> // I have used in Lamda expression here which we can implement here
{ // we can write like this if we have
{
for(int i=1;i<=5;i++)
{
System.out.println("Hi");
try{Thread.sleep(500);} catch(Exception e){}
}
}
});
Thread t2=new Thread(() ->
{
{
for(int i=1;i<=5;i++)
{
System.out.println("Hello");
try{Thread.sleep(500);} catch(Exception e){}
}
}
});
t1.start();
try{Thread.sleep(10);} catch(Exception e){}
t2.start();
System.out.println(t1.isAlive()); // IsAlive() method checks that method is alive or not // return true or false
t1.join(); // thrown an InterruptedException
t2.join(); // method is used to complete the action of thread t1 and thread t2 before the main thread
System.out.println(t1.isAlive()); // After the complition of the method execution of the thread is dead as returns false
System.out.println("Bye :");
}
} | [
"[email protected]"
] | |
8a373bd4c5720901c5d3d12daa0613c3d9e9058e | cc836642d88699a329e5dec3f0209093f3046514 | /Moneymanagement/src/main/java/com/example/demo/repository/MoneyRepository.java | 9ffaf4305410701fe9d97541df60d8279b175a03 | [] | no_license | yoshiko78/MoneyManagement | a074d3ccda205492cd656fc05b97f9d13135a861 | b8a4838d905ec5ab592960f9f90f7352a52e78f4 | refs/heads/master | 2023-01-19T13:21:18.730567 | 2020-12-03T14:04:13 | 2020-12-03T14:04:13 | 318,212,822 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 354 | java | package com.example.demo.repository;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
import com.example.demo.domain.Moneydata;
@Repository
public interface MoneyRepository extends JpaRepository <Moneydata, Long>
{
Moneydata findOne(Integer id);
void delete(Integer id);
}
| [
"[email protected]"
] | |
3811e83cb7da5acd94ef5c920b3e5762039f6bbe | c3e730d86586b2f7b58dd27a3b494d2c9970f0f0 | /ndisconf-server/src/main/java/com/nsb/ndisconf/server/disconf/web/service/role/service/impl/RoleMgrImpl.java | 9f5f8c8d7ac5e55605ccc716e50b3cd99fe975d6 | [
"Apache-2.0"
] | permissive | Dorae132/ndisconf | 0be3f1b86936e20d60d5a35ed52094993b26927c | e6d84e1fbfb0f3d8b610d60cb6ec2e3f02639fba | refs/heads/master | 2020-03-22T10:52:40.036660 | 2018-10-23T03:34:39 | 2018-10-23T03:34:39 | 139,933,310 | 3 | 0 | null | 2018-10-23T03:34:40 | 2018-07-06T04:31:20 | Java | UTF-8 | Java | false | false | 713 | java | package com.nsb.ndisconf.server.disconf.web.service.role.service.impl;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.nsb.ndisconf.server.disconf.web.service.role.bo.Role;
import com.nsb.ndisconf.server.disconf.web.service.role.dao.RoleDao;
import com.nsb.ndisconf.server.disconf.web.service.role.service.RoleMgr;
/**
*
*/
@Service
public class RoleMgrImpl implements RoleMgr {
@Autowired
private RoleDao roleDao;
@Override
public Role get(Integer roleId) {
return roleDao.get(roleId);
}
@Override
public List<Role> findAll() {
return roleDao.findAll();
}
}
| [
"[email protected]"
] | |
c785b22567fa1ff3d3eea1609c1e0d8d22035449 | 5440c44721728e87fb827fb130b1590b25f24989 | /GPP/clientes/ClienteImportacaoUsuarioNDSPortalGPP.java | 7a3c197843ab67a597c0d7335e85544251882979 | [] | no_license | amigosdobart/gpp | b36a9411f39137b8378c5484c58d1023c5e40b00 | b1fec4e32fa254f972a0568fb7ebfac7784ecdc2 | refs/heads/master | 2020-05-15T14:20:11.462484 | 2019-04-19T22:34:54 | 2019-04-19T22:34:54 | 182,328,708 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,719 | java | // Cliente que envia bonus por chamada sainte com CSP 14 - Bonus Toma La Da Ca
package clientes;
import com.brt.gpp.componentes.processosBatch.orb.*;
public class ClienteImportacaoUsuarioNDSPortalGPP
{
public ClienteImportacaoUsuarioNDSPortalGPP ( )
{
}
public static void main(String[] args)
{
java.util.Properties props = System.getProperties();
props.put("vbroker.agent.port", args[0]);
props.put("vbroker.agent.addr", args[1]);
System.setProperties ( props );
// Inicializando o ORB
org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init(args, props);
byte[] managerId = "ComponenteNegociosProcessosBatch".getBytes();
processosBatch pPOA = processosBatchHelper.bind(orb, "/AtivaComponentesPOA", managerId);
short retValue=0;
try
{
retValue = pPOA.importaUsuarioPortalNDS();
if (retValue == 0)
System.out.println ("Metodo de importacao executado com sucesso...");
else System.out.println ("Metodo de importacao executado com erro...");
System.exit(retValue);
}
catch (Exception e)
{
System.out.println ("Metodo remoto de importacao de Usuarios executado com erro...");
System.out.println("Erro:" + e);
System.exit(retValue);
}
}
public static void menuOpcoes ( )
{
// int userOption;
System.out.println ("\n\n");
System.out.println ("+--------------------------------------------------------------------+");
System.out.println ("+ Sistema de Teste de Importacao de Usuarios do NDS para o Portal +");
System.out.println ("+--------------------------------------------------------------------+\n");
System.out.println (" Procesando .....");
System.out.print (" Fim do Processo ");
System.out.print ("\n");
}
} | [
"[email protected]"
] | |
6436e442f8c897ed86419502ce39cd19f8626340 | ffdb9541882cb66cbaefa483234f83b9495ba820 | /src/main/java/com/nicanorvaz/cursomc/domain/Cliente.java | 177fa99711c4592d578e688daf9c8a862e695360 | [] | no_license | NicanorVaz/cursomc | ec25b03eb39e8be43400ace5e3475faf553b6386 | fcc2796688bc6dff88120f50b4cfa30aec7f2502 | refs/heads/master | 2020-12-10T18:58:56.771797 | 2020-02-04T00:53:15 | 2020-02-04T00:53:15 | 233,681,237 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,873 | java | package com.nicanorvaz.cursomc.domain;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import javax.persistence.CollectionTable;
import javax.persistence.ElementCollection;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.OneToMany;
import com.fasterxml.jackson.annotation.JsonManagedReference;
import com.nicanorvaz.cursomc.domain.enums.TipoCliente;
@Entity
public class Cliente implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
private String nome;
private String email;
private String cpfOuCnpj;
private Integer tipo;
@JsonManagedReference
@OneToMany(mappedBy = "cidade")
private List<Endereco> enderecos = new ArrayList<Endereco>();
@ElementCollection
@CollectionTable(name = "TELEFONES")
private Set<String> telefones = new HashSet<String>();
public Cliente() {
super();
// TODO Auto-generated constructor stub
}
public Cliente(Integer id, String nome, String email, String cpfOuCnpj, TipoCliente tipoCliente) {
super();
this.id = id;
this.nome = nome;
this.email = email;
this.cpfOuCnpj = cpfOuCnpj;
this.tipo = tipoCliente.getCod();
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getNome() {
return nome;
}
public void setNome(String nome) {
this.nome = nome;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getCpfOuCnpj() {
return cpfOuCnpj;
}
public void setCpfOuCnpj(String cpfOuCnpj) {
this.cpfOuCnpj = cpfOuCnpj;
}
public TipoCliente getTipo() {
return TipoCliente.toEnum(tipo);
}
public void setTipo(TipoCliente tipoCliente) {
this.tipo = tipoCliente.getCod();
}
public List<Endereco> getEnderecos() {
return enderecos;
}
public void setEnderecos(List<Endereco> enderecos) {
this.enderecos = enderecos;
}
public Set<String> getTelefones() {
return telefones;
}
public void setTelefones(Set<String> telefones) {
this.telefones = telefones;
}
public static long getSerialversionuid() {
return serialVersionUID;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((id == null) ? 0 : id.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Cliente other = (Cliente) obj;
if (id == null) {
if (other.id != null)
return false;
} else if (!id.equals(other.id))
return false;
return true;
}
}
| [
"[email protected]"
] | |
0494b85e52d5f1a4625a829b54e393573ba4673a | 5206a46484578ef65012285f205a0f3e4b97b541 | /src/coders/quickbill/Dashboard.java | 9759fe12d4f1b807f56607adaa38f609324ca6bd | [] | no_license | CodersTechnologies/Coders-QuickBill-2017 | 48eecdb79b0f861f167a3bad807bd77349c04561 | 7f04a8cddb6f9d153fef2de8a93d412ca93fddc6 | refs/heads/master | 2021-01-20T10:30:12.793260 | 2017-09-21T10:24:58 | 2017-09-21T10:24:58 | 101,639,018 | 2 | 0 | null | null | null | null | UTF-8 | Java | false | false | 40,662 | java | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package coders.quickbill;
import javax.swing.JFrame;
import java.awt.Color;
import java.awt.HeadlessException;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import javax.swing.ImageIcon;
import static java.lang.Thread.sleep;
import java.util.Calendar;
import java.util.GregorianCalendar;
import javax.swing.JOptionPane;
import static java.lang.Thread.sleep;
import java.sql.SQLException;
/**
*
* @author sunny
*/
public class Dashboard extends javax.swing.JFrame {
Connection conn=null;
PreparedStatement pst=null;
ResultSet rs=null;
/**
* Creates new form Dashboard
*/
public Dashboard() {
initComponents();
this.setIconImage(new ImageIcon(getClass().getResource("QB_Icon-32x32.png")).getImage());
conn=javaconnect.ConnectDB();
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
jPanel1 = new javax.swing.JPanel();
lblProductName = new javax.swing.JLabel();
jPanel2 = new javax.swing.JPanel();
lblUser = new javax.swing.JLabel();
lblProduct = new javax.swing.JLabel();
lblSales = new javax.swing.JLabel();
lblReports = new javax.swing.JLabel();
lblSalesAccount = new javax.swing.JLabel();
lblCustomers = new javax.swing.JLabel();
lblAbout = new javax.swing.JLabel();
lblDealersAccount = new javax.swing.JLabel();
lblLicenseDetails = new javax.swing.JLabel();
jMenuBar1 = new javax.swing.JMenuBar();
mnuCompany = new javax.swing.JMenu();
mnuManageCompanyDetails = new javax.swing.JMenuItem();
mnuProducts = new javax.swing.JMenu();
mnuDirectProductManagement = new javax.swing.JMenuItem();
jSeparator1 = new javax.swing.JPopupMenu.Separator();
mnuPurchaseReturn = new javax.swing.JMenuItem();
jSeparator2 = new javax.swing.JPopupMenu.Separator();
mnuPurchaseInward = new javax.swing.JMenuItem();
mnuSales = new javax.swing.JMenu();
mnuPosTerminal = new javax.swing.JMenuItem();
jSeparator3 = new javax.swing.JPopupMenu.Separator();
mnuSalesReturn = new javax.swing.JMenuItem();
mnuGST = new javax.swing.JMenu();
mnuGSTRatesManagement = new javax.swing.JMenuItem();
mnuReports = new javax.swing.JMenu();
mnuSalesAccount = new javax.swing.JMenu();
mnuCustomers = new javax.swing.JMenu();
mnuDealerAccount = new javax.swing.JMenu();
jMenu1 = new javax.swing.JMenu();
mnuAbout = new javax.swing.JMenu();
mnuAboutQuickBill2017 = new javax.swing.JMenuItem();
jSeparator4 = new javax.swing.JPopupMenu.Separator();
mnuDeveloperInfo = new javax.swing.JMenuItem();
mnuClose = new javax.swing.JMenu();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
setTitle("Coders QuickBill 2017");
addWindowListener(new java.awt.event.WindowAdapter() {
public void windowOpened(java.awt.event.WindowEvent evt) {
formWindowOpened(evt);
}
});
jPanel1.setBackground(new java.awt.Color(40, 40, 40));
lblProductName.setFont(new java.awt.Font("Ubuntu", 1, 48)); // NOI18N
lblProductName.setForeground(java.awt.Color.white);
lblProductName.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
lblProductName.setIcon(new javax.swing.ImageIcon(getClass().getResource("/coders/images/ProductLogo.png"))); // NOI18N
jPanel2.setBackground(new java.awt.Color(40, 40, 40));
lblUser.setFont(new java.awt.Font("Tahoma", 1, 12)); // NOI18N
lblUser.setForeground(java.awt.Color.white);
lblUser.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
lblUser.setIcon(new javax.swing.ImageIcon(getClass().getResource("/coders/images/manage_user.png"))); // NOI18N
lblUser.setText("Company");
lblUser.setHorizontalTextPosition(javax.swing.SwingConstants.CENTER);
lblUser.setPreferredSize(new java.awt.Dimension(135, 150));
lblUser.setVerticalTextPosition(javax.swing.SwingConstants.BOTTOM);
lblUser.addMouseListener(new java.awt.event.MouseAdapter() {
public void mouseClicked(java.awt.event.MouseEvent evt) {
lblUserMouseClicked(evt);
}
public void mouseEntered(java.awt.event.MouseEvent evt) {
lblUserMouseEntered(evt);
}
public void mouseExited(java.awt.event.MouseEvent evt) {
lblUserMouseExited(evt);
}
});
lblProduct.setFont(new java.awt.Font("Tahoma", 1, 12)); // NOI18N
lblProduct.setForeground(java.awt.Color.white);
lblProduct.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
lblProduct.setIcon(new javax.swing.ImageIcon(getClass().getResource("/coders/images/product.png"))); // NOI18N
lblProduct.setText("Products");
lblProduct.setHorizontalTextPosition(javax.swing.SwingConstants.CENTER);
lblProduct.setPreferredSize(new java.awt.Dimension(135, 150));
lblProduct.setVerticalTextPosition(javax.swing.SwingConstants.BOTTOM);
lblProduct.addMouseListener(new java.awt.event.MouseAdapter() {
public void mouseClicked(java.awt.event.MouseEvent evt) {
lblProductMouseClicked(evt);
}
public void mouseEntered(java.awt.event.MouseEvent evt) {
lblProductMouseEntered(evt);
}
public void mouseExited(java.awt.event.MouseEvent evt) {
lblProductMouseExited(evt);
}
});
lblSales.setFont(new java.awt.Font("Tahoma", 1, 12)); // NOI18N
lblSales.setForeground(java.awt.Color.white);
lblSales.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
lblSales.setIcon(new javax.swing.ImageIcon(getClass().getResource("/coders/images/sales.png"))); // NOI18N
lblSales.setText("Sales");
lblSales.setHorizontalTextPosition(javax.swing.SwingConstants.CENTER);
lblSales.setPreferredSize(new java.awt.Dimension(135, 150));
lblSales.setVerticalTextPosition(javax.swing.SwingConstants.BOTTOM);
lblSales.addMouseListener(new java.awt.event.MouseAdapter() {
public void mouseClicked(java.awt.event.MouseEvent evt) {
lblSalesMouseClicked(evt);
}
public void mouseExited(java.awt.event.MouseEvent evt) {
lblSalesMouseExited(evt);
}
public void mouseEntered(java.awt.event.MouseEvent evt) {
lblSalesMouseEntered(evt);
}
});
lblReports.setFont(new java.awt.Font("Tahoma", 1, 12)); // NOI18N
lblReports.setForeground(java.awt.Color.white);
lblReports.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
lblReports.setIcon(new javax.swing.ImageIcon(getClass().getResource("/coders/images/data_table.png"))); // NOI18N
lblReports.setText("Reports");
lblReports.setHorizontalTextPosition(javax.swing.SwingConstants.CENTER);
lblReports.setPreferredSize(new java.awt.Dimension(135, 150));
lblReports.setVerticalTextPosition(javax.swing.SwingConstants.BOTTOM);
lblReports.addMouseListener(new java.awt.event.MouseAdapter() {
public void mouseClicked(java.awt.event.MouseEvent evt) {
lblReportsMouseClicked(evt);
}
public void mouseEntered(java.awt.event.MouseEvent evt) {
lblReportsMouseEntered(evt);
}
public void mouseExited(java.awt.event.MouseEvent evt) {
lblReportsMouseExited(evt);
}
});
lblSalesAccount.setFont(new java.awt.Font("Tahoma", 1, 12)); // NOI18N
lblSalesAccount.setForeground(java.awt.Color.white);
lblSalesAccount.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
lblSalesAccount.setIcon(new javax.swing.ImageIcon(getClass().getResource("/coders/images/notebook.png"))); // NOI18N
lblSalesAccount.setText("Sales Account");
lblSalesAccount.setHorizontalTextPosition(javax.swing.SwingConstants.CENTER);
lblSalesAccount.setPreferredSize(new java.awt.Dimension(135, 150));
lblSalesAccount.setVerticalTextPosition(javax.swing.SwingConstants.BOTTOM);
lblSalesAccount.addMouseListener(new java.awt.event.MouseAdapter() {
public void mouseEntered(java.awt.event.MouseEvent evt) {
lblSalesAccountMouseEntered(evt);
}
public void mouseExited(java.awt.event.MouseEvent evt) {
lblSalesAccountMouseExited(evt);
}
});
lblCustomers.setFont(new java.awt.Font("Tahoma", 1, 12)); // NOI18N
lblCustomers.setForeground(java.awt.Color.white);
lblCustomers.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
lblCustomers.setIcon(new javax.swing.ImageIcon(getClass().getResource("/coders/images/Customer_Male_Light_128px_533992_easyiconnet.png"))); // NOI18N
lblCustomers.setText("Customers");
lblCustomers.setHorizontalTextPosition(javax.swing.SwingConstants.CENTER);
lblCustomers.setPreferredSize(new java.awt.Dimension(135, 150));
lblCustomers.setVerticalTextPosition(javax.swing.SwingConstants.BOTTOM);
lblCustomers.addMouseListener(new java.awt.event.MouseAdapter() {
public void mouseClicked(java.awt.event.MouseEvent evt) {
lblCustomersMouseClicked(evt);
}
public void mouseEntered(java.awt.event.MouseEvent evt) {
lblCustomersMouseEntered(evt);
}
public void mouseExited(java.awt.event.MouseEvent evt) {
lblCustomersMouseExited(evt);
}
});
lblAbout.setFont(new java.awt.Font("Tahoma", 1, 12)); // NOI18N
lblAbout.setForeground(java.awt.Color.white);
lblAbout.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
lblAbout.setIcon(new javax.swing.ImageIcon(getClass().getResource("/coders/images/help.png"))); // NOI18N
lblAbout.setText("About");
lblAbout.setHorizontalTextPosition(javax.swing.SwingConstants.CENTER);
lblAbout.setPreferredSize(new java.awt.Dimension(135, 150));
lblAbout.setVerticalTextPosition(javax.swing.SwingConstants.BOTTOM);
lblAbout.addMouseListener(new java.awt.event.MouseAdapter() {
public void mouseEntered(java.awt.event.MouseEvent evt) {
lblAboutMouseEntered(evt);
}
public void mouseExited(java.awt.event.MouseEvent evt) {
lblAboutMouseExited(evt);
}
});
lblDealersAccount.setFont(new java.awt.Font("Tahoma", 1, 12)); // NOI18N
lblDealersAccount.setForeground(java.awt.Color.white);
lblDealersAccount.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
lblDealersAccount.setIcon(new javax.swing.ImageIcon(getClass().getResource("/coders/images/dealer.png"))); // NOI18N
lblDealersAccount.setText("Dealers");
lblDealersAccount.setHorizontalTextPosition(javax.swing.SwingConstants.CENTER);
lblDealersAccount.setPreferredSize(new java.awt.Dimension(135, 150));
lblDealersAccount.setVerticalTextPosition(javax.swing.SwingConstants.BOTTOM);
lblDealersAccount.addMouseListener(new java.awt.event.MouseAdapter() {
public void mouseClicked(java.awt.event.MouseEvent evt) {
lblDealersAccountMouseClicked(evt);
}
public void mouseExited(java.awt.event.MouseEvent evt) {
lblDealersAccountMouseExited(evt);
}
public void mouseEntered(java.awt.event.MouseEvent evt) {
lblDealersAccountMouseEntered(evt);
}
});
javax.swing.GroupLayout jPanel2Layout = new javax.swing.GroupLayout(jPanel2);
jPanel2.setLayout(jPanel2Layout);
jPanel2Layout.setHorizontalGroup(
jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, jPanel2Layout.createSequentialGroup()
.addContainerGap()
.addComponent(lblUser, javax.swing.GroupLayout.DEFAULT_SIZE, 138, Short.MAX_VALUE)
.addGap(18, 18, 18)
.addComponent(lblProduct, javax.swing.GroupLayout.DEFAULT_SIZE, 138, Short.MAX_VALUE)
.addGap(18, 18, 18)
.addComponent(lblSales, javax.swing.GroupLayout.DEFAULT_SIZE, 138, Short.MAX_VALUE)
.addGap(18, 18, 18)
.addComponent(lblReports, javax.swing.GroupLayout.DEFAULT_SIZE, 138, Short.MAX_VALUE)
.addGap(18, 18, 18)
.addComponent(lblSalesAccount, javax.swing.GroupLayout.DEFAULT_SIZE, 138, Short.MAX_VALUE)
.addGap(18, 18, 18)
.addComponent(lblCustomers, javax.swing.GroupLayout.DEFAULT_SIZE, 138, Short.MAX_VALUE)
.addGap(18, 18, 18)
.addComponent(lblDealersAccount, javax.swing.GroupLayout.DEFAULT_SIZE, 138, Short.MAX_VALUE)
.addGap(18, 18, 18)
.addComponent(lblAbout, javax.swing.GroupLayout.DEFAULT_SIZE, 138, Short.MAX_VALUE)
.addGap(6, 6, 6))
);
jPanel2Layout.setVerticalGroup(
jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel2Layout.createSequentialGroup()
.addContainerGap()
.addGroup(jPanel2Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(lblProduct, javax.swing.GroupLayout.DEFAULT_SIZE, 171, Short.MAX_VALUE)
.addComponent(lblUser, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(lblSales, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(lblReports, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(lblSalesAccount, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(lblCustomers, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(lblAbout, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(lblDealersAccount, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
.addContainerGap())
);
lblLicenseDetails.setFont(new java.awt.Font("Ubuntu", 0, 14)); // NOI18N
lblLicenseDetails.setForeground(java.awt.Color.white);
lblLicenseDetails.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
javax.swing.GroupLayout jPanel1Layout = new javax.swing.GroupLayout(jPanel1);
jPanel1.setLayout(jPanel1Layout);
jPanel1Layout.setHorizontalGroup(
jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel1Layout.createSequentialGroup()
.addContainerGap()
.addGroup(jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jPanel2, javax.swing.GroupLayout.Alignment.TRAILING, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(lblLicenseDetails, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(lblProductName, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
.addContainerGap())
);
jPanel1Layout.setVerticalGroup(
jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(jPanel1Layout.createSequentialGroup()
.addContainerGap()
.addComponent(jPanel2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(102, 102, 102)
.addComponent(lblProductName)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(lblLicenseDetails, javax.swing.GroupLayout.PREFERRED_SIZE, 17, javax.swing.GroupLayout.PREFERRED_SIZE)
.addContainerGap(98, Short.MAX_VALUE))
);
jMenuBar1.setBackground(new java.awt.Color(53, 53, 53));
jMenuBar1.setForeground(java.awt.Color.white);
jMenuBar1.setFont(new java.awt.Font("Segoe UI", 0, 13)); // NOI18N
mnuCompany.setText("Company");
mnuCompany.setFont(new java.awt.Font("Ubuntu", 0, 13)); // NOI18N
mnuManageCompanyDetails.setText("Manage Company Details");
mnuManageCompanyDetails.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
mnuManageCompanyDetailsActionPerformed(evt);
}
});
mnuCompany.add(mnuManageCompanyDetails);
jMenuBar1.add(mnuCompany);
mnuProducts.setText("Purchase");
mnuProducts.setFont(new java.awt.Font("Ubuntu", 0, 13)); // NOI18N
mnuProducts.addMouseListener(new java.awt.event.MouseAdapter() {
public void mouseClicked(java.awt.event.MouseEvent evt) {
mnuProductsMouseClicked(evt);
}
});
mnuDirectProductManagement.setText("Direct Product Management");
mnuDirectProductManagement.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
mnuDirectProductManagementActionPerformed(evt);
}
});
mnuProducts.add(mnuDirectProductManagement);
mnuProducts.add(jSeparator1);
mnuPurchaseReturn.setText("Purchase Return");
mnuPurchaseReturn.addMouseListener(new java.awt.event.MouseAdapter() {
public void mouseClicked(java.awt.event.MouseEvent evt) {
mnuPurchaseReturnMouseClicked(evt);
}
});
mnuProducts.add(mnuPurchaseReturn);
mnuProducts.add(jSeparator2);
mnuPurchaseInward.setText("Purchase Invoice");
mnuPurchaseInward.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
mnuPurchaseInwardActionPerformed(evt);
}
});
mnuProducts.add(mnuPurchaseInward);
jMenuBar1.add(mnuProducts);
mnuSales.setText("Sales");
mnuSales.setFont(new java.awt.Font("Ubuntu", 0, 13)); // NOI18N
mnuSales.addMouseListener(new java.awt.event.MouseAdapter() {
public void mouseClicked(java.awt.event.MouseEvent evt) {
mnuSalesMouseClicked(evt);
}
});
mnuPosTerminal.setText("POS Terminal");
mnuPosTerminal.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
mnuPosTerminalActionPerformed(evt);
}
});
mnuSales.add(mnuPosTerminal);
mnuSales.add(jSeparator3);
mnuSalesReturn.setText("Sales Return");
mnuSalesReturn.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
mnuSalesReturnActionPerformed(evt);
}
});
mnuSales.add(mnuSalesReturn);
jMenuBar1.add(mnuSales);
mnuGST.setText("GST");
mnuGST.addMouseListener(new java.awt.event.MouseAdapter() {
public void mouseClicked(java.awt.event.MouseEvent evt) {
mnuGSTMouseClicked(evt);
}
});
mnuGSTRatesManagement.setText("GST Rates Management");
mnuGSTRatesManagement.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
mnuGSTRatesManagementActionPerformed(evt);
}
});
mnuGST.add(mnuGSTRatesManagement);
jMenuBar1.add(mnuGST);
mnuReports.setText("Reports");
mnuReports.setFont(new java.awt.Font("Ubuntu", 0, 13)); // NOI18N
jMenuBar1.add(mnuReports);
mnuSalesAccount.setText("Sales Account");
mnuSalesAccount.setFont(new java.awt.Font("Ubuntu", 0, 13)); // NOI18N
jMenuBar1.add(mnuSalesAccount);
mnuCustomers.setText("Customers");
mnuCustomers.setFont(new java.awt.Font("Ubuntu", 0, 13)); // NOI18N
mnuCustomers.addMouseListener(new java.awt.event.MouseAdapter() {
public void mouseClicked(java.awt.event.MouseEvent evt) {
mnuCustomersMouseClicked(evt);
}
});
jMenuBar1.add(mnuCustomers);
mnuDealerAccount.setText("Dealers");
mnuDealerAccount.setFont(new java.awt.Font("Ubuntu", 0, 13)); // NOI18N
mnuDealerAccount.addMouseListener(new java.awt.event.MouseAdapter() {
public void mouseClicked(java.awt.event.MouseEvent evt) {
mnuDealerAccountMouseClicked(evt);
}
});
jMenuBar1.add(mnuDealerAccount);
jMenu1.setText("T&C");
jMenu1.addMouseListener(new java.awt.event.MouseAdapter() {
public void mouseClicked(java.awt.event.MouseEvent evt) {
jMenu1MouseClicked(evt);
}
});
jMenuBar1.add(jMenu1);
mnuAbout.setText("About");
mnuAbout.setFont(new java.awt.Font("Ubuntu", 0, 13)); // NOI18N
mnuAboutQuickBill2017.setText("Coders Quickbill 2017");
mnuAboutQuickBill2017.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
mnuAboutQuickBill2017ActionPerformed(evt);
}
});
mnuAbout.add(mnuAboutQuickBill2017);
mnuAbout.add(jSeparator4);
mnuDeveloperInfo.setText("Developer Info");
mnuDeveloperInfo.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
mnuDeveloperInfoActionPerformed(evt);
}
});
mnuAbout.add(mnuDeveloperInfo);
jMenuBar1.add(mnuAbout);
mnuClose.setText("Close");
mnuClose.setFont(new java.awt.Font("Ubuntu", 0, 13)); // NOI18N
mnuClose.addMouseListener(new java.awt.event.MouseAdapter() {
public void mouseClicked(java.awt.event.MouseEvent evt) {
mnuCloseMouseClicked(evt);
}
});
jMenuBar1.add(mnuClose);
setJMenuBar(jMenuBar1);
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
);
setSize(new java.awt.Dimension(1282, 584));
setLocationRelativeTo(null);
}// </editor-fold>//GEN-END:initComponents
//Program to get license details
String Company;
public void getLicenseDetails(){
try{
String sql="Select * from Company";
pst=conn.prepareStatement(sql);
rs=pst.executeQuery();
if(rs.next()){
Company=rs.getString("c_name");
lblLicenseDetails.setText("Licensed to : "+Company);
}
pst.close();
}
catch(SQLException e){
JOptionPane.showMessageDialog(null, e,"getLicenseDettails() Exception",JOptionPane.ERROR_MESSAGE);
}
}
private void formWindowOpened(java.awt.event.WindowEvent evt) {//GEN-FIRST:event_formWindowOpened
// TODO add your handling code here:
this.setExtendedState(JFrame.MAXIMIZED_BOTH);
getLicenseDetails();
}//GEN-LAST:event_formWindowOpened
private void mnuCloseMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_mnuCloseMouseClicked
// TODO add your handling code here:
System.exit(0);
}//GEN-LAST:event_mnuCloseMouseClicked
private void lblUserMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_lblUserMouseClicked
// TODO add your handling code here:
ManageCompany.getObj().setVisible(true);
}//GEN-LAST:event_lblUserMouseClicked
private void lblProductMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_lblProductMouseClicked
// TODO add your handling code here:
ManageProducts.getObj().setVisible(true);
}//GEN-LAST:event_lblProductMouseClicked
private void lblUserMouseEntered(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_lblUserMouseEntered
// TODO add your handling code here:
ImageIcon II=new ImageIcon(getClass().getResource("/coders/images/manage_user_hover.png"));
lblUser.setIcon(II);
}//GEN-LAST:event_lblUserMouseEntered
private void lblUserMouseExited(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_lblUserMouseExited
// TODO add your handling code here:
ImageIcon II=new ImageIcon(getClass().getResource("/coders/images/manage_user.png"));
lblUser.setIcon(II);
}//GEN-LAST:event_lblUserMouseExited
private void lblProductMouseEntered(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_lblProductMouseEntered
// TODO add your handling code here:
ImageIcon II=new ImageIcon(getClass().getResource("/coders/images/product_hover.png"));
lblProduct.setIcon(II);
}//GEN-LAST:event_lblProductMouseEntered
private void lblProductMouseExited(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_lblProductMouseExited
// TODO add your handling code here:
ImageIcon II=new ImageIcon(getClass().getResource("/coders/images/product.png"));
lblProduct.setIcon(II);
}//GEN-LAST:event_lblProductMouseExited
private void lblSalesMouseEntered(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_lblSalesMouseEntered
// TODO add your handling code here:
ImageIcon II=new ImageIcon(getClass().getResource("/coders/images/sales_hover.png"));
lblSales.setIcon(II);
}//GEN-LAST:event_lblSalesMouseEntered
private void lblSalesMouseExited(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_lblSalesMouseExited
// TODO add your handling code here:
ImageIcon II=new ImageIcon(getClass().getResource("/coders/images/sales.png"));
lblSales.setIcon(II);
}//GEN-LAST:event_lblSalesMouseExited
private void lblReportsMouseEntered(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_lblReportsMouseEntered
// TODO add your handling code here:
ImageIcon II=new ImageIcon(getClass().getResource("/coders/images/data_table_hover.png"));
lblReports.setIcon(II);
}//GEN-LAST:event_lblReportsMouseEntered
private void lblReportsMouseExited(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_lblReportsMouseExited
// TODO add your handling code here:
ImageIcon II=new ImageIcon(getClass().getResource("/coders/images/data_table.png"));
lblReports.setIcon(II);
}//GEN-LAST:event_lblReportsMouseExited
private void lblSalesAccountMouseEntered(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_lblSalesAccountMouseEntered
// TODO add your handling code here:
ImageIcon II=new ImageIcon(getClass().getResource("/coders/images/notebook_hover.png"));
lblSalesAccount.setIcon(II);
}//GEN-LAST:event_lblSalesAccountMouseEntered
private void lblSalesAccountMouseExited(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_lblSalesAccountMouseExited
// TODO add your handling code here:
ImageIcon II=new ImageIcon(getClass().getResource("/coders/images/notebook.png"));
lblSalesAccount.setIcon(II);
}//GEN-LAST:event_lblSalesAccountMouseExited
private void lblCustomersMouseEntered(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_lblCustomersMouseEntered
// TODO add your handling code here:
ImageIcon II=new ImageIcon(getClass().getResource("/coders/images/Customer_Male_Light_128px_533992_easyiconnet_hover.png"));
lblCustomers.setIcon(II);
}//GEN-LAST:event_lblCustomersMouseEntered
private void lblCustomersMouseExited(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_lblCustomersMouseExited
// TODO add your handling code here:
ImageIcon II=new ImageIcon(getClass().getResource("/coders/images/Customer_Male_Light_128px_533992_easyiconnet.png"));
lblCustomers.setIcon(II);
}//GEN-LAST:event_lblCustomersMouseExited
private void lblDealersAccountMouseEntered(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_lblDealersAccountMouseEntered
// TODO add your handling code here:
ImageIcon II=new ImageIcon(getClass().getResource("/coders/images/dealer_hover.png"));
lblDealersAccount.setIcon(II);
}//GEN-LAST:event_lblDealersAccountMouseEntered
private void lblDealersAccountMouseExited(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_lblDealersAccountMouseExited
// TODO add your handling code here:
ImageIcon II=new ImageIcon(getClass().getResource("/coders/images/dealer.png"));
lblDealersAccount.setIcon(II);
}//GEN-LAST:event_lblDealersAccountMouseExited
private void lblAboutMouseEntered(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_lblAboutMouseEntered
// TODO add your handling code here:
ImageIcon II=new ImageIcon(getClass().getResource("/coders/images/help_hover.png"));
lblAbout.setIcon(II);
}//GEN-LAST:event_lblAboutMouseEntered
private void lblAboutMouseExited(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_lblAboutMouseExited
// TODO add your handling code here:
ImageIcon II=new ImageIcon(getClass().getResource("/coders/images/help.png"));
lblAbout.setIcon(II);
}//GEN-LAST:event_lblAboutMouseExited
private void lblSalesMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_lblSalesMouseClicked
// TODO add your handling code here:
ManageSales.getObj().setVisible(true);
//ManageSales ms=new ManageSales();ms.setVisible(true);
}//GEN-LAST:event_lblSalesMouseClicked
private void lblCustomersMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_lblCustomersMouseClicked
// TODO add your handling code here:
ManageCustomer.getObj().setVisible(true);
}//GEN-LAST:event_lblCustomersMouseClicked
private void mnuSalesMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_mnuSalesMouseClicked
// TODO add your handling code here:
}//GEN-LAST:event_mnuSalesMouseClicked
private void mnuProductsMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_mnuProductsMouseClicked
// TODO add your handling code here:
}//GEN-LAST:event_mnuProductsMouseClicked
private void mnuCustomersMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_mnuCustomersMouseClicked
// TODO add your handling code here:
ManageCustomer.getObj().setVisible(true);
}//GEN-LAST:event_mnuCustomersMouseClicked
private void lblReportsMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_lblReportsMouseClicked
// TODO add your handling code here:
Reports.getObj().setVisible(true);
}//GEN-LAST:event_lblReportsMouseClicked
private void mnuPurchaseInwardActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_mnuPurchaseInwardActionPerformed
// TODO add your handling code here:
PurchaseInvoice.getObj().setVisible(true);
}//GEN-LAST:event_mnuPurchaseInwardActionPerformed
private void mnuDirectProductManagementActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_mnuDirectProductManagementActionPerformed
// TODO add your handling code here:
ManageProducts.getObj().setVisible(true);
}//GEN-LAST:event_mnuDirectProductManagementActionPerformed
private void mnuPosTerminalActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_mnuPosTerminalActionPerformed
// TODO add your handling code here:
ManageSales.getObj().setVisible(true);
}//GEN-LAST:event_mnuPosTerminalActionPerformed
private void mnuManageCompanyDetailsActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_mnuManageCompanyDetailsActionPerformed
// TODO add your handling code here:
ManageCompany.getObj().setVisible(true);
}//GEN-LAST:event_mnuManageCompanyDetailsActionPerformed
private void mnuGSTMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_mnuGSTMouseClicked
// TODO add your handling code here:
}//GEN-LAST:event_mnuGSTMouseClicked
private void mnuPurchaseReturnMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_mnuPurchaseReturnMouseClicked
// TODO add your handling code here:
}//GEN-LAST:event_mnuPurchaseReturnMouseClicked
private void mnuSalesReturnActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_mnuSalesReturnActionPerformed
// TODO add your handling code here:
}//GEN-LAST:event_mnuSalesReturnActionPerformed
private void mnuGSTRatesManagementActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_mnuGSTRatesManagementActionPerformed
// TODO add your handling code here:
GSTRatesManagement.getObj().setVisible(true);
}//GEN-LAST:event_mnuGSTRatesManagementActionPerformed
private void lblDealersAccountMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_lblDealersAccountMouseClicked
// TODO add your handling code here:
ManageDealer.getObj().setVisible(true);
}//GEN-LAST:event_lblDealersAccountMouseClicked
private void mnuDeveloperInfoActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_mnuDeveloperInfoActionPerformed
// TODO add your handling code here:
DeveloperInfo di=new DeveloperInfo();
di.setVisible(true);
}//GEN-LAST:event_mnuDeveloperInfoActionPerformed
private void mnuAboutQuickBill2017ActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_mnuAboutQuickBill2017ActionPerformed
// TODO add your handling code here:
AboutQuickbill aqb=new AboutQuickbill();
aqb.setVisible(true);
}//GEN-LAST:event_mnuAboutQuickBill2017ActionPerformed
private void mnuDealerAccountMouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_mnuDealerAccountMouseClicked
// TODO add your handling code here:
ManageDealer md=new ManageDealer();
md.setVisible(true);
}//GEN-LAST:event_mnuDealerAccountMouseClicked
private void jMenu1MouseClicked(java.awt.event.MouseEvent evt) {//GEN-FIRST:event_jMenu1MouseClicked
// TODO add your handling code here:
TermsAndConditions tc=new TermsAndConditions();
tc.setVisible(true);
}//GEN-LAST:event_jMenu1MouseClicked
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(Dashboard.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(Dashboard.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(Dashboard.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(Dashboard.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
try{
Thread.sleep(4500);
}
catch(Exception e){
}
new Dashboard().setVisible(true);
}
});
}
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JMenu jMenu1;
private javax.swing.JMenuBar jMenuBar1;
private javax.swing.JPanel jPanel1;
private javax.swing.JPanel jPanel2;
private javax.swing.JPopupMenu.Separator jSeparator1;
private javax.swing.JPopupMenu.Separator jSeparator2;
private javax.swing.JPopupMenu.Separator jSeparator3;
private javax.swing.JPopupMenu.Separator jSeparator4;
private javax.swing.JLabel lblAbout;
private javax.swing.JLabel lblCustomers;
private javax.swing.JLabel lblDealersAccount;
private javax.swing.JLabel lblLicenseDetails;
private javax.swing.JLabel lblProduct;
private javax.swing.JLabel lblProductName;
private javax.swing.JLabel lblReports;
private javax.swing.JLabel lblSales;
private javax.swing.JLabel lblSalesAccount;
private javax.swing.JLabel lblUser;
private javax.swing.JMenu mnuAbout;
private javax.swing.JMenuItem mnuAboutQuickBill2017;
private javax.swing.JMenu mnuClose;
private javax.swing.JMenu mnuCompany;
private javax.swing.JMenu mnuCustomers;
private javax.swing.JMenu mnuDealerAccount;
private javax.swing.JMenuItem mnuDeveloperInfo;
private javax.swing.JMenuItem mnuDirectProductManagement;
private javax.swing.JMenu mnuGST;
private javax.swing.JMenuItem mnuGSTRatesManagement;
private javax.swing.JMenuItem mnuManageCompanyDetails;
private javax.swing.JMenuItem mnuPosTerminal;
private javax.swing.JMenu mnuProducts;
private javax.swing.JMenuItem mnuPurchaseInward;
private javax.swing.JMenuItem mnuPurchaseReturn;
private javax.swing.JMenu mnuReports;
private javax.swing.JMenu mnuSales;
private javax.swing.JMenu mnuSalesAccount;
private javax.swing.JMenuItem mnuSalesReturn;
// End of variables declaration//GEN-END:variables
}
| [
"sunny@sunny-Inspiron-N5050"
] | sunny@sunny-Inspiron-N5050 |
800d71e0c991e2892ba419da5d3f488641eeca16 | 1140725c715e2e5fce3cc561d1b194d2e6445f9a | /src/qut/endeavour/rest/resources/SignOffResource.java | e0c97ac8b79a56d1759f397044a8c43c34a98e7d | [] | no_license | julianjw/DMS | 4d79ba6272d955cad62d1d2c59b35c22f90cb659 | 83407ec80eb8fbc15d07be212e96d8b96bf836f2 | refs/heads/master | 2021-01-15T11:43:41.156496 | 2013-11-20T04:54:17 | 2013-11-20T04:54:17 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,274 | java | package qut.endeavour.rest.resources;
import javax.ws.rs.DELETE;
import javax.ws.rs.GET;
import javax.ws.rs.POST;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import qut.endeavour.rest.bean.Found;
import qut.endeavour.rest.exception.DMSClientErrorException;
import qut.endeavour.rest.storage.DatabaseAccess;
import qut.endeavour.rest.utility.Permissions;
@Path("/signoff")
public class SignOffResource {
@GET
@Path("/{user_id: [a-zA-Z_0-9]+}/{token: [a-zA-Z_0-9]+}/{clientid: [a-zA-Z_0-9]+}")
@Produces(MediaType.APPLICATION_JSON)
public Found getJSONSignedOff(
@PathParam("user_id") String username,
@PathParam("token") String token,
@PathParam("clientid") String clientid
) {
String userRole = DatabaseAccess.getRole(username, token);
if ( !Permissions.canGetClients(userRole) ) {
throw new DMSClientErrorException("User with role " + userRole.toUpperCase() + " cannot access client information.");
}
return new Found( DatabaseAccess.isSignedOff(clientid) );
}
@POST
@Path("/{user_id: [a-zA-Z_0-9]+}/{token: [a-zA-Z_0-9]+}/{clientid: [a-zA-Z_0-9]+}")
public void getJSONSetSignedOff(
@PathParam("user_id") String username,
@PathParam("token") String token,
@PathParam("clientid") String clientid
) {
System.out.println("Signing off.");
String userRole = DatabaseAccess.getRole(username, token);
if ( !Permissions.canChangeSignedOff(userRole) ) {
throw new DMSClientErrorException("User with role " + userRole.toUpperCase() + " cannot access client information.");
}
DatabaseAccess.addSignOff(clientid);
}
@DELETE
@Path("/{user_id: [a-zA-Z_0-9]+}/{token: [a-zA-Z_0-9]+}/{clientid: [a-zA-Z_0-9]+}")
public void getJSONDeleteSignedOff(
@PathParam("user_id") String username,
@PathParam("token") String token,
@PathParam("clientid") String clientid
) {
System.out.println("Removing sign off.");
String userRole = DatabaseAccess.getRole(username, token);
if ( !Permissions.canChangeSignedOff(userRole) ) {
throw new DMSClientErrorException("User with role " + userRole.toUpperCase() + " cannot access client information.");
}
DatabaseAccess.removeSignOff(clientid);
}
} | [
"[email protected]"
] | |
03b4fddc4e6219755adda902c0849bab34c5f2f7 | dc8a700f7d0d5066f6dbe61b1f871dd4111b05c0 | /src/main/java/harrier/income/com/report/DisplayIndexForm.java | e3cf5b28c39a18346d9acd3e590feb82a9d12255 | [] | no_license | Jeetthakar/stockpile | 843f2eaba5386cdc7ea8a7701b4857b801d34eb4 | 84efa07be21404da9fce3eea2425e9240e60d744 | refs/heads/master | 2020-05-02T03:04:17.420339 | 2019-04-08T09:22:21 | 2019-04-08T09:22:21 | 177,718,814 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 35,460 | java | /**
* @author Ashish
*
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package harrier.income.com.report;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Date;
import java.util.Vector;
import javax.servlet.http.HttpServletRequest;
import org.apache.log4j.Logger;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.util.LabelValueBean;
import org.jfree.chart.demo.servlet.AdjustDecimal;
import org.jfree.chart.demo.servlet.ComposeIndex;
import app.AcessControl;
import app.Connect;
import com.harrier.initializeation.ConnectInit;
public class DisplayIndexForm extends ActionForm {
Logger Logging = Logger.getLogger(DisplayIndexForm.class);
private String from = null, go = null, clear = null, to = null,
defaultVal = null, check = null, checkChart = null,
selectIndex = null, selectStock = null, text = null;
private Collection selectIndexCollection = null;
static double total = 0.00;
// AdjustDecimal ad = new AdjustDecimal();
String reset, computetotalreturns, b_showChild, query, index, compute,
indexid1;
ArrayList details = null;
private Vector vw, index_details, va;
private ResultSet rst, rst1;
// app.Connect con=new app.Connect();
String userid1;
String roleid1;
Connection connection = null;
public String getUserid1() {
return userid1;
}
public void setUserid1(String userid1) {
this.userid1 = userid1;
}
/** RESEST ALL FORM FIELDS **/
public void reset(ActionMapping mapping, HttpServletRequest request) {
selectIndexCollection = null;
from = null;
go = null;
to = null;
clear = null;
defaultVal = null;
}
public void reset() {
from = null;
}
/**
* VALIDATE FORM DATA
* **/
public ActionErrors validate(ActionMapping mapping,
HttpServletRequest request) {
ActionErrors errors = new ActionErrors();
return errors;
}
/**
* @return Returns the total.
*/
public ArrayList getDetails() {
Connection connection = null;
va = new Vector();
Vector ve = new Vector();
String l_date = "";
String date1 = from, predate = null;
String indexname = null, indexid = null, current = null, indexopen = null, indexhigh = null, indexlow = null, indexclosing = null, tmcv = null, divisor = null, currency = null, indexdate = null, indexclsv = null, indextime = null, vachange = null;
Logging.debug("Before if " + date1);
if ((date1 == null) || (date1.equals("null"))) {
Logging.debug("date null inside if");
SimpleDateFormat fr = new SimpleDateFormat("dd-MM-yyyy");
Date dt = new Date();
l_date = fr.format(dt).toString();
}
Logging.debug(l_date);
int i = 0;
Double dd = new Double("0");
Logging.debug("setIndex_details of Compose Index");
String value = null, open = null, high = null, low = null, close = null, mcap = null;
ArrayList tempdata = new ArrayList();
details = new ArrayList();
DetailIndex detailindex;
// String user_id="1";
// Connect con = new app.Connect();
Connect con = ConnectInit.getConnect();
AdjustDecimal ad = ConnectInit.getAdjustDecimal();
try {
if (connection == null)
connection = con.getdbConnection();
if ((date1 == null) || (date1.equals("null"))) {
// Change by Manoj Adekar: Dated 4-11-2008
if (roleid1.equals("1")) {
rst1 = con.getLatestIndexDetails1(
"get_latest_all_index_details_bench", l_date);
} else {
rst = con.getLatestIndexDetails(
"get_latest_all_index_details", l_date, userid1);
rst1 = con.getLatestIndexDetails1(
"get_latest_all_index_details_bench", l_date);
}
} else {
if (roleid1.equals("1")) {
rst1 = con.getLatestIndexDetails1(
"get_latest_all_index_details_bench", l_date);
} else {
rst1 = con
.getIndexDetails("all_index_details_bench", date1);
rst = con.getIndexDetails2("all_index_details", date1,
userid1);
}
}
try {
while (rst.next()) {
String strpchange = "0.00", status = null;
/*
* Change by Manoj Adekar to display Previos Close value in
* the Report
*/
String curindid = null, curdate = null;
curindid = rst.getString("index_id");
curdate = rst.getString("index_value_date");
predate = con.getMaxDate("get_before_max_date", curdate,
curindid);
double preVal = 0.00;
preVal = con
.getIndexValue("get_oneweek_before_index_value",
predate, curindid);
/* Upto Here */
if ((((double) rst.getDouble("index_closing_value")) != 0.00)
&& (preVal != 0.00)) {
double pchange = (((double) rst.getDouble(2) - (double) preVal) / (double) preVal) * 100;
strpchange = new Double(pchange).toString();
Logging.debug("strpchange before adjusting is "
+ strpchange);
strpchange = ad.indexcompose(strpchange);
vachange = strpchange;
if (vachange == null)
vachange = "0.00";
Logging.debug("strpchange after adjusting is "
+ strpchange);
} else {
vachange = "0.00";
}
if (rst.getString(13) == null) {
indexid = "0";
} else {
indexid = rst.getString(13);
ve.add(indexid);
}
if (rst.getString(1) == null) {
indexname = "0";
} else {
indexname = rst.getString(1);
}
if (rst.getString(2) == null) {
current = "0";
} else {
current = rst.getString(2);
current = ad.indexcompose(current);
current = AdjustDecimal.ArrangeAsNumeric(current);
}
if (rst.getString(3) == null) {
status = "--";
} else {
double change = (double) Double.parseDouble(strpchange);
if (change > 0) {
status = "up";
} else {
if (change == 0.00) {
status = "mid";
} else {
// dd = new Double(change);
status = "down";
}
}
}
if (rst.getString(3) == null) {
indexopen = "0.00";
} else {
indexopen = rst.getString(3);
indexopen = ad.indexcompose(indexopen);
indexopen = AdjustDecimal.ArrangeAsNumeric(indexopen);
}
if (rst.getString(4) == null) {
indexhigh = "0.00";
} else {
indexhigh = rst.getString(4);
indexhigh = ad.indexcompose(indexhigh);
indexhigh = AdjustDecimal.ArrangeAsNumeric(indexhigh);
}
if (rst.getString(5) == null) {
indexlow = "0.00";
} else {
indexlow = rst.getString(5);
indexlow = ad.indexcompose(indexlow);
indexlow = AdjustDecimal.ArrangeAsNumeric(indexlow);
}
if (preVal == 0.0) {
indexclsv = "0.00";
} else {
indexclsv = new Double(preVal).toString();
indexclsv = ad.indexcompose(indexclsv);
indexclsv = AdjustDecimal.ArrangeAsNumeric(indexclsv);
}
/*
* if (rst.getString(12) == null) { indextime= "0";
*
* } else { int time = comapreTime(rst.getString(12)); if
* (time > 0) { String temp = rst.getString(7);
* if(temp==null){ temp="0.00"; }
* temp=ad.indexcompose(temp);
* temp=AdjustDecimal.ArrangeAsNumeric(temp); indexclsv=
* temp;
*
* } else { String temp1=rst.getString(6); if(temp1==null){
* temp1="0.00"; } temp1=ad.indexcompose(temp1);
* temp1=AdjustDecimal.ArrangeAsNumeric(temp1);
* indexclosing= temp1 ;
*
* } }
*/
if (rst.getString(8) == null) {
tmcv = "0.00";
} else {
String temp = rst.getString(8);
if (temp == null) {
temp = "0.00";
}
int k = temp.indexOf(".");
if (k == -1) {
tmcv = temp;
} else {
temp = temp + "00";
temp = temp.substring(0, k + 2);
temp = ad.indexcompose(temp);
temp = AdjustDecimal.ArrangeAsNumeric(temp);
tmcv = temp;
}
}
if (rst.getString(9) == null) {
divisor = "0.00";
} else {
String temp = rst.getString(9);
if (temp == null) {
temp = "0.00";
}
int k = temp.indexOf(".");
if (k == -1) {
divisor = temp;
} else {
temp = temp + "00";
temp = temp.substring(0, k + 2);
temp = ad.indexcompose(temp);
temp = AdjustDecimal.ArrangeAsNumeric(temp);
divisor = temp;
}
}
if (rst.getString(10) == null) {
currency = "0";
} else {
currency = rst.getString(10);
}
if (rst.getString(11) == null) {
indexdate = "0";
} else {
indexdate = rst.getString(11);
}
Logging.debug("Vec Values =" + indexname + " : "
+ indexid + " : " + current + " : " + indexopen
+ " : " + indexhigh + " : " + indexlow + " : "
+ indexclosing + " : " + vachange + " : " + tmcv
+ " : " + divisor + " : " + currency + ": "
+ indexdate + ": " + indexclsv + ": " + indextime);
detailindex = new DetailIndex(indexname, indexid, current,
status, indexopen, indexhigh, indexlow,
indexclosing, vachange, tmcv, divisor, currency,
indexdate, indexclsv, indextime);
tempdata.add(detailindex);
}
while (rst1.next()) {
String strpchange = "0.00", status = null;
/*
* Change by Manoj Adekar to display Previos Close value in
* the Report
*/
String curindid = null, curdate = null;
curindid = rst1.getString("index_id");
curdate = rst1.getString("index_value_date");
predate = con.getMaxDate("get_before_max_date", curdate,
curindid);
double preVal = 0.00;
preVal = con
.getIndexValue("get_oneweek_before_index_value",
predate, curindid);
/* Upto Here */
if ((((double) rst1.getDouble("index_closing_value")) != 0.00)
&& (preVal != 0.00)) {
double pchange = (((double) rst1.getDouble(2) - (double) preVal) / (double) preVal) * 100;
strpchange = new Double(pchange).toString();
Logging.debug("strpchange before adjusting is "
+ strpchange);
strpchange = ad.indexcompose(strpchange);
vachange = strpchange;
if (vachange == null)
vachange = "0.00";
Logging.debug("strpchange after adjusting is "
+ strpchange);
} else {
vachange = "0.00";
}
if (rst1.getString(13) == null) {
indexid = "0";
} else {
indexid = rst1.getString(13);
ve.add(indexid);
}
if (rst1.getString(1) == null) {
indexname = "0";
} else {
indexname = rst1.getString(1);
}
if (rst1.getString(2) == null) {
current = "0";
} else {
current = rst1.getString(2);
current = ad.indexcompose(current);
current = AdjustDecimal.ArrangeAsNumeric(current);
}
if (rst1.getString(3) == null) {
status = "--";
} else {
double change = (double) Double.parseDouble(strpchange);
if (change > 0) {
status = "up";
} else {
if (change == 0.00) {
status = "mid";
} else {
// dd = new Double(change);
status = "down";
}
}
}
if (rst1.getString(3) == null) {
indexopen = "0.00";
} else {
indexopen = rst1.getString(3);
indexopen = ad.indexcompose(indexopen);
indexopen = AdjustDecimal.ArrangeAsNumeric(indexopen);
}
if (rst1.getString(4) == null) {
indexhigh = "0.00";
} else {
indexhigh = rst1.getString(4);
indexhigh = ad.indexcompose(indexhigh);
indexhigh = AdjustDecimal.ArrangeAsNumeric(indexhigh);
}
if (rst1.getString(5) == null) {
indexlow = "0.00";
} else {
indexlow = rst1.getString(5);
indexlow = ad.indexcompose(indexlow);
indexlow = AdjustDecimal.ArrangeAsNumeric(indexlow);
}
if (preVal == 0.0) {
indexclsv = "0.00";
} else {
indexclsv = new Double(preVal).toString();
indexclsv = ad.indexcompose(indexclsv);
indexclsv = AdjustDecimal.ArrangeAsNumeric(indexclsv);
}
/*
* if (rst.getString(12) == null) { indextime= "0";
*
* } else { int time = comapreTime(rst.getString(12)); if
* (time > 0) { String temp = rst.getString(7);
* if(temp==null){ temp="0.00"; }
* temp=ad.indexcompose(temp);
* temp=AdjustDecimal.ArrangeAsNumeric(temp); indexclsv=
* temp;
*
* } else { String temp1=rst.getString(6); if(temp1==null){
* temp1="0.00"; } temp1=ad.indexcompose(temp1);
* temp1=AdjustDecimal.ArrangeAsNumeric(temp1);
* indexclosing= temp1 ;
*
* } }
*/
if (rst1.getString(8) == null) {
tmcv = "0.00";
} else {
String temp = rst1.getString(8);
if (temp == null) {
temp = "0.00";
}
int k = temp.indexOf(".");
if (k == -1) {
tmcv = temp;
} else {
temp = temp + "00";
temp = temp.substring(0, k + 2);
temp = ad.indexcompose(temp);
temp = AdjustDecimal.ArrangeAsNumeric(temp);
tmcv = temp;
}
}
if (rst1.getString(9) == null) {
divisor = "0.00";
} else {
String temp = rst1.getString(9);
if (temp == null) {
temp = "0.00";
}
int k = temp.indexOf(".");
if (k == -1) {
divisor = temp;
} else {
temp = temp + "00";
temp = temp.substring(0, k + 2);
temp = ad.indexcompose(temp);
temp = AdjustDecimal.ArrangeAsNumeric(temp);
divisor = temp;
}
}
if (rst1.getString(10) == null) {
currency = "0";
} else {
currency = rst1.getString(10);
}
if (rst1.getString(11) == null) {
indexdate = "0";
} else {
indexdate = rst1.getString(11);
}
Logging.debug("Vec Values =" + indexname + " : "
+ indexid + " : " + current + " : " + indexopen
+ " : " + indexhigh + " : " + indexlow + " : "
+ indexclosing + " : " + vachange + " : " + tmcv
+ " : " + divisor + " : " + currency + ": "
+ indexdate + ": " + indexclsv + ": " + indextime);
detailindex = new DetailIndex(indexname, indexid, current,
status, indexopen, indexhigh, indexlow,
indexclosing, vachange, tmcv, divisor, currency,
indexdate, indexclsv, indextime);
tempdata.add(detailindex);
}
con.closeDynaCon();
} catch (SQLException sqlexp) {
Logging.error("SQL Error :" + sqlexp.getMessage());
}
} catch (Exception ee) {
Logging.error("DEbug" + ee.getMessage());
} finally {
try {
if (connection != null)
connection.close();
} catch (Exception ee) {
try {
if (connection != null)
connection.close();
} catch (Exception ex) {
Logging.error(" Error : Unable to close connection "
+ ex.getMessage());
}
Logging.error(" Error : Unable to close connection "
+ ee.getMessage());
}
}
Logging.debug("Return Index_details of size " + details.size());
details = tempdata;
Logging.debug("The vector is......... " + ve);
setVa(ve);
return details;
}
public void setDetails(ArrayList details) {
this.details = details;
}
/**
* @param index_details
* The index_details to set.
*/
public void setIndex_details(Vector index_details) {
this.index_details = index_details;
}
/**
* @return Returns the index_details.
*/
public Vector getIndex_details() {
Connection connection = null;
String l_date = "";
String date1 = from;
// org.jfree.chart.demo.servlet.AdjustDecimal ad = new org.jfree.chart.demo.servlet.AdjustDecimal();
AdjustDecimal ad = ConnectInit.getAdjustDecimal();
Logging.debug("Before if " + date1);
// Logging.getDebug(dt_today.equals(null));
if ((date1 == null) || (date1.equals("null"))) {
Logging.debug("date null inside if");
SimpleDateFormat fr = new SimpleDateFormat("dd-MM-yyyy");
Date dt = new Date();
l_date = fr.format(dt).toString();
}
Logging.debug(l_date);
index_details = new Vector();
// Connect con=new Connect();
Connect con = ConnectInit.getConnect();
try {
if (connection == null)
connection = con.getdbConnection();
if ((date1 == null) || (date1.equals("null"))) {
rst = con.getLatestIndexDetails("get_latest_all_index_details",
l_date, userid1);
rst1 = con.getLatestIndexDetails1(
"get_latest_all_index_details_bench", l_date);
} else {
rst = con.getIndexDetails("all_index_details", date1);
}
int i = 0;
Double dd = new Double("0");
Logging.debug("setIndex_details of Compose Index");
String value = null, open = null, high = null, low = null, close = null, mcap = null, divisor = null;
try {
while (rst.next()) {
String strpchange = "0.00";
if (((double) rst.getDouble(7)) != 0.00) {
double pchange = (((double) rst.getDouble(2) - (double) rst
.getDouble(7)) / (double) rst.getDouble(7)) * 100;
strpchange = new Double(pchange).toString();
Logging.debug("strpchange before adjusting is "
+ strpchange);
strpchange = ad.indexcompose(strpchange);
Logging.debug("strpchange after adjusting is "
+ strpchange);
}
if (rst.getString(13) == null) {
index_details.add(i, "0");
} else {
index_details.add(i, rst.getString(13));
}
i++;
// Logging.getDebug("inside while");
if (rst.getString(1) == null) {
index_details.add(i, "--");
} else {
index_details.add(i, rst.getString(1));
}
i++;
if (rst.getString(2) == null) {
index_details.add(i, "0.00");
} else {
value = rst.getString(2);
value = ad.indexcompose(value);
index_details.add(i, value);
}
i++;
/*
* if (rst.getString(3) == null) { index_details.add(i,
* "--"); } else { double change =
* (double)Double.parseDouble(strpchange); if (change > 0) {
* index_details.add(i, "up"); } else { if(change==0.00) {
* index_details.add(i, "mid"); }else{ //dd = new
* Double(change); index_details.add(i, "down"); } } } i++;
*/
if (rst.getString(3) == null) {
index_details.add(i, "0.00");
} else {
open = rst.getString(3);
open = ad.indexcompose(open);
index_details.add(i, open);
}
i++;
if (rst.getString(4) == null) {
index_details.add(i, "0.00");
} else {
high = rst.getString(4);
high = ad.indexcompose(high);
index_details.add(i, high);
}
i++;
if (rst.getString(5) == null) {
index_details.add(i, "0.00");
} else {
low = rst.getString(5);
low = ad.indexcompose(low);
index_details.add(i, low);
}
i++;
if (rst.getString(12) == null) {
index_details.add(i, "0");
} else {
int time = comapreTime(rst.getString(12));
if (time > 0) {
String temp = rst.getString(7);
if (temp == null) {
temp = "0.00";
}
temp = ad.indexcompose(temp);
index_details.add(i, temp);
} else {
String temp1 = rst.getString(6);
if (temp1 == null) {
temp1 = "0.00";
}
temp1 = ad.indexcompose(temp1);
index_details.add(i, temp1);
}
}
i++;
/*
* if (rst.getString(8) == null) { index_details.add(i,
* "0.00"); } else { String temp=dd.toString();
* if(temp==null){ temp="0.00"; } int k=temp.indexOf(".");
* if(k==-1){ index_details.add(i,temp ); }else{
* temp=temp+"00"; temp=temp.substring(0,k+2);
* index_details.add(i, temp); } }
*/
index_details.add(i, strpchange);
i++;
if (rst.getString(8) == null) {
index_details.add(i, "0.00");
} else {
String temp = rst.getString(8);
if (temp == null) {
temp = "0.00";
}
int k = temp.indexOf(".");
if (k == -1) {
index_details.add(i, temp);
} else {
temp = temp + "00";
temp = temp.substring(0, k + 2);
temp = ad.indexcompose(temp);
index_details.add(i, temp);
}
}
i++;
if (rst.getString(9) == null) {
index_details.add(i, "0.00");
} else {
String temp = rst.getString(9);
if (temp == null) {
temp = "0.00";
}
int k = temp.indexOf(".");
if (k == -1) {
index_details.add(i, temp);
} else {
temp = temp + "00";
temp = temp.substring(0, k + 2);
temp = ad.indexcompose(temp);
index_details.add(i, temp);
}
}
i++;
if (rst.getString(10) == null) {
index_details.add(i, "--");
} else {
index_details.add(i, rst.getString(10));
}
i++;
if (rst.getString(11) == null) {
index_details.add(i, "--");
} else {
index_details.add(i, rst.getString(11));
}
i++;
}
// **********************Code for Export to excel By: Manoj
// Adekar***************************
while (rst1.next()) {
String strpchange = "0.00";
if (((double) rst1.getDouble(7)) != 0.00) {
double pchange = (((double) rst1.getDouble(2) - (double) rst1
.getDouble(7)) / (double) rst1.getDouble(7)) * 100;
strpchange = new Double(pchange).toString();
Logging.debug("strpchange before adjusting is "
+ strpchange);
strpchange = ad.indexcompose(strpchange);
Logging.debug("strpchange after adjusting is "
+ strpchange);
}
if (rst1.getString(13) == null) {
index_details.add(i, "0");
} else {
index_details.add(i, rst1.getString(13));
}
i++;
// Logging.getDebug("inside while");
if (rst1.getString(1) == null) {
index_details.add(i, "--");
} else {
index_details.add(i, rst1.getString(1));
}
i++;
if (rst1.getString(2) == null) {
index_details.add(i, "0.00");
} else {
value = rst1.getString(2);
value = ad.indexcompose(value);
index_details.add(i, value);
}
i++;
/*
* if (rst1.getString(3) == null) { index_details.add(i,
* "--"); } else { double change =
* (double)Double.parseDouble(strpchange); if (change > 0) {
* index_details.add(i, "up"); } else { if(change==0.00) {
* index_details.add(i, "mid"); }else{ //dd = new
* Double(change); index_details.add(i, "down"); } } } i++;
*/
if (rst1.getString(3) == null) {
index_details.add(i, "0.00");
} else {
open = rst1.getString(3);
open = ad.indexcompose(open);
index_details.add(i, open);
}
i++;
if (rst1.getString(4) == null) {
index_details.add(i, "0.00");
} else {
high = rst1.getString(4);
high = ad.indexcompose(high);
index_details.add(i, high);
}
i++;
if (rst1.getString(5) == null) {
index_details.add(i, "0.00");
} else {
low = rst1.getString(5);
low = ad.indexcompose(low);
index_details.add(i, low);
}
i++;
if (rst1.getString(12) == null) {
index_details.add(i, "0");
} else {
int time = comapreTime(rst1.getString(12));
if (time > 0) {
String temp = rst1.getString(7);
if (temp == null) {
temp = "0.00";
}
temp = ad.indexcompose(temp);
index_details.add(i, temp);
} else {
String temp1 = rst1.getString(6);
if (temp1 == null) {
temp1 = "0.00";
}
temp1 = ad.indexcompose(temp1);
index_details.add(i, temp1);
}
}
i++;
/*
* if (rst1.getString(8) == null) { index_details.add(i,
* "0.00"); } else { String temp=dd.toString();
* if(temp==null){ temp="0.00"; } int k=temp.indexOf(".");
* if(k==-1){ index_details.add(i,temp ); }else{
* temp=temp+"00"; temp=temp.substring(0,k+2);
* index_details.add(i, temp); } }
*/
index_details.add(i, strpchange);
i++;
if (rst1.getString(8) == null) {
index_details.add(i, "0.00");
} else {
String temp = rst1.getString(8);
if (temp == null) {
temp = "0.00";
}
int k = temp.indexOf(".");
if (k == -1) {
index_details.add(i, temp);
} else {
temp = temp + "00";
temp = temp.substring(0, k + 2);
temp = ad.indexcompose(temp);
index_details.add(i, temp);
}
}
i++;
if (rst1.getString(9) == null) {
index_details.add(i, "0.00");
} else {
String temp = rst1.getString(9);
if (temp == null) {
temp = "0.00";
}
int k = temp.indexOf(".");
if (k == -1) {
index_details.add(i, temp);
} else {
temp = temp + "00";
temp = temp.substring(0, k + 2);
temp = ad.indexcompose(temp);
index_details.add(i, temp);
}
}
i++;
if (rst1.getString(10) == null) {
index_details.add(i, "--");
} else {
index_details.add(i, rst1.getString(10));
}
i++;
if (rst1.getString(11) == null) {
index_details.add(i, "--");
} else {
index_details.add(i, rst1.getString(11));
}
i++;
// Upto Here
}
} catch (SQLException sqlexp) {
Logging.error("SQL Error :" + sqlexp.getMessage());
}
} catch (Exception ee) {
Logging.error("DEbug" + ee.getMessage());
} finally {
try {
if (connection != null)
connection.close();
} catch (Exception ee) {
try {
if (connection != null)
connection.close();
} catch (Exception ex) {
Logging.error(" Error : Unable to close connection "
+ ex.getMessage());
}
Logging.error(" Error : Unable to close connection "
+ ee.getMessage());
}
}
Logging.debug("Return Index_details of size "
+ index_details.size());
return index_details;
}
public String getIndexListUrl(HttpServletRequest request) {
String url = null;
// org.jfree.chart.demo.servlet.ComposeIndex ci = new org.jfree.chart.demo.servlet.ComposeIndex();
ComposeIndex ci=ConnectInit.getComposeIndex();
String[] indid = request.getParameterValues("indexid1");
String button = request.getParameter("operation");
if (button != null) {
String idcorr = "D1=";
String idcorr1 = null;
String report = request.getParameter("D1");
if (indid != null) {
Logging
.debug("index id array length is " + indid.length);
for (int i = 0; i < indid.length; i++) {
Logging.debug("index id array element is "
+ indid[i]);
if (i == 0) {
idcorr = "D1=" + indid[i];
} else {
idcorr = idcorr + "&D1=" + indid[i];
if (report.equals("2")) {
idcorr1 = idcorr1 + "&D2=" + indid[i];
}
}
}
if (button.equals("Go") && indid != null && indid.length > 0) {
Vector vdate = new Vector();
vdate = ci.getFromToDate();
Logging.debug("vector size " + vdate.size());
if (vdate.size() != 0) {
String fdate = (String) vdate.get(0);
String tdate = (String) vdate.get(1);
Logging.debug("fromdate is " + fdate
+ " to date is " + tdate);
Logging.debug("Inside go" + report);
if (report.equals("1")) {
url = "/pages/IndexCorrelation.jsp?" + idcorr
+ "&from=" + fdate + "&to=" + tdate
+ "&B1=View";
Logging.debug("url is " + url);
}
if (report.equals("2")) {
url = "/pages/reports/IndexCompare1S.jsp?"
+ idcorr1 + "&from=" + fdate + "&to="
+ tdate + "&B1=Compare";
Logging.debug("url is " + url);
}
if (report.equals("3")) {
url = "/pages/reports/IndexReturns_VolatilityS.jsp?"
+ idcorr
+ "&from="
+ fdate
+ "&to="
+ tdate + "&B1=View";
Logging.debug("getIndexListUrl " + url);
}
}
}
}
}
return url;
}
public void setIndexListUrl(String logi1) {
String url = logi1;
}
public int comapreTime(String time) {
String[] time1 = time.split(":");
Date dt = new Date();
dt.getDate();
String[] time2 = dt.toString().split(" ");
time2 = time2[3].toString().split(":");
for (int i = 0; i < time1.length; i++) {
if (Integer.parseInt(time1[i]) > Integer.parseInt(time2[i]))
return 1;
else if (Integer.parseInt(time1[i]) < Integer.parseInt(time2[i]))
return -1;
}
return 2;
}
public String getIndexid1() {
Logging.debug(" ******** value oof indexid " + indexid1);
return indexid1;
}
public void setIndexid1(String logi) {
indexid1 = logi;
}
public Vector getVa() {
Logging.debug(" ******** value oof indexid " + va);
return va;
}
public void setVa(Vector va) {
this.va = va;
}
public String getB_showChild() {
return b_showChild;
}
public void setB_showChild(String child) {
b_showChild = child;
}
public Vector getVw() {
if (vw != null)
Logging.debug(" size of vector " + vw.size());
return vw;
}
/**
* @return Returns the vw.
*/
public void setVw(Vector vw) {
this.vw = vw;
}
public void setComputetotalreturns(String computetotalreturns) {
this.computetotalreturns = computetotalreturns;
}
Connect c = ConnectInit.getConnect();
Collection indexcollection;
public Collection getIndexcollection() {
Connection connection = null;
Logging.debug("b_ShowChild :: " + getB_showChild());
if (getB_showChild() != null && getB_showChild().trim().equals("on")) {
query = ConnectInit.queries.getProperty("index_list");
} else {
query = ConnectInit.queries.getProperty("index_list_without_child");
}
String id1 = null;
Vector v = new Vector();
ResultSet rs;
try {
if (connection == null)
connection = c.getdbConnection();
Statement stmt = connection.createStatement();
rs = stmt.executeQuery(query);
AcessControl asc = ConnectInit.getAcessControl();
// AcessControl asc = new AcessControl();
String NotSelected = asc.getLangValues("Masters.NotSelected");
Logging.debug(" Inside getIndexcollection(): Not Selected ="
+ NotSelected);
v.add(new LabelValueBean("Not Selected", "0"));
while (rs.next()) {
id1 = rs.getString(1);
v.add(new LabelValueBean(rs.getString(2), id1));
}
indexcollection = v;
} catch (Exception e) {
// TODO: handle exception
Logging.error(" Error :" + e.getMessage());
//e.printStackTrace();
} finally {
try {
if (connection != null)
connection.close();
} catch (Exception ee) {
try {
if (connection != null)
connection.close();
} catch (Exception ex) {
Logging.error(" Error : Unable to close connection "
+ ex.getMessage());
}
Logging.error(" Error : Unable to close connection "
+ ee.getMessage());
}
}
return indexcollection;
}
/**
* @param indexcollection
* The indexcollection to set.
*/
public void setIndexcollection(Collection indexcollection) {
this.indexcollection = indexcollection;
}
public String getIndex() {
return index;
}
/**
* @param index
* The index to set.
*/
public void setIndex(String index) {
Logging.debug("setIndex index " + index);
if (index != null)
this.index = index;
}
/**
* @return Returns the selectCollection.
*/
public String getCompute() {
return compute;
}
/**
* @param compute
* The compute to set.
*/
public void setCompute(String compute) {
this.compute = compute;
}
public String getText() {
return text;
}
/**
*
* @param text
* The text to set
*/
public void setText(String text) {
this.text = text;
}
/**
* @return Returns the clear.
*/
public String getClear() {
return clear;
}
/**
* @param clear
* The clear to set.
*/
public void setClear(String clear) {
this.clear = clear;
}
/**
* @return Returns the from.
*/
public String getFrom() {
return from;
}
/**
* @param from
* The fromDate to set.
*/
public void setFrom(String from) {
this.from = from;
}
/**
* @return check Returns the check
*/
public String getCheck() {
return check;
}
/**
*
* @param check
* The check to set
*/
public void setCheck(String check) {
this.check = check;
}
/**
*
* @return checkChart Returns the checkChart
*/
public String getCheckChart() {
return checkChart;
}
/**
*
* @param checkChart
* The checkChart to set
*/
public void setCheckChart(String checkChart) {
this.checkChart = checkChart;
}
/**
* @return Returns the selectStock.
*/
public String getSelectStock() {
return selectStock;
}
/**
* @param selectStock
* The selectStock to set.
*/
public void setSelectStock(String selectStock) {
this.selectStock = selectStock;
}
/**
* Database Connectivity
* */
public void dbconnect() {
Connect con = ConnectInit.getConnect();
try {
if (connection == null) {
connection = con.getdbConnection();
}
} catch (Exception e) {
Logging.error(" Error : " + e.getMessage());
}
}
public void reset_stkevent() {
from = null;
go = null;
clear = null;
to = null;
}
/**
* @return Returns the toDate.
*/
public String getTo() {
return to;
}
/**
* @param to
* The toDate to set.
*/
public void setTo(String to) {
this.to = to;
}
/**
* @return Returns the defaultVal.
*/
public String getDefaultVal() {
return defaultVal;
}
/**
* @param defaultVal
* The defaultVal to set.
*/
public void setDefaultVal(String defaultVal) {
this.defaultVal = defaultVal;
}
public String getSelectIndex() {
return selectIndex;
}
/**
* @param select
* The select to set.
*/
public void setSelectIndex(String selectIndex) {
this.selectIndex = selectIndex;
}
public String getRoleid1() {
return roleid1;
}
public void setRoleid1(String roleid1) {
this.roleid1 = roleid1;
}
}
| [
"[email protected]"
] | |
5b305652ded8462e008fafb72c293afc0aaa7509 | c80fe9b84c13787575bec0622203ca532cd7eac9 | /src/buildings/VentarolaBuilding.java | 37fecb9efbbd8d96a057f54d4f1f7333736992ca | [
"MIT"
] | permissive | xtymichael/OpenGL_Game | c4cdc530125bbaad59405cb5b474c26df168bf14 | 10fa9e443122cbaab23f3776da09e4548ebc170c | refs/heads/master | 2021-01-20T08:46:26.187893 | 2015-09-28T13:52:48 | 2015-09-28T13:52:48 | 42,130,570 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 17,943 | java | package buildings;
import game.Building;
import javax.media.opengl.GL2;
import javax.media.opengl.glu.GLU;
import javax.media.opengl.glu.GLUquadric;
import com.jogamp.opengl.util.texture.Texture;
public class VentarolaBuilding extends Building{
private GLUquadric quadric;
private Texture ventarolaGrass;
private Texture ventarolaWood;
private Texture ventarolaRock;
private Texture ventarolaBrick;
private Texture ventarolaWallPaper;
private Texture ventarolaMarble;
private Texture ventarolaPollock;
public VentarolaBuilding(GL2 gl, GLU glu) {
quadric = glu.gluNewQuadric();
glu.gluQuadricDrawStyle(quadric, GLU.GLU_FILL); // GLU_POINT, GLU_LINE, GLU_FILL, GLU_SILHOUETTE
glu.gluQuadricNormals (quadric, GLU.GLU_NONE); // GLU_NONE, GLU_FLAT, or GLU_SMOOTH
glu.gluQuadricTexture (quadric, true); // true to generate texture coordinates
ventarolaWood = setupTexture(gl, "wood032.gif");
ventarolaGrass = setupTexture(gl, "dgren050.gif");
ventarolaRock = setupTexture(gl, "drock084.jpg");
ventarolaBrick = setupTexture(gl, "brick039.jpg");
ventarolaWallPaper = setupTexture(gl, "paper005.gif");
ventarolaMarble = setupTexture(gl, "marb076.jpg");
ventarolaPollock = setupTexture(gl, "pollock.jpg");
}
@Override
public void draw(GL2 gl, GLU glu) {
drawFoundation(gl, glu);
drawGarage(gl, glu);
drawRoof(gl, glu);
drawWalls(gl, glu);
drawFurniture(gl, glu);
drawWindows(gl, glu);
}
public void drawLamp(GL2 gl, GLU glu, float x, float z) {
gl.glPushMatrix();//hanging lamp
gl.glRotatef(-90f, 1f, 0f, 0f);
gl.glTranslated(x, -z, 9);
gl.glColor3f(.7f, .7f, .7f);
glu.gluCylinder(quadric, .1, .1, 2, 10, 10);
glu.gluSphere(quadric, .8, 10, 10);
gl.glTranslated(0, 0, -1);
gl.glEnable(GL2.GL_BLEND);
gl.glBlendFunc(GL2.GL_SRC_ALPHA, GL2.GL_ONE_MINUS_SRC_ALPHA);
gl.glColor4f(.7f,.1f,.1f, .9f); // dimmer yellow, translucent
glu.gluCylinder(quadric, 1, 1, 2, 10, 10);
gl.glDisable(GL2.GL_BLEND);
gl.glPopMatrix();
}
public void drawFurniture(GL2 gl, GLU glu) {
gl.glPushMatrix();
gl.glColor3f(.5f, .5f, .5f);
gl.glRotatef(-90f, 1f, 0f, 0f);
gl.glTranslatef(80, -58, 1);
gl.glColor3f(.7f, .1f, .1f); //ottoman sides
glu.gluCylinder(quadric, 7, 7, 2, 10, 10);
glu.gluCylinder(quadric, 4, 4, 4, 10, 10);
gl.glColor3f(.8f, .8f, .8f); //ottoman cushions
gl.glTranslatef(0, 0, 2);
glu.gluDisk(quadric, 0, 7, 10, 10);
gl.glTranslatef(0,0,2);
glu.gluDisk(quadric, 0, 4, 10, 10);
gl.glPopMatrix();
drawLamp(gl, glu, 35, 58);
drawLamp(gl, glu, 35, 72);
drawLamp(gl, glu, 50, 58);
drawLamp(gl, glu, 50, 72);
drawLamp(gl, glu, 65, 58);
drawLamp(gl, glu, 65, 72);
drawLamp(gl, glu, 80, 58);
drawLamp(gl, glu, 80, 72);
gl.glEnable(GL2.GL_TEXTURE_2D);
ventarolaPollock.bind(gl);
gl.glBegin(GL2.GL_QUADS);
gl.glTexCoord2f(0, 0); gl.glVertex3f(30.05f, 5, 70); //picture
gl.glTexCoord2f(0, 1); gl.glVertex3f(30.05f, 9, 70);
gl.glTexCoord2f(1, 1); gl.glVertex3f(30.05f, 9, 60);
gl.glTexCoord2f(1, 0); gl.glVertex3f(30.05f, 5, 60);
gl.glEnd();
gl.glDisable(GL2.GL_TEXTURE_2D);
}
public void drawWalls(GL2 gl, GLU glu) {
gl.glEnable(GL2.GL_TEXTURE_2D);
ventarolaWallPaper.bind(gl);
gl.glBegin(GL2.GL_QUADS);
gl.glTexCoord2f(0,0); gl.glVertex3f(30, 8, 30); //right
gl.glTexCoord2f(0,2); gl.glVertex3f(30, 11, 30);
gl.glTexCoord2f(8,2); gl.glVertex3f(30, 11, 50);
gl.glTexCoord2f(8,0); gl.glVertex3f(30, 8, 50);
gl.glTexCoord2f(0,0); gl.glVertex3f(30, 8, 98); //back left
gl.glTexCoord2f(0,2); gl.glVertex3f(30, 11, 98);
gl.glTexCoord2f(8,2); gl.glVertex3f(55, 11, 98);
gl.glTexCoord2f(8,0); gl.glVertex3f(55, 8, 98);
gl.glTexCoord2f(0,0); gl.glVertex3f(55, 4, 98); //back
gl.glTexCoord2f(0,8); gl.glVertex3f(55, 11, 98);
gl.glTexCoord2f(8,8); gl.glVertex3f(80, 11, 98);
gl.glTexCoord2f(8,0); gl.glVertex3f(80, 4, 98);
gl.glTexCoord2f(0,0); gl.glVertex3f(30, 4, 30); //front right
gl.glTexCoord2f(0,8); gl.glVertex3f(30, 11, 30);
gl.glTexCoord2f(8,8); gl.glVertex3f(45, 11, 30);
gl.glTexCoord2f(8,0); gl.glVertex3f(45, 4, 30);
gl.glTexCoord2f(0,0); gl.glVertex3f(45, 8, 30); //front mid
gl.glTexCoord2f(0,2); gl.glVertex3f(45, 11, 30);
gl.glTexCoord2f(8,2); gl.glVertex3f(60, 11, 30);
gl.glTexCoord2f(8,0); gl.glVertex3f(60, 8, 30);
gl.glEnd();
gl.glEnable(GL2.GL_CULL_FACE);
gl.glBegin(GL2.GL_QUADS);
gl.glTexCoord2f(0,0); gl.glVertex3f(30, 1, 30); //right
gl.glTexCoord2f(0,2); gl.glVertex3f(30, 1, 50);
gl.glTexCoord2f(8,2); gl.glVertex3f(30, 4, 50);
gl.glTexCoord2f(8,0); gl.glVertex3f(30, 4, 30);
gl.glTexCoord2f(0,0); gl.glVertex3f(30, 1, 98); //back
gl.glTexCoord2f(0,2); gl.glVertex3f(80, 1, 98);
gl.glTexCoord2f(8,2); gl.glVertex3f(80, 4, 98);
gl.glTexCoord2f(8,0); gl.glVertex3f(30, 4, 98);
gl.glTexCoord2f(0,0); gl.glVertex3f(30, 1, 30); //front
gl.glTexCoord2f(0,8); gl.glVertex3f(30, 4, 30);
gl.glTexCoord2f(8,8); gl.glVertex3f(60, 4, 30);
gl.glTexCoord2f(8,0); gl.glVertex3f(60, 1, 30);
gl.glEnd();
ventarolaMarble.bind(gl);
gl.glBegin(GL2.GL_QUADS);
gl.glTexCoord2f(0,0); gl.glVertex3f(30, 1, 30); //right
gl.glTexCoord2f(0,2); gl.glVertex3f(30, 4, 30);
gl.glTexCoord2f(8,2); gl.glVertex3f(30, 4, 50);
gl.glTexCoord2f(8,0); gl.glVertex3f(30, 1, 50);
gl.glTexCoord2f(0,0); gl.glVertex3f(30, 1, 98); //back
gl.glTexCoord2f(0,2); gl.glVertex3f(30, 4, 98);
gl.glTexCoord2f(16,2); gl.glVertex3f(80, 4, 98);
gl.glTexCoord2f(16,0); gl.glVertex3f(80, 1, 98);
gl.glTexCoord2f(0,0); gl.glVertex3f(30, 1, 30); //front
gl.glTexCoord2f(0,16); gl.glVertex3f(60, 1, 30);
gl.glTexCoord2f(2,16); gl.glVertex3f(60, 4, 30);
gl.glTexCoord2f(2,0); gl.glVertex3f(30, 4, 30);
gl.glEnd();
gl.glDisable(GL2.GL_CULL_FACE);
gl.glDisable(GL2.GL_TEXTURE_2D);
}
public void drawRoof(GL2 gl, GLU glu) {
gl.glColor3f(.9f, .8f, .8f);
gl.glBegin(GL2.GL_QUADS);
gl.glVertex3f(99, 11, 50); //front of garage
gl.glVertex3f(3, 11, 50);
gl.glVertex3f(24, 11, 24);
gl.glVertex3f(99, 11, 24);
gl.glVertex3f(99, 11, 100);//next to garage
gl.glVertex3f(3, 11, 100);
gl.glVertex3f(3, 11, 50);
gl.glVertex3f(99, 11, 50);
gl.glVertex3f(99, 11, 100); //back
gl.glVertex3f(99, 12, 100);
gl.glVertex3f(1, 12, 100);
gl.glVertex3f(3, 11, 100);
gl.glVertex3f(3, 11, 100);//right side
gl.glVertex3f(1, 12, 100);
gl.glVertex3f(1, 12, 48);
gl.glVertex3f(3, 11, 50);
gl.glVertex3f(3, 11, 50);//garage overhang
gl.glVertex3f(1, 12, 48);
gl.glVertex3f(22, 12, 22);
gl.glVertex3f(24, 11, 24);
gl.glVertex3f(24, 11, 24);//front
gl.glVertex3f(22, 12, 22);
gl.glVertex3f(99, 12, 22);
gl.glVertex3f(99, 11, 24);
gl.glVertex3f(99, 11, 24);//left
gl.glVertex3f(99, 12, 22);
gl.glVertex3f(99, 12, 100);
gl.glVertex3f(99, 11, 100);
gl.glVertex3f(99, 12, 100);//top left
gl.glVertex3f(99, 12, 22);
gl.glVertex3f(24, 12, 22);
gl.glVertex3f(24, 12, 100);
gl.glVertex3f(24, 12, 100);//top right
gl.glVertex3f(24, 12, 22);
gl.glVertex3f(3, 12, 48);
gl.glVertex3f(3, 12, 100);
gl.glEnd();
}
public void drawWindows(GL2 gl, GLU glu) {
gl.glPushMatrix();
gl.glColor3f(.1f, .1f, .1f);
gl.glRotatef(-90f, 1f, 0f, 0f);
//front pillars
gl.glTranslatef(96, -31, 0);
glu.gluCylinder(quadric, 2, 3, 11., 10, 10);
gl.glTranslatef(-10, 0, 0);
glu.gluCylinder(quadric, 2, 3, 11., 10, 10);
gl.glTranslatef(-10, 0, 0);
glu.gluCylinder(quadric, 2, 3, 11., 10, 10);
gl.glTranslatef(-16, 0, 0);
glu.gluCylinder(quadric, 2, 3, 11., 10, 10);
gl.glTranslatef(-15, 0, 0);
glu.gluCylinder(quadric, 2, 3, 11., 10, 10);
gl.glTranslatef(-14, 0, 0);
glu.gluCylinder(quadric, 2, 3, 11., 10, 10);
//right pillars
gl.glTranslatef(0, -19, 0);
glu.gluCylinder(quadric, 2, 3, 11., 10, 10);
gl.glTranslatef(0, -47, 0);
glu.gluCylinder(quadric, 2, 3, 11., 10, 10);
//back pillars
gl.glTranslatef(25, 0, 0);
glu.gluCylinder(quadric, 2, 3, 11., 10, 10);
gl.glTranslatef(25, 0, 0);
glu.gluCylinder(quadric, 2, 3, 11., 10, 10);
gl.glTranslatef(15, 0, 0);
glu.gluCylinder(quadric, 2, 3, 11., 10, 10);
//left pillars
gl.glTranslatef(0, 22, 0);
glu.gluCylinder(quadric, 2, 3, 11., 10, 10);
gl.glTranslatef(0, 22, 0);
glu.gluCylinder(quadric, 2, 3, 11., 10, 10);
gl.glPopMatrix();
gl.glBegin(GL2.GL_QUADS);
gl.glVertex3f(66, 1, 30);//right of door
gl.glVertex3f(66, 10, 30);
gl.glVertex3f(65, 10, 30);
gl.glVertex3f(65, 1, 30);
gl.glVertex3f(70, 1, 30);//left of door
gl.glVertex3f(70, 10, 30);
gl.glVertex3f(71, 10, 30);
gl.glVertex3f(71, 1, 30);
gl.glVertex3f(75, 10, 30);//above door
gl.glVertex3f(75, 11, 30);
gl.glVertex3f(60, 11, 30);
gl.glVertex3f(60, 10, 30);
gl.glEnd();
gl.glEnable(GL2.GL_BLEND);
gl.glBlendFunc(GL2.GL_SRC_ALPHA, GL2.GL_ONE_MINUS_SRC_ALPHA);
gl.glColor4f(.9f,.9f,.7f, .3f); // dimmer yellow, translucent
gl.glBegin(GL2.GL_QUADS);
gl.glVertex3f(65, 1, 30);//right of door
gl.glVertex3f(65, 10, 30);
gl.glVertex3f(60, 10, 30);
gl.glVertex3f(60, 1, 30);
gl.glVertex3f(75, 1, 30);//left of door
gl.glVertex3f(75, 10, 30);
gl.glVertex3f(71, 10, 30);
gl.glVertex3f(71, 1, 30);
gl.glVertex3f(30, 8, 98); //back right
gl.glVertex3f(55, 8, 98);
gl.glVertex3f(55, 4, 98);
gl.glVertex3f(30, 4, 98);
gl.glVertex3f(30, 4, 32); //right
gl.glVertex3f(30, 4, 48);
gl.glVertex3f(30, 8, 48);
gl.glVertex3f(30, 8, 32);
gl.glVertex3f(45, 8, 30); //front right
gl.glVertex3f(60, 8, 30);
gl.glVertex3f(60, 4, 30);
gl.glVertex3f(45, 4, 30);
gl.glVertex3f(65, 1, 30);//right of door
gl.glVertex3f(65, 8, 30);
gl.glVertex3f(60, 8, 30);
gl.glVertex3f(60, 1, 30);
gl.glVertex3f(75, 1, 30);//left of door
gl.glVertex3f(75, 8, 30);
gl.glVertex3f(71, 8, 30);
gl.glVertex3f(71, 1, 30);
gl.glVertex3f(80, 1, 98); //back left
gl.glVertex3f(95, 1, 98);
gl.glVertex3f(95, 11, 98);
gl.glVertex3f(80, 11, 98);
gl.glVertex3f(97, 1, 32); //left
gl.glVertex3f(97, 1, 96);
gl.glVertex3f(97, 11, 96);
gl.glVertex3f(97, 11, 32);
gl.glVertex3f(75, 11, 30); //front left
gl.glVertex3f(95, 11, 30);
gl.glVertex3f(95, 1, 30);
gl.glVertex3f(75, 1, 30);
gl.glEnd();
gl.glDisable(GL2.GL_BLEND);
}
public void drawGarage(GL2 gl, GLU glu) {
gl.glColor3f(0, .2f, .3f);
gl.glPushMatrix();
gl.glRotatef(-90f, 1f, 0f, 0f); // stand upright (Y)
gl.glTranslatef(27, -95, 0);
gl.glColor3f(.3f, .2f, .3f);
glu.gluCylinder(quadric, 3., 3, 11., 10, 10); //boiler
gl.glColor3f(.5f, .3f, .1f);
gl.glTranslatef(-4, -1.5f, 0);
glu.gluCylinder(quadric, .25, .25, 4., 6, 10); //table legs
gl.glTranslatef(-8, 0, 0);
glu.gluCylinder(quadric, .25, .25, 4., 6, 10);
gl.glTranslated(0, 3, 0);
glu.gluCylinder(quadric, .25, .25, 4., 6, 10);
gl.glTranslated(8, 0, 0);
glu.gluCylinder(quadric, .25, .25, 4., 6, 10);
gl.glPopMatrix();
gl.glEnable(GL2.GL_TEXTURE_2D);
ventarolaBrick.bind(gl);
gl.glBegin(GL2.GL_QUADS);
gl.glTexCoord2f(0,0); gl.glVertex3f(5,0,98); //right wall
gl.glTexCoord2f(8,0); gl.glVertex3f(5,11,98);
gl.glTexCoord2f(8,32); gl.glVertex3f(5,11,50);
gl.glTexCoord2f(0,32); gl.glVertex3f(5,0,50);
gl.glTexCoord2f(0,0); gl.glVertex3f(30,0,98); //back wall
gl.glTexCoord2f(8,0); gl.glVertex3f(30,11,98);
gl.glTexCoord2f(8,16); gl.glVertex3f(5,11,98);
gl.glTexCoord2f(0,16); gl.glVertex3f(5,0,98);
gl.glEnd();
gl.glEnable(GL2.GL_CULL_FACE);
gl.glBegin(GL2.GL_QUADS);
gl.glTexCoord2f(0,0); gl.glVertex3f(30,0,90); //house wall 1 back
gl.glTexCoord2f(0,6); gl.glVertex3f(30,0,98);
gl.glTexCoord2f(8,6); gl.glVertex3f(30,11,98);
gl.glTexCoord2f(8,0); gl.glVertex3f(30,11,90);
gl.glTexCoord2f(0,0); gl.glVertex3f(30,8,86); //house wall 2 back
gl.glTexCoord2f(0,4); gl.glVertex3f(30,8,90);
gl.glTexCoord2f(2.2f,4); gl.glVertex3f(30,11,90);
gl.glTexCoord2f(2.2f,0); gl.glVertex3f(30,11,86);
gl.glTexCoord2f(0,0); gl.glVertex3f(30,0,50); //house wall 3 back
gl.glTexCoord2f(0,32); gl.glVertex3f(30,0,86);
gl.glTexCoord2f(8,32); gl.glVertex3f(30,11,86);
gl.glTexCoord2f(8,0); gl.glVertex3f(30,11,50);
gl.glTexCoord2f(0,0); gl.glVertex3f(5,10.95f,50); //garage roof
gl.glTexCoord2f(0,16); gl.glVertex3f(30,10.95f,50);
gl.glTexCoord2f(32,16); gl.glVertex3f(30,10.95f,98);
gl.glTexCoord2f(32,0); gl.glVertex3f(5,10.95f,98);
gl.glEnd();
ventarolaWallPaper.bind(gl);
gl.glBegin(GL2.GL_QUADS);
gl.glTexCoord2f(0,8); gl.glVertex3f(30,4,90); //house wall 1 top
gl.glTexCoord2f(6,8); gl.glVertex3f(30,11,90);
gl.glTexCoord2f(6,0); gl.glVertex3f(30,11,98);
gl.glTexCoord2f(0,0); gl.glVertex3f(30,4,98);
gl.glTexCoord2f(0,2.2f); gl.glVertex3f(30,8,86); //house wall 2
gl.glTexCoord2f(4,2.2f); gl.glVertex3f(30,11,86);
gl.glTexCoord2f(4,0); gl.glVertex3f(30,11,90);
gl.glTexCoord2f(0,0); gl.glVertex3f(30,8,90);
gl.glTexCoord2f(0,32); gl.glVertex3f(30,4,50); //house wall 3 top
gl.glTexCoord2f(8,32); gl.glVertex3f(30,11,50);
gl.glTexCoord2f(8,0); gl.glVertex3f(30,11,86);
gl.glTexCoord2f(0,0); gl.glVertex3f(30,4,86);
gl.glEnd();
ventarolaMarble.bind(gl);
gl.glBegin(GL2.GL_QUADS);
gl.glTexCoord2f(0,4); gl.glVertex3f(30,1,90); //house wall 1 bottom
gl.glTexCoord2f(2,4); gl.glVertex3f(30,4,90);
gl.glTexCoord2f(2,0); gl.glVertex3f(30,4,98);
gl.glTexCoord2f(0,0); gl.glVertex3f(30,1,98);
gl.glTexCoord2f(0,16); gl.glVertex3f(30,1,50); //house wall 3 bottom
gl.glTexCoord2f(2,16); gl.glVertex3f(30,4,50);
gl.glTexCoord2f(2,0); gl.glVertex3f(30,4,86);
gl.glTexCoord2f(0,0); gl.glVertex3f(30,1,86);
gl.glEnd();
ventarolaWood.bind(gl);
gl.glBegin(GL2.GL_QUADS);
gl.glTexCoord2f(0,0); gl.glVertex3f(5,11,50); //garage roof
gl.glTexCoord2f(0,32); gl.glVertex3f(5,11,98);
gl.glTexCoord2f(8,32); gl.glVertex3f(30,11,98);
gl.glTexCoord2f(8,0); gl.glVertex3f(30,11,50);
gl.glTexCoord2f(0,0); gl.glVertex3f(14.5f,4,93f); //table
gl.glTexCoord2f(0,8); gl.glVertex3f(14.5f,4,97f);
gl.glTexCoord2f(4,8); gl.glVertex3f(23.5f,4,97f);
gl.glTexCoord2f(4,0); gl.glVertex3f(23.5f, 4, 93f);
gl.glEnd();
gl.glDisable(GL2.GL_CULL_FACE);
gl.glDisable(GL2.GL_TEXTURE_2D);
}
public void drawFoundation(GL2 gl, GLU glu) {
gl.glEnable(GL2.GL_TEXTURE_2D);
ventarolaGrass.bind(gl);
gl.glBegin(GL2.GL_QUADS); //ground
gl.glTexCoord2f(0, 0); gl.glVertex3f(0, 0, 100);
gl.glTexCoord2f(32, 0); gl.glVertex3f(100, 0, 100);
gl.glTexCoord2f(32, 32); gl.glVertex3f(100, 0, 0);
gl.glTexCoord2f(0, 32); gl.glVertex3f(0, 0, 0);
gl.glEnd();
ventarolaWood.bind(gl);
gl.glBegin(GL2.GL_QUADS); //1st floor
gl.glTexCoord2f(0, 0); gl.glVertex3f(30, 1, 98);
gl.glTexCoord2f(32, 0); gl.glVertex3f(97, 1, 98);
gl.glTexCoord2f(32, 8); gl.glVertex3f(97, 1, 30);
gl.glTexCoord2f(0, 8); gl.glVertex3f(30, 1, 30);
gl.glEnd();
gl.glBegin(GL2.GL_QUADS); //stairs to house (top)
gl.glTexCoord2f(0, 0); gl.glVertex3f(66, 1, 30); //front
gl.glTexCoord2f(2, 0); gl.glVertex3f(66, 0, 25);
gl.glTexCoord2f(2, 1); gl.glVertex3f(70, 0, 25);
gl.glTexCoord2f(0, 1); gl.glVertex3f(70, 1, 30);
gl.glTexCoord2f(0, 0); gl.glVertex3f(25, 0, 90); //garage
gl.glTexCoord2f(0, 1); gl.glVertex3f(25, 0, 86);
gl.glTexCoord2f(2, 1); gl.glVertex3f(30, 1, 86);
gl.glTexCoord2f(2, 0); gl.glVertex3f(30, 1, 90);
gl.glEnd();
ventarolaRock.bind(gl);
gl.glBegin(GL2.GL_QUADS); //foundation
gl.glTexCoord2f(0, 0); gl.glVertex3f(30, 1, 30);
gl.glTexCoord2f(32, 0); gl.glVertex3f(97, 1, 30);
gl.glTexCoord2f(32, 1); gl.glVertex3f(97, 0, 30);
gl.glTexCoord2f(0, 1); gl.glVertex3f(30, 0, 30);
gl.glTexCoord2f(0, 0); gl.glVertex3f(97, 0, 98);
gl.glTexCoord2f(1, 0); gl.glVertex3f(97, 1, 98);
gl.glTexCoord2f(1, 16); gl.glVertex3f(97, 1, 30);
gl.glTexCoord2f(0, 16); gl.glVertex3f(97, 0, 30);
gl.glTexCoord2f(0, 0); gl.glVertex3f(30, 0, 50);
gl.glTexCoord2f(1, 0); gl.glVertex3f(30, 1, 50);
gl.glTexCoord2f(1, 16); gl.glVertex3f(30, 1, 30);
gl.glTexCoord2f(0, 16); gl.glVertex3f(30, 0, 30);
gl.glTexCoord2f(0, 0); gl.glVertex3f(30, 1, 98);
gl.glTexCoord2f(32, 0); gl.glVertex3f(97, 1, 98);
gl.glTexCoord2f(32, 1); gl.glVertex3f(97, 0, 98);
gl.glTexCoord2f(0, 1); gl.glVertex3f(30, 0, 98);
gl.glEnd();
gl.glBegin(GL2.GL_TRIANGLES); //stairs to house (sides)
gl.glVertex3f(70, 0, 30);
gl.glVertex3f(70, 0, 25);
gl.glVertex3f(70, 1, 30);
gl.glVertex3f(66, 0, 30);
gl.glVertex3f(66, 0, 25);
gl.glVertex3f(66, 1, 30);
gl.glVertex3f(30, 0, 90);
gl.glVertex3f(25, 0, 90);
gl.glVertex3f(30, 1, 90);
gl.glVertex3f(30, 0, 86);
gl.glVertex3f(25, 0, 86);
gl.glVertex3f(30, 1, 86);
gl.glEnd();
gl.glDisable(GL2.GL_TEXTURE_2D);
}
}
| [
"[email protected]"
] | |
afb02bbc5a14dd8966ea5a48e01297c97bddfa5a | 37acf5166285c2fd741757294caecade2b12b859 | /java casestudy/src/Companyquestions/simpleinterest.java | 9d20764f48d6ae60ec37da74247ef07e428dd63f | [] | no_license | Jinsuannavarghesepgk308/company-interview-questions | e54acfba5324147087381e5deddde11be93c03d6 | fad9a26aeee330ffe6d39d252cdbe3c0d0fb5a2d | refs/heads/master | 2020-09-11T14:40:50.482488 | 2019-11-16T13:06:58 | 2019-11-16T13:06:58 | 222,099,760 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 510 | java | package Companyquestions;
import java.util.Scanner;
public class simpleinterest {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner s=new Scanner(System.in);
System.out.println("enter the principal");
double princi=s.nextDouble();
System.out.println("enter the rate of interest");
double rate=s.nextDouble();
System.out.println("enter the time period");
double time=s.nextDouble();
double simple=(princi*rate*time)/100;
System.out.println(simple);
}
}
| [
"[email protected]"
] | |
d4480ee520686e1f5b87fe41ca903191851c7d2c | 086eb3b8c55f5385942c8a426b40ca176c07d985 | /Guia6-JavaPOO/Ejercicio2/Circunferencia.java | 2863ce4f6d4f7e165fbafcc66e7e4f4df67445cb | [] | no_license | DanyPreisz/Egg | 1b8722167ad9a55d64c452e7855e3ae9c1184d9d | ad423056e7a2681780f1931cae3e679236bab7ce | refs/heads/master | 2023-09-02T13:51:01.310261 | 2021-11-14T20:58:34 | 2021-11-14T20:58:34 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,129 | java | package Ejercicio2;
import java.util.Scanner;
/*
Declarar una clase llamada Circunferencia que tenga como atributo privado el radio
de tipo real. A continuación, se deben crear los siguientes métodos:
a) Método constructor que inicialice el radio pasado como parámetro.
b) Métodos get y set para el atributo radio de la clase Circunferencia.
c) Método para crearCircunferencia(): que le pide el radio y lo guarda en el atributo
del objeto.
d) Método area(): para calcular el área de la circunferencia (Area = π ∗ radio!).
e) Método perimetro(): para calcular el perímetro (Perimetro = 2 ∗ π ∗ radio).
*/
public class Circunferencia {
private Scanner leer = new Scanner(System.in).useDelimiter("\n");
private double radio;
//Constructor
public Circunferencia(double radio){
this.radio = radio;
}
//Constructor vacio
public Circunferencia(){
}
public void setRadio(double radio) {
this.radio = radio;
}
public double getRadio() {
return radio;
}
public void crearCircunferencia(){
System.out.println("Ingrese el radio de la circunferencia");
setRadio(leer.nextInt());
}
public double area(){
return (Math.PI * radio);
}
public double perimetro(){
return (2 * Math.PI * radio);
}
@Override
public String toString() {
return "Circunferencia: \n*radio: " + radio +
"\n*perimetro: " + perimetro() +
"\n*area: " + area();
}
public static void main(String[] args) {
Circunferencia circunferencia1 = new Circunferencia();
circunferencia1.crearCircunferencia();
//Imprimir usando el getter
System.out.println("Circunferencia: \n*radio: " + circunferencia1.getRadio() +
"\n*perimetro: " + circunferencia1.perimetro() +
"\n*area: " + circunferencia1.area());
Circunferencia circunferencia2 = new Circunferencia(5);
//Imprimir usando la funcion automatica "ToString" de la clase Circunferencia
System.out.println(circunferencia2);
}
}
| [
"[email protected]"
] | |
a3a7a476f16eba628b6e48f91b85bb7acdc6ce2a | c3342441aa5adb4e8dbbda9bb3417f2633ed1216 | /src/main/java/com/daoImpl/LoginDaoImpl.java | 8c61e62d58b142ce7af33456d4a964876cd14a34 | [] | no_license | SandamalIsuru/Hotel-Management-System | 407a2a478ba98d2d322a49be2a7b458b811f52a7 | b06d8cfd821466afb73b2a0aca9582c149f1cf25 | refs/heads/master | 2021-04-15T05:53:31.887214 | 2018-03-24T06:52:57 | 2018-03-24T06:52:57 | 126,564,154 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 805 | java | package com.daoImpl;
import java.util.List;
import javax.transaction.Transactional;
import org.hibernate.Query;
import org.hibernate.SessionFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Repository;
import com.dao.LoginDao;
import com.entities.Login;
@Repository
@Transactional
public class LoginDaoImpl implements LoginDao {
@Autowired
SessionFactory sessionFactory;
public List<Login> getLoginByUsernameAndPassword(Login login) {
Query query = sessionFactory.getCurrentSession().createQuery("from Login where username = :username and password = :password");
query.setParameter("username", login.getUsername());
query.setParameter("password", login.getPassword());
List loginList = query.list();
return loginList;
}
}
| [
"[email protected]"
] | |
bcc839c097947e9561d51edc976d7e7cfe53b013 | b95eaa582e7e0eee7c19dd5dfdddaefd2abb2d96 | /adapter/src/cache/channelrealtimedata/ChannelRealtimeDataCache.java | 84503e7807ac7a2442e0bbe221aee7fbe1e308a7 | [] | no_license | heheave/huiduAdpater | d46ed924efc960795d6ba5168308fa142973a73a | 0a77fe14be810de229b1f11581aadb9c5afcf931 | refs/heads/master | 2021-01-20T02:52:59.809941 | 2017-04-26T09:08:19 | 2017-04-26T09:08:19 | 89,459,496 | 0 | 1 | null | null | null | null | UTF-8 | Java | false | false | 524 | java | package cache.channelrealtimedata;
import cache.DefaultCacheImpl;
public class ChannelRealtimeDataCache extends DefaultCacheImpl<ChannelRealtimeData> {
private static final ChannelRealtimeDataCache crdc = new ChannelRealtimeDataCache();
private ChannelRealtimeDataCache() {
}
public static ChannelRealtimeDataCache instance() {
return crdc;
}
@Override
public void load() throws Exception {
// TODO Auto-generated method stub
}
@Override
public void save() {
// TODO Auto-generated method stub
}
}
| [
"xiaoke liu"
] | xiaoke liu |
8dfc469aa10f4efcbebe878b0849ef6a16b62e4f | 33afd4bba1fa53f85a4204f09adc637084bc5f72 | /baseLib/src/main/java/cn/hzxiaojietan/base/common/utils/TimeUtils.java | d8bcc00ceebdd5fdbf0c2fcddff4b28edf9e544d | [] | no_license | hzxiaojietan/TestBase | afa67bcc9fc8d4fde03207a018a9e744c4882bf0 | 34fc2d38ae7aa134a69d15c00591a6e84bca2e6e | refs/heads/master | 2020-03-14T21:47:42.896217 | 2018-05-23T01:07:58 | 2018-05-23T01:07:58 | 131,796,613 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,529 | java | package cn.hzxiaojietan.base.common.utils;
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;
/**
* Created by xiaojie.tan on 2017/10/26
* 时间帮助类
*/
public class TimeUtils {
/**
*
* @return 标准时间格式long
* @since V1.0
*/
public static long toMillSec(long t) {
// 解决部分时间不是毫秒的问题
int cp = 13 - String.valueOf(t).length();
if (cp > 0) {
t = (long) (t * Math.pow(10, (cp)));
} else {
t = (long) (t / Math.pow(10, (-cp)));
}
return t;
}
public static String getMMDD(long tms) {
Date date = new Date(toMillSec(tms));
SimpleDateFormat sdf = new SimpleDateFormat("MM-dd");
return sdf.format(date);
}
/**
* 字符串转指定格式时间
* @param str
* @return
*/
public static String getMMDDByStr(String str) {
return stringToDate(str, "yyyy-MM-dd HH:mm:ss", "MM-dd");
}
public static String stringToDate(String dateStr, String dateFormatStr, String formatStr) {
DateFormat sdf = new SimpleDateFormat(dateFormatStr);
Date date = null;
try{
date = sdf.parse(dateStr);
} catch (ParseException e){
e.printStackTrace();
}
SimpleDateFormat s = new SimpleDateFormat(formatStr);
return s.format(date);
}
/**
* 根据当前时间生产文件名 yyyyMMddHHmmss
* @return
*/
public static String getNameByNowTime (){
Date date = new Date();
SimpleDateFormat format = new SimpleDateFormat("yyyyMMddHHmmss", Locale.getDefault());
return format.format(date);
}
public static String timeFromNow(long timeInMills) {
long now = System.currentTimeMillis();
long timeInSecond = (now - timeInMills) / 1000;
if (timeInSecond < 0 || timeInSecond < 60) {
return "刚刚";
} else if (timeInSecond >= 60 && timeInSecond < 3600) {
long timeGapInMinute = timeInSecond / 60;
return timeGapInMinute + "分钟前";
} else if (timeInSecond >= 3600 && timeInSecond < (3600 * 24)){
long timeGapInHour = timeInSecond / 3600;
return timeGapInHour + "小时前";
} else {
long timeGapInDay = timeInSecond / (3600 * 24);
return timeGapInDay + "天前";
}
}
}
| [
"[email protected]"
] | |
0faaf4c84dbed787c68f9736e2028068cbdae822 | c343a0ef45405fb447d6a8735509efe2c1d6febf | /ServerCode-Pucho/main-service/src/main/java/com/pucho/service/NotificationService.java | 092b6f414d2091785925aaf7e2d97328461ab18a | [] | no_license | MouleshS/SamplesAndroid | 89fcc15efb707e63fcf01adf5b02a33f9a5f39c4 | 8342cc4a5d596a4ac33db12a3c2aa4ef3aaea83e | refs/heads/master | 2020-03-18T21:02:51.889155 | 2018-05-26T16:50:58 | 2018-05-26T16:50:58 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 300 | java | package com.pucho.service;
import com.pucho.domain.Answer;
import com.pucho.domain.Question;
/**
* Created by dinesh.rathore on 27/09/15.
*/
public interface NotificationService {
public void notificationRequest(Question question);
public void notificationRequest(Answer answer);
}
| [
"[email protected]"
] | |
3da9e4d284736e8bbcfabbf5a1b6a76776d9d28a | 66c8d211719f7015b18b5c69321359d228f8b3f9 | /app/src/main/java/com/amary/app/data/moviecat/adapter/DetailMovieAdapter.java | bf3a09db3d1b21a140327680cc58e9607180448b | [] | no_license | amary21/DBMovie_Widget | f80b42adbf08d4f688b15ff0bd14f8ca03bfdd34 | b525cf2e1e070c7435c0fe9f94d21f69ab6137a8 | refs/heads/master | 2020-06-20T00:08:21.718039 | 2019-07-15T04:15:43 | 2019-07-15T04:15:43 | 196,922,554 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 1,934 | java | package com.amary.app.data.moviecat.adapter;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import androidx.annotation.NonNull;
import androidx.recyclerview.widget.RecyclerView;
import com.amary.app.data.moviecat.R;
import com.amary.app.data.moviecat.model.ImageMovieItem;
import com.amary.app.data.moviecat.utils.ImgDownload;
import java.util.ArrayList;
import butterknife.BindView;
import butterknife.ButterKnife;
public class DetailMovieAdapter extends RecyclerView.Adapter<DetailMovieAdapter.CategoryViewHolder> {
private ArrayList<ImageMovieItem> backdropList;
public DetailMovieAdapter(ArrayList<ImageMovieItem> backdropList) {
this.backdropList = backdropList;
}
public void refillImage(ArrayList<ImageMovieItem> backdropList){
this.backdropList = new ArrayList<>();
this.backdropList.addAll(backdropList);
notifyDataSetChanged();
}
@NonNull
@Override
public CategoryViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.item_screenshot, parent,false);
return new CategoryViewHolder(view);
}
@Override
public void onBindViewHolder(@NonNull CategoryViewHolder holder, int position) {
holder.onBind(backdropList.get(position));
}
@Override
public int getItemCount() {
return backdropList.size();
}
class CategoryViewHolder extends RecyclerView.ViewHolder {
@BindView(R.id.img_screenshot)
ImageView imgScreenshot;
CategoryViewHolder(@NonNull View itemView) {
super(itemView);
ButterKnife.bind(this,itemView);
}
void onBind(ImageMovieItem imageMovieItem) {
ImgDownload.imgPoster(imageMovieItem.getFilePath(),imgScreenshot);
}
}
}
| [
"[email protected]"
] | |
7a1b0019f2daf56464fedae28cc749785e2cec16 | 6b684008ff30196108f9863686d34e07195a1008 | /app/src/main/java/com/tanya/task_11/MainActivity.java | 7b2172ba497a73fcbedd0c4f44296ed67266e34f | [] | no_license | Ta1-1echka/Task_11 | 6992bc8990ad66cfd63543d1a1ac4998a0d34445 | 4bf57d5f83d88ac5de1e0d727620e7b8adf5d9af | refs/heads/master | 2021-01-20T13:17:24.986670 | 2017-05-10T16:20:16 | 2017-05-10T16:20:17 | 90,468,694 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,817 | java | package com.tanya.task_11;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.TextView;
import com.facebook.AccessToken;
import com.facebook.AccessTokenTracker;
import com.facebook.CallbackManager;
import com.facebook.FacebookCallback;
import com.facebook.FacebookException;
import com.facebook.FacebookSdk;
import com.facebook.Profile;
import com.facebook.login.LoginManager;
import com.facebook.login.LoginResult;
import com.facebook.login.widget.LoginButton;
import com.squareup.picasso.Picasso;
import com.vk.sdk.VKAccessToken;
import com.vk.sdk.VKSdk;
import com.vk.sdk.api.VKApi;
import com.vk.sdk.api.VKApiConst;
import com.vk.sdk.api.VKError;
import com.vk.sdk.api.VKParameters;
import com.vk.sdk.api.VKRequest;
import com.vk.sdk.api.VKResponse;
import com.vk.sdk.api.model.VKApiUser;
import com.vk.sdk.api.model.VKApiUserFull;
import com.vk.sdk.api.model.VKList;
import com.vk.sdk.util.VKUtil;
import java.util.Arrays;
import br.com.dina.oauth.instagram.InstagramApp;
public class MainActivity extends AppCompatActivity implements View.OnClickListener {
Button vk_button;
LoginButton loginButton;
CallbackManager mFacebookCallbackManager;
TextView textView;
ImageView imageView;
Button vk;
Button insta;
VkApplication application;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// vk_button.setOnClickListener(new View.OnClickListener() {
// @Override
// public void onClick(View v) {
// Intent intent = new Intent(getApplicationContext(), WebActivity.class);
// startActivity(intent);
///*
//
//vk 6019074 BOUnuVi4yS5UPmQ7zfEX
//facebook 1942039502696027 c72bd171cedf4687325102ac6c012611
//insta 1577d809ec6744efbc98876f4ff650c1 74daf857564743ef8de86c5f9223b477
//https://pnixx.ru/blog/Android_i_vkontakte_chast_2_%28avtorizatsiya_i_poluchenie_prav%29-6.html
//https://auth0.com/blog/how-to-authenticate-on-android-using-social-logins/
// */
// }
// });
FacebookSdk.sdkInitialize(getApplicationContext());
mFacebookCallbackManager = CallbackManager.Factory.create();
setContentView(R.layout.activity_main);
application = new VkApplication();
vk = (Button) findViewById(R.id.vk);
insta = (Button) findViewById(R.id.insta);
vk.setOnClickListener(this);
insta.setOnClickListener(this);
textView = (TextView) findViewById(R.id.text);
imageView = (ImageView) findViewById(R.id.image);
loginButton = (LoginButton) findViewById(R.id.login_button);
loginButton.setReadPermissions("email");
// Callback registration
loginButton.registerCallback(mFacebookCallbackManager, new FacebookCallback<LoginResult>() {
@Override
public void onSuccess(LoginResult loginResult) {
}
@Override
public void onCancel() {
}
@Override
public void onError(FacebookException exception) {
}
});
AccessTokenTracker accessTokenTracker = new AccessTokenTracker() {
@Override
protected void onCurrentAccessTokenChanged(AccessToken oldAccessToken, AccessToken currentAccessToken) {
if (currentAccessToken == null) {
textView.setText("");
imageView.setImageBitmap(null);
}
}
};
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
System.out.println("*******" + requestCode + " " + resultCode);
if (requestCode == 64206) {
mFacebookCallbackManager.onActivityResult(requestCode, resultCode, data);
textView.setText(Profile.getCurrentProfile().getFirstName() + " " + Profile.getCurrentProfile().getLastName());
Picasso.with(getApplicationContext()).load(Profile.getCurrentProfile().getProfilePictureUri(1200, 1200)).into(imageView);
} else if (requestCode == 10485) {
VKRequest request = VKApi.users().get(VKParameters.from(VKApiConst.FIELDS, "photo_max_orig"));
request.executeWithListener(new VKRequest.VKRequestListener() {
@Override
public void onComplete(VKResponse response) {
super.onComplete(response);
VKApiUserFull user = ((VKList<VKApiUserFull>) response.parsedModel).get(0);
textView.setText(user.first_name + " " + user.last_name);
Picasso.with(getApplicationContext()).load(user.photo_max_orig).into(imageView);
}
});
}
}
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.vk:
application.login(this);
break;
case R.id.insta:
signInWithInstagram();
break;
default:
break;
}
}
private void signInWithInstagram() {
InstagramApp mApp = new InstagramApp(this,
ApplicationData.CLIENT_ID,
ApplicationData.CLIENT_SECRET,
ApplicationData.CALLBACK_URL);
mApp.authorize();
System.out.println("****" +mApp.getUserName() );
textView.setText(mApp.getUserName());
// final Intent browser = new Intent(getApplicationContext(), WebActivity.class);
// startActivity(browser);
}
}
| [
"[email protected]"
] | |
164ba8bea75a4ae4573faa984cd9e61ed0ceead5 | 3c7b59b40c08dd99902c3fc5c13e619713e83921 | /src/main/java/com/le/cameldemo/KafkaConsumerRouter.java | 353032ccb888310f7fa531dc65079c3ff1633a13 | [] | no_license | lilecloud/camel-kafka-demo | 2156a086c406a91b49395085b0b9c8112209ab57 | 8815fb47e7ff487d233bdb692a035caeb8dafaf0 | refs/heads/master | 2022-06-22T21:38:25.987041 | 2019-10-21T10:56:41 | 2019-10-21T10:56:41 | 216,545,179 | 0 | 0 | null | 2022-06-17T02:36:22 | 2019-10-21T10:54:28 | Java | UTF-8 | Java | false | false | 1,025 | java | package com.le.cameldemo;
import com.alibaba.fastjson.JSON;
import org.apache.camel.Exchange;
import org.apache.camel.Message;
import org.apache.camel.Processor;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.kafka.KafkaConstants;
import org.springframework.stereotype.Component;
@Component
public class KafkaConsumerRouter extends RouteBuilder {
@Override
public void configure() throws Exception {
from("kafka:test?brokers=127.0.0.1:9092&groupId=sss&autoOffsetReset=earliest")
.process(new Processor() {
@Override
public void process(Exchange exchange) throws Exception {
Message message = exchange.getIn();
String key = (String) message.getHeader(KafkaConstants.KEY,java.lang.String.class);
String person = (String) message.getBody(String.class);
Person personObj = JSON.parseObject(person,Person.class);
message.setBody(personObj);
exchange.setOut(message);
}
})
.to("bean:reveiveBean?method=reveive")
.end();
}
}
| [
"[email protected]"
] | |
90f5188a89a2efd2d2a9ec35af82616bd916ca24 | 7e24b413e49517827713e88c8df7ff7e699b5e0c | /dubboAdaptives/src/main/java/dubboAdaptives/ConfiguratorFactory$Adaptive.java | 640bbcfd6d0a52d8eba85356eba3c3f28dca15d0 | [] | no_license | wilsondjm/DubboSimpleDemo | 2201c59aa6f6d3c36c77462f57bba5bbe0d42d12 | e930c8760101b809125a7e8718b5a2a9abce5cdb | refs/heads/master | 2020-03-21T13:25:43.670020 | 2018-06-28T15:28:35 | 2018-06-28T15:28:35 | 138,605,085 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 938 | java | package dubboAdaptives;
import com.alibaba.dubbo.common.extension.ExtensionLoader;
public class ConfiguratorFactory$Adaptive implements com.alibaba.dubbo.rpc.cluster.ConfiguratorFactory {
public com.alibaba.dubbo.rpc.cluster.Configurator getConfigurator(com.alibaba.dubbo.common.URL arg0) {
if (arg0 == null)
throw new IllegalArgumentException("url == null");
com.alibaba.dubbo.common.URL url = arg0;
String extName = url.getProtocol();
if (extName == null)
throw new IllegalStateException(
"Fail to get extension(com.alibaba.dubbo.rpc.cluster.ConfiguratorFactory) name from url("
+ url.toString() + ") use keys([protocol])");
com.alibaba.dubbo.rpc.cluster.ConfiguratorFactory extension = (com.alibaba.dubbo.rpc.cluster.ConfiguratorFactory) ExtensionLoader
.getExtensionLoader(com.alibaba.dubbo.rpc.cluster.ConfiguratorFactory.class).getExtension(extName);
return extension.getConfigurator(arg0);
}
} | [
"[email protected]"
] | |
3901c48e5075554e17f63ac59e04c82d0eeff4bf | 93fbdd48a14996df8449398f33cfebbe71be1037 | /platforms/android/app/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r/org/nativescript/MAD2/R.java | f06f701c10cc0aa13f1635d3f47da59deb3fa156 | [] | no_license | colmuc/MAD-Assignment-Three | 7581ebaa62db4b19bd5db7af95db604de9ab3eb6 | 706e5b7f06f997ba63338620c220ef2b1d70dbd8 | refs/heads/master | 2020-04-20T05:23:20.079353 | 2019-03-06T00:31:38 | 2019-03-06T00:31:38 | null | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 846,178 | java | /* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by the
* aapt tool from the resource data it found. It
* should not be modified by hand.
*/
package org.nativescript.MAD2;
public final class R {
public static final class anim {
public static final int abc_fade_in=0x7f010000;
public static final int abc_fade_out=0x7f010001;
public static final int abc_grow_fade_in_from_bottom=0x7f010002;
public static final int abc_popup_enter=0x7f010003;
public static final int abc_popup_exit=0x7f010004;
public static final int abc_shrink_fade_out_from_bottom=0x7f010005;
public static final int abc_slide_in_bottom=0x7f010006;
public static final int abc_slide_in_top=0x7f010007;
public static final int abc_slide_out_bottom=0x7f010008;
public static final int abc_slide_out_top=0x7f010009;
public static final int abc_tooltip_enter=0x7f01000a;
public static final int abc_tooltip_exit=0x7f01000b;
public static final int design_bottom_sheet_slide_in=0x7f01000c;
public static final int design_bottom_sheet_slide_out=0x7f01000d;
public static final int design_snackbar_in=0x7f01000e;
public static final int design_snackbar_out=0x7f01000f;
}
public static final class animator {
public static final int design_appbar_state_list_animator=0x7f020000;
public static final int design_fab_hide_motion_spec=0x7f020001;
public static final int design_fab_show_motion_spec=0x7f020002;
public static final int mtrl_btn_state_list_anim=0x7f020003;
public static final int mtrl_btn_unelevated_state_list_anim=0x7f020004;
public static final int mtrl_chip_state_list_anim=0x7f020005;
public static final int mtrl_fab_hide_motion_spec=0x7f020006;
public static final int mtrl_fab_show_motion_spec=0x7f020007;
public static final int mtrl_fab_transformation_sheet_collapse_spec=0x7f020008;
public static final int mtrl_fab_transformation_sheet_expand_spec=0x7f020009;
}
public static final class attr {
/**
* Custom divider drawable to use for elements in the action bar.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarDivider=0x7f030000;
/**
* Custom item state list drawable background for action bar items.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarItemBackground=0x7f030001;
/**
* Reference to a theme that should be used to inflate popups
* shown by widgets in the action bar.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarPopupTheme=0x7f030002;
/**
* Size of the Action Bar, including the contextual
* bar used to present Action Modes.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>wrap_content</td><td>0</td><td></td></tr>
* </table>
*/
public static final int actionBarSize=0x7f030003;
/**
* Reference to a style for the split Action Bar. This style
* controls the split component that holds the menu/action
* buttons. actionBarStyle is still used for the primary
* bar.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarSplitStyle=0x7f030004;
/**
* Reference to a style for the Action Bar
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarStyle=0x7f030005;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarTabBarStyle=0x7f030006;
/**
* Default style for tabs within an action bar
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarTabStyle=0x7f030007;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarTabTextStyle=0x7f030008;
/**
* Reference to a theme that should be used to inflate the
* action bar. This will be inherited by any widget inflated
* into the action bar.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarTheme=0x7f030009;
/**
* Reference to a theme that should be used to inflate widgets
* and layouts destined for the action bar. Most of the time
* this will be a reference to the current theme, but when
* the action bar has a significantly different contrast
* profile than the rest of the activity the difference
* can become important. If this is set to @null the current
* theme will be used.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionBarWidgetTheme=0x7f03000a;
/**
* Default action button style.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionButtonStyle=0x7f03000b;
/**
* Default ActionBar dropdown style.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionDropDownStyle=0x7f03000c;
/**
* An optional layout to be used as an action view.
* See {@link android.view.MenuItem#setActionView(android.view.View)}
* for more info.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionLayout=0x7f03000d;
/**
* TextAppearance style that will be applied to text that
* appears within action menu items.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionMenuTextAppearance=0x7f03000e;
/**
* Color for text that appears within action menu items.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int actionMenuTextColor=0x7f03000f;
/**
* Background drawable to use for action mode UI
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeBackground=0x7f030010;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeCloseButtonStyle=0x7f030011;
/**
* Drawable to use for the close action mode button
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeCloseDrawable=0x7f030012;
/**
* Drawable to use for the Copy action button in Contextual Action Bar
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeCopyDrawable=0x7f030013;
/**
* Drawable to use for the Cut action button in Contextual Action Bar
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeCutDrawable=0x7f030014;
/**
* Drawable to use for the Find action button in WebView selection action modes
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeFindDrawable=0x7f030015;
/**
* Drawable to use for the Paste action button in Contextual Action Bar
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModePasteDrawable=0x7f030016;
/**
* PopupWindow style to use for action modes when showing as a window overlay.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModePopupWindowStyle=0x7f030017;
/**
* Drawable to use for the Select all action button in Contextual Action Bar
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeSelectAllDrawable=0x7f030018;
/**
* Drawable to use for the Share action button in WebView selection action modes
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeShareDrawable=0x7f030019;
/**
* Background drawable to use for action mode UI in the lower split bar
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeSplitBackground=0x7f03001a;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeStyle=0x7f03001b;
/**
* Drawable to use for the Web Search action button in WebView selection action modes
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionModeWebSearchDrawable=0x7f03001c;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionOverflowButtonStyle=0x7f03001d;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int actionOverflowMenuStyle=0x7f03001e;
/**
* The name of an optional ActionProvider class to instantiate an action view
* and perform operations such as default action for that menu item.
* See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)}
* for more info.
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int actionProviderClass=0x7f03001f;
/**
* The name of an optional View class to instantiate and use as an
* action view. See {@link android.view.MenuItem#setActionView(android.view.View)}
* for more info.
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int actionViewClass=0x7f030020;
/**
* Default ActivityChooserView style.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int activityChooserViewStyle=0x7f030021;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int alertDialogButtonGroupStyle=0x7f030022;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int alertDialogCenterButtons=0x7f030023;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int alertDialogStyle=0x7f030024;
/**
* Theme to use for alert dialogs spawned from this theme.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int alertDialogTheme=0x7f030025;
/**
* Whether to automatically stack the buttons when there is not
* enough space to lay them out side-by-side.
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int allowStacking=0x7f030026;
/**
* Alpha multiplier applied to the base color.
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int alpha=0x7f030027;
/**
* The alphabetic modifier key. This is the modifier when using a keyboard
* with alphabetic keys. The values should be kept in sync with KeyEvent
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>ALT</td><td>2</td><td></td></tr>
* <tr><td>CTRL</td><td>1000</td><td></td></tr>
* <tr><td>FUNCTION</td><td>8</td><td></td></tr>
* <tr><td>META</td><td>10000</td><td></td></tr>
* <tr><td>SHIFT</td><td>1</td><td></td></tr>
* <tr><td>SYM</td><td>4</td><td></td></tr>
* </table>
*/
public static final int alphabeticModifiers=0x7f030028;
/**
* The length of the arrow head when formed to make an arrow
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int arrowHeadLength=0x7f030029;
/**
* The length of the shaft when formed to make an arrow
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int arrowShaftLength=0x7f03002a;
/**
* Default AutoCompleteTextView style.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int autoCompleteTextViewStyle=0x7f03002b;
/**
* The maximum text size constraint to be used when auto-sizing text.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int autoSizeMaxTextSize=0x7f03002c;
/**
* The minimum text size constraint to be used when auto-sizing text.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int autoSizeMinTextSize=0x7f03002d;
/**
* Resource array of dimensions to be used in conjunction with
* <code>autoSizeTextType</code> set to <code>uniform</code>. Overrides
* <code>autoSizeStepGranularity</code> if set.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int autoSizePresetSizes=0x7f03002e;
/**
* Specify the auto-size step size if <code>autoSizeTextType</code> is set to
* <code>uniform</code>. The default is 1px. Overwrites
* <code>autoSizePresetSizes</code> if set.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int autoSizeStepGranularity=0x7f03002f;
/**
* Specify the type of auto-size. Note that this feature is not supported by EditText,
* works only for TextView.
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>none</td><td>0</td><td>No auto-sizing (default).</td></tr>
* <tr><td>uniform</td><td>1</td><td>Uniform horizontal and vertical text size scaling to fit within the
* container.</td></tr>
* </table>
*/
public static final int autoSizeTextType=0x7f030030;
/**
* Specifies a background drawable for the action bar.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int background=0x7f030031;
/**
* Specifies a background drawable for the bottom component of a split action bar.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int backgroundSplit=0x7f030032;
/**
* Specifies a background drawable for a second stacked row of the action bar.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int backgroundStacked=0x7f030033;
/**
* Tint to apply to the background.
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int backgroundTint=0x7f030034;
/**
* Blending mode used to apply the background tint.
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the
* result to valid color values. Saturate(S + D)</td></tr>
* <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of
* the tint. [Sa * Da, Sc * Dc]</td></tr>
* <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr>
* <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha
* channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr>
* <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s
* color channels are thrown out. [Sa * Da, Sc * Da]</td></tr>
* <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable.
* [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr>
* </table>
*/
public static final int backgroundTintMode=0x7f030035;
/**
* The length of the bars when they are parallel to each other
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int barLength=0x7f030036;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int behavior_autoHide=0x7f030037;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int behavior_fitToContents=0x7f030038;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int behavior_hideable=0x7f030039;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int behavior_overlapTop=0x7f03003a;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>auto</td><td>ffffffff</td><td></td></tr>
* </table>
*/
public static final int behavior_peekHeight=0x7f03003b;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int behavior_skipCollapsed=0x7f03003c;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int borderWidth=0x7f03003d;
/**
* Style for buttons without an explicit border, often used in groups.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int borderlessButtonStyle=0x7f03003e;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int bottomAppBarStyle=0x7f03003f;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int bottomNavigationStyle=0x7f030040;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int bottomSheetDialogTheme=0x7f030041;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int bottomSheetStyle=0x7f030042;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int boxBackgroundColor=0x7f030043;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>filled</td><td>1</td><td></td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>outline</td><td>2</td><td></td></tr>
* </table>
*/
public static final int boxBackgroundMode=0x7f030044;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int boxCollapsedPaddingTop=0x7f030045;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int boxCornerRadiusBottomEnd=0x7f030046;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int boxCornerRadiusBottomStart=0x7f030047;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int boxCornerRadiusTopEnd=0x7f030048;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int boxCornerRadiusTopStart=0x7f030049;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int boxStrokeColor=0x7f03004a;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int boxStrokeWidth=0x7f03004b;
/**
* Style for buttons within button bars
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int buttonBarButtonStyle=0x7f03004c;
/**
* Style for the "negative" buttons within button bars
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int buttonBarNegativeButtonStyle=0x7f03004d;
/**
* Style for the "neutral" buttons within button bars
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int buttonBarNeutralButtonStyle=0x7f03004e;
/**
* Style for the "positive" buttons within button bars
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int buttonBarPositiveButtonStyle=0x7f03004f;
/**
* Style for button bars
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int buttonBarStyle=0x7f030050;
/**
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td>Push object to the bottom of its container, not changing its size.</td></tr>
* <tr><td>top</td><td>30</td><td>Push object to the top of its container, not changing its size.</td></tr>
* </table>
*/
public static final int buttonGravity=0x7f030051;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int buttonIconDimen=0x7f030052;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int buttonPanelSideLayout=0x7f030053;
/**
* Normal Button style.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int buttonStyle=0x7f030054;
/**
* Small Button style.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int buttonStyleSmall=0x7f030055;
/**
* Tint to apply to the button drawable.
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int buttonTint=0x7f030056;
/**
* Blending mode used to apply the button tint.
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the
* result to valid color values. Saturate(S + D)</td></tr>
* <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of
* the tint. [Sa * Da, Sc * Dc]</td></tr>
* <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr>
* <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha
* channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr>
* <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s
* color channels are thrown out. [Sa * Da, Sc * Da]</td></tr>
* <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable.
* [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr>
* </table>
*/
public static final int buttonTintMode=0x7f030057;
/**
* Background color for CardView.
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int cardBackgroundColor=0x7f030058;
/**
* Corner radius for CardView.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int cardCornerRadius=0x7f030059;
/**
* Elevation for CardView.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int cardElevation=0x7f03005a;
/**
* Maximum Elevation for CardView.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int cardMaxElevation=0x7f03005b;
/**
* Add padding to CardView on v20 and before to prevent intersections between the Card content and rounded corners.
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int cardPreventCornerOverlap=0x7f03005c;
/**
* Add padding in API v21+ as well to have the same measurements with previous versions.
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int cardUseCompatPadding=0x7f03005d;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int cardViewStyle=0x7f03005e;
/**
* Default Checkbox style.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int checkboxStyle=0x7f03005f;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int checkedChip=0x7f030060;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int checkedIcon=0x7f030061;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int checkedIconEnabled=0x7f030062;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int checkedIconVisible=0x7f030063;
/**
* Default CheckedTextView style.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int checkedTextViewStyle=0x7f030064;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int chipBackgroundColor=0x7f030065;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int chipCornerRadius=0x7f030066;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int chipEndPadding=0x7f030067;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int chipGroupStyle=0x7f030068;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int chipIcon=0x7f030069;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int chipIconEnabled=0x7f03006a;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int chipIconSize=0x7f03006b;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int chipIconTint=0x7f03006c;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int chipIconVisible=0x7f03006d;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int chipMinHeight=0x7f03006e;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int chipSpacing=0x7f03006f;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int chipSpacingHorizontal=0x7f030070;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int chipSpacingVertical=0x7f030071;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int chipStandaloneStyle=0x7f030072;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int chipStartPadding=0x7f030073;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int chipStrokeColor=0x7f030074;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int chipStrokeWidth=0x7f030075;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int chipStyle=0x7f030076;
/**
* Close button icon
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int closeIcon=0x7f030077;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int closeIconEnabled=0x7f030078;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int closeIconEndPadding=0x7f030079;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int closeIconSize=0x7f03007a;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int closeIconStartPadding=0x7f03007b;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int closeIconTint=0x7f03007c;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int closeIconVisible=0x7f03007d;
/**
* Specifies a layout to use for the "close" item at the starting edge.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int closeItemLayout=0x7f03007e;
/**
* Text to set as the content description for the collapse button.
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int collapseContentDescription=0x7f03007f;
/**
* Icon drawable to use for the collapse button.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int collapseIcon=0x7f030080;
/**
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*/
public static final int collapsedTitleGravity=0x7f030081;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int collapsedTitleTextAppearance=0x7f030082;
/**
* The drawing color for the bars
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int color=0x7f030083;
/**
* Bright complement to the primary branding color. By default, this is the color applied
* to framework controls (via colorControlActivated).
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorAccent=0x7f030084;
/**
* Default color of background imagery for floating components, ex. dialogs, popups, and cards.
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorBackgroundFloating=0x7f030085;
/**
* The color applied to framework buttons in their normal state.
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorButtonNormal=0x7f030086;
/**
* The color applied to framework controls in their activated (ex. checked) state.
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorControlActivated=0x7f030087;
/**
* The color applied to framework control highlights (ex. ripples, list selectors).
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorControlHighlight=0x7f030088;
/**
* The color applied to framework controls in their normal state.
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorControlNormal=0x7f030089;
/**
* Color used for error states and things that need to be drawn to
* the user's attention.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorError=0x7f03008a;
/**
* The primary branding color for the app. By default, this is the color applied to the
* action bar background.
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorPrimary=0x7f03008b;
/**
* Dark variant of the primary branding color. By default, this is the color applied to
* the status bar (via statusBarColor) and navigation bar (via navigationBarColor).
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorPrimaryDark=0x7f03008c;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorSecondary=0x7f03008d;
/**
* The color applied to framework switch thumbs in their normal state.
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int colorSwitchThumbNormal=0x7f03008e;
/**
* Commit icon shown in the query suggestion row
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int commitIcon=0x7f03008f;
/**
* The content description associated with the item.
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int contentDescription=0x7f030090;
/**
* Minimum inset for content views within a bar. Navigation buttons and
* menu views are excepted. Only valid for some themes and configurations.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int contentInsetEnd=0x7f030091;
/**
* Minimum inset for content views within a bar when actions from a menu
* are present. Only valid for some themes and configurations.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int contentInsetEndWithActions=0x7f030092;
/**
* Minimum inset for content views within a bar. Navigation buttons and
* menu views are excepted. Only valid for some themes and configurations.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int contentInsetLeft=0x7f030093;
/**
* Minimum inset for content views within a bar. Navigation buttons and
* menu views are excepted. Only valid for some themes and configurations.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int contentInsetRight=0x7f030094;
/**
* Minimum inset for content views within a bar. Navigation buttons and
* menu views are excepted. Only valid for some themes and configurations.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int contentInsetStart=0x7f030095;
/**
* Minimum inset for content views within a bar when a navigation button
* is present, such as the Up button. Only valid for some themes and configurations.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int contentInsetStartWithNavigation=0x7f030096;
/**
* Inner padding between the edges of the Card and children of the CardView.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int contentPadding=0x7f030097;
/**
* Inner padding between the bottom edge of the Card and children of the CardView.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int contentPaddingBottom=0x7f030098;
/**
* Inner padding between the left edge of the Card and children of the CardView.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int contentPaddingLeft=0x7f030099;
/**
* Inner padding between the right edge of the Card and children of the CardView.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int contentPaddingRight=0x7f03009a;
/**
* Inner padding between the top edge of the Card and children of the CardView.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int contentPaddingTop=0x7f03009b;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int contentScrim=0x7f03009c;
/**
* The background used by framework controls.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int controlBackground=0x7f03009d;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int coordinatorLayoutStyle=0x7f03009e;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int cornerRadius=0x7f03009f;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int counterEnabled=0x7f0300a0;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int counterMaxLength=0x7f0300a1;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int counterOverflowTextAppearance=0x7f0300a2;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int counterTextAppearance=0x7f0300a3;
/**
* Specifies a layout for custom navigation. Overrides navigationMode.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int customNavigationLayout=0x7f0300a4;
/**
* Default query hint used when {@code queryHint} is undefined and
* the search view's {@code SearchableInfo} does not provide a hint.
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int defaultQueryHint=0x7f0300a5;
/**
* Preferred corner radius of dialogs.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int dialogCornerRadius=0x7f0300a6;
/**
* Preferred padding for dialog content.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int dialogPreferredPadding=0x7f0300a7;
/**
* Theme to use for dialogs spawned from this theme.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int dialogTheme=0x7f0300a8;
/**
* Options affecting how the action bar is displayed.
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>disableHome</td><td>20</td><td></td></tr>
* <tr><td>homeAsUp</td><td>4</td><td></td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>showCustom</td><td>10</td><td></td></tr>
* <tr><td>showHome</td><td>2</td><td></td></tr>
* <tr><td>showTitle</td><td>8</td><td></td></tr>
* <tr><td>useLogo</td><td>1</td><td></td></tr>
* </table>
*/
public static final int displayOptions=0x7f0300a9;
/**
* Specifies the drawable used for item dividers.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int divider=0x7f0300aa;
/**
* A drawable that may be used as a horizontal divider between visual elements.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int dividerHorizontal=0x7f0300ab;
/**
* Size of padding on either end of a divider.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int dividerPadding=0x7f0300ac;
/**
* A drawable that may be used as a vertical divider between visual elements.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int dividerVertical=0x7f0300ad;
/**
* The total size of the drawable
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int drawableSize=0x7f0300ae;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int drawerArrowStyle=0x7f0300af;
/**
* ListPopupWindow compatibility
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int dropDownListViewStyle=0x7f0300b0;
/**
* The preferred item height for dropdown lists.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int dropdownListPreferredItemHeight=0x7f0300b1;
/**
* EditText background drawable.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int editTextBackground=0x7f0300b2;
/**
* EditText text foreground color.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int editTextColor=0x7f0300b3;
/**
* Default EditText style.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int editTextStyle=0x7f0300b4;
/**
* Elevation for the action bar itself
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int elevation=0x7f0300b5;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int enforceMaterialTheme=0x7f0300b6;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int enforceTextAppearance=0x7f0300b7;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int errorEnabled=0x7f0300b8;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int errorTextAppearance=0x7f0300b9;
/**
* The drawable to show in the button for expanding the activities overflow popup.
* <strong>Note:</strong> Clients would like to set this drawable
* as a clue about the action the chosen activity will perform. For
* example, if share activity is to be chosen the drawable should
* give a clue that sharing is to be performed.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int expandActivityOverflowButtonDrawable=0x7f0300ba;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int expanded=0x7f0300bb;
/**
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*/
public static final int expandedTitleGravity=0x7f0300bc;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int expandedTitleMargin=0x7f0300bd;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int expandedTitleMarginBottom=0x7f0300be;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int expandedTitleMarginEnd=0x7f0300bf;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int expandedTitleMarginStart=0x7f0300c0;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int expandedTitleMarginTop=0x7f0300c1;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int expandedTitleTextAppearance=0x7f0300c2;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>center</td><td>0</td><td></td></tr>
* <tr><td>end</td><td>1</td><td></td></tr>
* </table>
*/
public static final int fabAlignmentMode=0x7f0300c3;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int fabCradleMargin=0x7f0300c4;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int fabCradleRoundedCornerRadius=0x7f0300c5;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int fabCradleVerticalOffset=0x7f0300c6;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int fabCustomSize=0x7f0300c7;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>auto</td><td>ffffffff</td><td></td></tr>
* <tr><td>mini</td><td>1</td><td></td></tr>
* <tr><td>normal</td><td>0</td><td></td></tr>
* </table>
*/
public static final int fabSize=0x7f0300c8;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int fastScrollEnabled=0x7f0300c9;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int fastScrollHorizontalThumbDrawable=0x7f0300ca;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int fastScrollHorizontalTrackDrawable=0x7f0300cb;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int fastScrollVerticalThumbDrawable=0x7f0300cc;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int fastScrollVerticalTrackDrawable=0x7f0300cd;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int fillViewport=0x7f0300ce;
/**
* Distance from the top of the TextView to the first text baseline. If set, this
* overrides the value set for paddingTop.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int firstBaselineToTopHeight=0x7f0300cf;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
* <p>May be an integer value, such as "<code>100</code>".
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
* <p>May be a floating point value, such as "<code>1.2</code>".
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*/
public static final int floatingActionButtonStyle=0x7f0300d0;
/**
* The reference to the font file to be used. This should be a file in the res/font folder
* and should therefore have an R reference value. E.g. @font/myfont
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int font=0x7f0300d1;
/**
* The attribute for the font family.
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int fontFamily=0x7f0300d2;
/**
* The authority of the Font Provider to be used for the request.
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int fontProviderAuthority=0x7f0300d3;
/**
* The sets of hashes for the certificates the provider should be signed with. This is
* used to verify the identity of the provider, and is only required if the provider is not
* part of the system image. This value may point to one list or a list of lists, where each
* individual list represents one collection of signature hashes. Refer to your font provider's
* documentation for these values.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int fontProviderCerts=0x7f0300d4;
/**
* The strategy to be used when fetching font data from a font provider in XML layouts.
* This attribute is ignored when the resource is loaded from code, as it is equivalent to the
* choice of API between {@link
* androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and
* {@link
* androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)}
* (async).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>async</td><td>1</td><td>The async font fetch works as follows.
* First, check the local cache, then if the requeted font is not cached, trigger a
* request the font and continue with layout inflation. Once the font fetch succeeds, the
* target text view will be refreshed with the downloaded font data. The
* fontProviderFetchTimeout will be ignored if async loading is specified.</td></tr>
* <tr><td>blocking</td><td>0</td><td>The blocking font fetch works as follows.
* First, check the local cache, then if the requested font is not cached, request the
* font from the provider and wait until it is finished. You can change the length of
* the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the
* default typeface will be used instead.</td></tr>
* </table>
*/
public static final int fontProviderFetchStrategy=0x7f0300d5;
/**
* The length of the timeout during fetching.
* <p>May be an integer value, such as "<code>100</code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>forever</td><td>ffffffff</td><td>A special value for the timeout. In this case, the blocking font fetching will not
* timeout and wait until a reply is received from the font provider.</td></tr>
* </table>
*/
public static final int fontProviderFetchTimeout=0x7f0300d6;
/**
* The package for the Font Provider to be used for the request. This is used to verify
* the identity of the provider.
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int fontProviderPackage=0x7f0300d7;
/**
* The query to be sent over to the provider. Refer to your font provider's documentation
* on the format of this string.
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int fontProviderQuery=0x7f0300d8;
/**
* The style of the given font file. This will be used when the font is being loaded into
* the font stack and will override any style information in the font's header tables. If
* unspecified, the value in the font's header tables will be used.
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>italic</td><td>1</td><td></td></tr>
* <tr><td>normal</td><td>0</td><td></td></tr>
* </table>
*/
public static final int fontStyle=0x7f0300d9;
/**
* The variation settings to be applied to the font. The string should be in the following
* format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be
* used, or the font used does not support variation settings, this attribute needs not be
* specified.
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int fontVariationSettings=0x7f0300da;
/**
* The weight of the given font file. This will be used when the font is being loaded into
* the font stack and will override any weight information in the font's header tables. Must
* be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most
* common values are 400 for regular weight and 700 for bold weight. If unspecified, the value
* in the font's header tables will be used.
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int fontWeight=0x7f0300db;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int foregroundInsidePadding=0x7f0300dc;
/**
* The max gap between the bars when they are parallel to each other
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int gapBetweenBars=0x7f0300dd;
/**
* Go button icon
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int goIcon=0x7f0300de;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int headerLayout=0x7f0300df;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int height=0x7f0300e0;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int helperText=0x7f0300e1;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int helperTextEnabled=0x7f0300e2;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int helperTextTextAppearance=0x7f0300e3;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int hideMotionSpec=0x7f0300e4;
/**
* Set true to hide the action bar on a vertical nested scroll of content.
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int hideOnContentScroll=0x7f0300e5;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int hideOnScroll=0x7f0300e6;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int hintAnimationEnabled=0x7f0300e7;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int hintEnabled=0x7f0300e8;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int hintTextAppearance=0x7f0300e9;
/**
* Specifies a drawable to use for the 'home as up' indicator.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int homeAsUpIndicator=0x7f0300ea;
/**
* Specifies a layout to use for the "home" section of the action bar.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int homeLayout=0x7f0300eb;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int hoveredFocusedTranslationZ=0x7f0300ec;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int icon=0x7f0300ed;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int iconEndPadding=0x7f0300ee;
/**
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>start</td><td>1</td><td></td></tr>
* <tr><td>textStart</td><td>2</td><td></td></tr>
* </table>
*/
public static final int iconGravity=0x7f0300ef;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int iconPadding=0x7f0300f0;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int iconSize=0x7f0300f1;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int iconStartPadding=0x7f0300f2;
/**
* Tint to apply to the icon.
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int iconTint=0x7f0300f3;
/**
* Blending mode used to apply the icon tint.
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the
* result to valid color values. Saturate(S + D)</td></tr>
* <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the icon with those of
* the tint. [Sa * Da, Sc * Dc]</td></tr>
* <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr>
* <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the icon, but with the icon’s alpha
* channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr>
* <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the icon. The icon’s
* color channels are thrown out. [Sa * Da, Sc * Da]</td></tr>
* <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the icon.
* [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr>
* </table>
*/
public static final int iconTintMode=0x7f0300f4;
/**
* The default state of the SearchView. If true, it will be iconified when not in
* use and expanded when clicked.
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int iconifiedByDefault=0x7f0300f5;
/**
* ImageButton background drawable.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int imageButtonStyle=0x7f0300f6;
/**
* Specifies a style resource to use for an indeterminate progress spinner.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int indeterminateProgressStyle=0x7f0300f7;
/**
* The maximal number of items initially shown in the activity list.
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int initialActivityCount=0x7f0300f8;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int insetForeground=0x7f0300f9;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int isLightTheme=0x7f0300fa;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int itemBackground=0x7f0300fb;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int itemHorizontalPadding=0x7f0300fc;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int itemHorizontalTranslationEnabled=0x7f0300fd;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int itemIconPadding=0x7f0300fe;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int itemIconSize=0x7f0300ff;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int itemIconTint=0x7f030100;
/**
* Specifies padding that should be applied to the left and right sides of
* system-provided items in the bar.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int itemPadding=0x7f030101;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int itemSpacing=0x7f030102;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int itemTextAppearance=0x7f030103;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int itemTextAppearanceActive=0x7f030104;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int itemTextAppearanceInactive=0x7f030105;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int itemTextColor=0x7f030106;
/**
* A reference to an array of integers representing the
* locations of horizontal keylines in dp from the starting edge.
* Child views can refer to these keylines for alignment using
* layout_keyline="index" where index is a 0-based index into
* this array.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int keylines=0x7f030107;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>auto</td><td>ffffffff</td><td></td></tr>
* <tr><td>labeled</td><td>1</td><td></td></tr>
* <tr><td>selected</td><td>0</td><td></td></tr>
* <tr><td>unlabeled</td><td>2</td><td></td></tr>
* </table>
*/
public static final int labelVisibilityMode=0x7f030108;
/**
* Distance from the bottom of the TextView to the last text baseline. If set, this
* overrides the value set for paddingBottom.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int lastBaselineToBottomHeight=0x7f030109;
/**
* The layout to use for the search view.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int layout=0x7f03010a;
/**
* Class name of the Layout Manager to be used.
* <p/>
* The class must extandroidx.recyclerview.widget.RecyclerViewView$LayoutManager
* and have either a default constructor or constructor with the signature
* (android.content.Context, android.util.AttributeSet, int, int).
* <p/>
* If the name starts with a '.', application package is prefixed.
* Else, if the name contains a '.', the classname is assumed to be a full class name.
* Else, the recycler view package naandroidx.appcompat.widgetdget) is prefixed.
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int layoutManager=0x7f03010b;
/**
* The id of an anchor view that this view should position relative to.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int layout_anchor=0x7f03010c;
/**
* Specifies how an object should position relative to an anchor, on both the X and Y axes,
* within its parent's bounds.
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td>Push object to the bottom of its container, not changing its size.</td></tr>
* <tr><td>center</td><td>11</td><td>Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.</td></tr>
* <tr><td>center_horizontal</td><td>1</td><td>Place object in the horizontal center of its container, not changing its size.</td></tr>
* <tr><td>center_vertical</td><td>10</td><td>Place object in the vertical center of its container, not changing its size.</td></tr>
* <tr><td>clip_horizontal</td><td>8</td><td>Additional option that can be set to have the left and/or right edges of
* the child clipped to its container's bounds.
* The clip will be based on the horizontal gravity: a left gravity will clip the right
* edge, a right gravity will clip the left edge, and neither will clip both edges.</td></tr>
* <tr><td>clip_vertical</td><td>80</td><td>Additional option that can be set to have the top and/or bottom edges of
* the child clipped to its container's bounds.
* The clip will be based on the vertical gravity: a top gravity will clip the bottom
* edge, a bottom gravity will clip the top edge, and neither will clip both edges.</td></tr>
* <tr><td>end</td><td>800005</td><td>Push object to the end of its container, not changing its size.</td></tr>
* <tr><td>fill</td><td>77</td><td>Grow the horizontal and vertical size of the object if needed so it completely fills its container.</td></tr>
* <tr><td>fill_horizontal</td><td>7</td><td>Grow the horizontal size of the object if needed so it completely fills its container.</td></tr>
* <tr><td>fill_vertical</td><td>70</td><td>Grow the vertical size of the object if needed so it completely fills its container.</td></tr>
* <tr><td>left</td><td>3</td><td>Push object to the left of its container, not changing its size.</td></tr>
* <tr><td>right</td><td>5</td><td>Push object to the right of its container, not changing its size.</td></tr>
* <tr><td>start</td><td>800003</td><td>Push object to the beginning of its container, not changing its size.</td></tr>
* <tr><td>top</td><td>30</td><td>Push object to the top of its container, not changing its size.</td></tr>
* </table>
*/
public static final int layout_anchorGravity=0x7f03010d;
/**
* The class name of a Behavior class defining special runtime behavior
* for this child view.
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int layout_behavior=0x7f03010e;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>parallax</td><td>2</td><td></td></tr>
* <tr><td>pin</td><td>1</td><td></td></tr>
* </table>
*/
public static final int layout_collapseMode=0x7f03010f;
/**
* <p>May be a floating point value, such as "<code>1.2</code>".
*/
public static final int layout_collapseParallaxMultiplier=0x7f030110;
/**
* Specifies how this view dodges the inset edges of the CoordinatorLayout.
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>all</td><td>77</td><td>Dodge all the inset edges.</td></tr>
* <tr><td>bottom</td><td>50</td><td>Dodge the bottom inset edge.</td></tr>
* <tr><td>end</td><td>800005</td><td>Dodge the end inset edge.</td></tr>
* <tr><td>left</td><td>3</td><td>Dodge the left inset edge.</td></tr>
* <tr><td>none</td><td>0</td><td>Don't dodge any edges</td></tr>
* <tr><td>right</td><td>5</td><td>Dodge the right inset edge.</td></tr>
* <tr><td>start</td><td>800003</td><td>Dodge the start inset edge.</td></tr>
* <tr><td>top</td><td>30</td><td>Dodge the top inset edge.</td></tr>
* </table>
*/
public static final int layout_dodgeInsetEdges=0x7f030111;
/**
* Specifies how this view insets the CoordinatorLayout and make some other views
* dodge it.
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td>Inset the bottom edge.</td></tr>
* <tr><td>end</td><td>800005</td><td>Inset the end edge.</td></tr>
* <tr><td>left</td><td>3</td><td>Inset the left edge.</td></tr>
* <tr><td>none</td><td>0</td><td>Don't inset.</td></tr>
* <tr><td>right</td><td>5</td><td>Inset the right edge.</td></tr>
* <tr><td>start</td><td>800003</td><td>Inset the start edge.</td></tr>
* <tr><td>top</td><td>30</td><td>Inset the top edge.</td></tr>
* </table>
*/
public static final int layout_insetEdge=0x7f030112;
/**
* The index of a keyline this view should position relative to.
* android:layout_gravity will affect how the view aligns to the
* specified keyline.
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int layout_keyline=0x7f030113;
/**
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>enterAlways</td><td>4</td><td></td></tr>
* <tr><td>enterAlwaysCollapsed</td><td>8</td><td></td></tr>
* <tr><td>exitUntilCollapsed</td><td>2</td><td></td></tr>
* <tr><td>scroll</td><td>1</td><td></td></tr>
* <tr><td>snap</td><td>10</td><td></td></tr>
* <tr><td>snapMargins</td><td>20</td><td></td></tr>
* </table>
*/
public static final int layout_scrollFlags=0x7f030114;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int layout_scrollInterpolator=0x7f030115;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int liftOnScroll=0x7f030116;
/**
* Explicit height between lines of text. If set, this will override the values set
* for lineSpacingExtra and lineSpacingMultiplier.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int lineHeight=0x7f030117;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int lineSpacing=0x7f030118;
/**
* Drawable used as a background for selected list items.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int listChoiceBackgroundIndicator=0x7f030119;
/**
* The list divider used in alert dialogs.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int listDividerAlertDialog=0x7f03011a;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int listItemLayout=0x7f03011b;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int listLayout=0x7f03011c;
/**
* Default menu-style ListView style.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int listMenuViewStyle=0x7f03011d;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int listPopupWindowStyle=0x7f03011e;
/**
* The preferred list item height.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int listPreferredItemHeight=0x7f03011f;
/**
* A larger, more robust list item height.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int listPreferredItemHeightLarge=0x7f030120;
/**
* A smaller, sleeker list item height.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int listPreferredItemHeightSmall=0x7f030121;
/**
* The preferred padding along the left edge of list items.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int listPreferredItemPaddingLeft=0x7f030122;
/**
* The preferred padding along the right edge of list items.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int listPreferredItemPaddingRight=0x7f030123;
/**
* Specifies the drawable used for the application logo.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int logo=0x7f030124;
/**
* A content description string to describe the appearance of the
* associated logo image.
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int logoDescription=0x7f030125;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int materialButtonStyle=0x7f030126;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int materialCardViewStyle=0x7f030127;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int maxActionInlineWidth=0x7f030128;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int maxButtonHeight=0x7f030129;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int maxImageSize=0x7f03012a;
/**
* When set to true, all children with a weight will be considered having
* the minimum size of the largest child. If false, all children are
* measured normally.
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int measureWithLargestChild=0x7f03012b;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int menu=0x7f03012c;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int multiChoiceItemLayout=0x7f03012d;
/**
* Text to set as the content description for the navigation button
* located at the start of the toolbar.
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int navigationContentDescription=0x7f03012e;
/**
* Icon drawable to use for the navigation button located at
* the start of the toolbar.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int navigationIcon=0x7f03012f;
/**
* The type of navigation to use.
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>listMode</td><td>1</td><td>The action bar will use a selection list for navigation.</td></tr>
* <tr><td>normal</td><td>0</td><td>Normal static title text</td></tr>
* <tr><td>tabMode</td><td>2</td><td>The action bar will use a series of horizontal tabs for navigation.</td></tr>
* </table>
*/
public static final int navigationMode=0x7f030130;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int navigationViewStyle=0x7f030131;
/**
* The numeric modifier key. This is the modifier when using a numeric (e.g., 12-key)
* keyboard. The values should be kept in sync with KeyEvent
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>ALT</td><td>2</td><td></td></tr>
* <tr><td>CTRL</td><td>1000</td><td></td></tr>
* <tr><td>FUNCTION</td><td>8</td><td></td></tr>
* <tr><td>META</td><td>10000</td><td></td></tr>
* <tr><td>SHIFT</td><td>1</td><td></td></tr>
* <tr><td>SYM</td><td>4</td><td></td></tr>
* </table>
*/
public static final int numericModifiers=0x7f030132;
/**
* Whether the popup window should overlap its anchor view.
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int overlapAnchor=0x7f030133;
/**
* Bottom padding to use when no buttons are present.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int paddingBottomNoButtons=0x7f030134;
/**
* Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int paddingEnd=0x7f030135;
/**
* Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int paddingStart=0x7f030136;
/**
* Top padding to use when no title is present.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int paddingTopNoTitle=0x7f030137;
/**
* The background of a panel when it is inset from the left and right edges of the screen.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int panelBackground=0x7f030138;
/**
* Default Panel Menu style.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int panelMenuListTheme=0x7f030139;
/**
* Default Panel Menu width.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int panelMenuListWidth=0x7f03013a;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int passwordToggleContentDescription=0x7f03013b;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int passwordToggleDrawable=0x7f03013c;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int passwordToggleEnabled=0x7f03013d;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int passwordToggleTint=0x7f03013e;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*/
public static final int passwordToggleTintMode=0x7f03013f;
/**
* Default PopupMenu style.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int popupMenuStyle=0x7f030140;
/**
* Reference to a theme that should be used to inflate popups
* shown by widgets in the action bar.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int popupTheme=0x7f030141;
/**
* Default PopupWindow style.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int popupWindowStyle=0x7f030142;
/**
* Whether space should be reserved in layout when an icon is missing.
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int preserveIconSpacing=0x7f030143;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int pressedTranslationZ=0x7f030144;
/**
* Specifies the horizontal padding on either end for an embedded progress bar.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int progressBarPadding=0x7f030145;
/**
* Specifies a style resource to use for an embedded progress bar.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int progressBarStyle=0x7f030146;
/**
* Background for the section containing the search query
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int queryBackground=0x7f030147;
/**
* An optional user-defined query hint string to be displayed in the empty query field.
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int queryHint=0x7f030148;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int radScrollViewStyle=0x7f030149;
/**
* Default RadioButton style.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int radioButtonStyle=0x7f03014a;
/**
* Default RatingBar style.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int ratingBarStyle=0x7f03014b;
/**
* Indicator RatingBar style.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int ratingBarStyleIndicator=0x7f03014c;
/**
* Small indicator RatingBar style.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int ratingBarStyleSmall=0x7f03014d;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int reverseLayout=0x7f03014e;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int rippleColor=0x7f03014f;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int scrimAnimationDuration=0x7f030150;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int scrimBackground=0x7f030151;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int scrimVisibleHeightTrigger=0x7f030152;
/**
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>both</td><td>3</td><td></td></tr>
* <tr><td>horizontal</td><td>2</td><td></td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>vertical</td><td>1</td><td></td></tr>
* </table>
*/
public static final int scrollMode=0x7f030153;
/**
* Search icon displayed as a text field hint
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int searchHintIcon=0x7f030154;
/**
* Search icon
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int searchIcon=0x7f030155;
/**
* Style for the search query widget.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int searchViewStyle=0x7f030156;
/**
* Default SeekBar style.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int seekBarStyle=0x7f030157;
/**
* A style that may be applied to buttons or other selectable items
* that should react to pressed and focus states, but that do not
* have a clear visual border along the edges.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int selectableItemBackground=0x7f030158;
/**
* Background drawable for borderless standalone items that need focus/pressed states.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int selectableItemBackgroundBorderless=0x7f030159;
/**
* How this item should display in the Action Bar, if present.
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>always</td><td>2</td><td>Always show this item in an actionbar, even if it would override
* the system's limits of how much stuff to put there. This may make
* your action bar look bad on some screens. In most cases you should
* use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never".</td></tr>
* <tr><td>collapseActionView</td><td>8</td><td>This item's action view collapses to a normal menu
* item. When expanded, the action view takes over a
* larger segment of its container.</td></tr>
* <tr><td>ifRoom</td><td>1</td><td>Show this item in an action bar if there is room for it as determined
* by the system. Favor this option over "always" where possible.
* Mutually exclusive with "never" and "always".</td></tr>
* <tr><td>never</td><td>0</td><td>Never show this item in an action bar, show it in the overflow menu instead.
* Mutually exclusive with "ifRoom" and "always".</td></tr>
* <tr><td>withText</td><td>4</td><td>When this item is shown as an action in the action bar, show a text
* label with it even if it has an icon representation.</td></tr>
* </table>
*/
public static final int showAsAction=0x7f03015a;
/**
* Setting for which dividers to show.
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>beginning</td><td>1</td><td></td></tr>
* <tr><td>end</td><td>4</td><td></td></tr>
* <tr><td>middle</td><td>2</td><td></td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* </table>
*/
public static final int showDividers=0x7f03015b;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int showMotionSpec=0x7f03015c;
/**
* Whether to draw on/off text.
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int showText=0x7f03015d;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int showTitle=0x7f03015e;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int singleChoiceItemLayout=0x7f03015f;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int singleLine=0x7f030160;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int singleSelection=0x7f030161;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int snackbarButtonStyle=0x7f030162;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int snackbarStyle=0x7f030163;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int spanCount=0x7f030164;
/**
* Whether bars should rotate or not during transition
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int spinBars=0x7f030165;
/**
* Default Spinner style.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int spinnerDropDownItemStyle=0x7f030166;
/**
* Default Spinner style.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int spinnerStyle=0x7f030167;
/**
* Whether to split the track and leave a gap for the thumb drawable.
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int splitTrack=0x7f030168;
/**
* Sets a drawable as the content of this ImageView. Allows the use of vector drawable
* when running on older versions of the platform.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int srcCompat=0x7f030169;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int stackFromEnd=0x7f03016a;
/**
* State identifier indicating the popup will be above the anchor.
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int state_above_anchor=0x7f03016b;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int state_collapsed=0x7f03016c;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int state_collapsible=0x7f03016d;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int state_liftable=0x7f03016e;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int state_lifted=0x7f03016f;
/**
* Drawable to display behind the status bar when the view is set to draw behind it.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int statusBarBackground=0x7f030170;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int statusBarScrim=0x7f030171;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int strokeColor=0x7f030172;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int strokeWidth=0x7f030173;
/**
* Drawable for the arrow icon indicating a particular item is a submenu.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int subMenuArrow=0x7f030174;
/**
* Background for the section containing the action (e.g. voice search)
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int submitBackground=0x7f030175;
/**
* Specifies subtitle text used for navigationMode="normal"
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int subtitle=0x7f030176;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int subtitleTextAppearance=0x7f030177;
/**
* A color to apply to the subtitle string.
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int subtitleTextColor=0x7f030178;
/**
* Specifies a style to use for subtitle text.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int subtitleTextStyle=0x7f030179;
/**
* Layout for query suggestion rows
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int suggestionRowLayout=0x7f03017a;
/**
* Minimum width for the switch component
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int switchMinWidth=0x7f03017b;
/**
* Minimum space between the switch and caption text
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int switchPadding=0x7f03017c;
/**
* Default style for the Switch widget.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int switchStyle=0x7f03017d;
/**
* TextAppearance style for text displayed on the switch thumb.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int switchTextAppearance=0x7f03017e;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int tabBackground=0x7f03017f;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int tabContentStart=0x7f030180;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>center</td><td>1</td><td></td></tr>
* <tr><td>fill</td><td>0</td><td></td></tr>
* </table>
*/
public static final int tabGravity=0x7f030181;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int tabIconTint=0x7f030182;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td></td></tr>
* <tr><td>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*/
public static final int tabIconTintMode=0x7f030183;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int tabIndicator=0x7f030184;
/**
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int tabIndicatorAnimationDuration=0x7f030185;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int tabIndicatorColor=0x7f030186;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int tabIndicatorFullWidth=0x7f030187;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>0</td><td></td></tr>
* <tr><td>center</td><td>1</td><td></td></tr>
* <tr><td>stretch</td><td>3</td><td></td></tr>
* <tr><td>top</td><td>2</td><td></td></tr>
* </table>
*/
public static final int tabIndicatorGravity=0x7f030188;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int tabIndicatorHeight=0x7f030189;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int tabInlineLabel=0x7f03018a;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int tabMaxWidth=0x7f03018b;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int tabMinWidth=0x7f03018c;
/**
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>fixed</td><td>1</td><td></td></tr>
* <tr><td>scrollable</td><td>0</td><td></td></tr>
* </table>
*/
public static final int tabMode=0x7f03018d;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int tabPadding=0x7f03018e;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int tabPaddingBottom=0x7f03018f;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int tabPaddingEnd=0x7f030190;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int tabPaddingStart=0x7f030191;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int tabPaddingTop=0x7f030192;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int tabRippleColor=0x7f030193;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int tabSelectedTextColor=0x7f030194;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int tabStyle=0x7f030195;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int tabTextAppearance=0x7f030196;
/**
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int tabTextColor=0x7f030197;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int tabUnboundedRipple=0x7f030198;
/**
* Present the text in ALL CAPS. This may use a small-caps form when available.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int textAllCaps=0x7f030199;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceBody1=0x7f03019a;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceBody2=0x7f03019b;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceButton=0x7f03019c;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceCaption=0x7f03019d;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceHeadline1=0x7f03019e;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceHeadline2=0x7f03019f;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceHeadline3=0x7f0301a0;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceHeadline4=0x7f0301a1;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceHeadline5=0x7f0301a2;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceHeadline6=0x7f0301a3;
/**
* Text color, typeface, size, and style for the text inside of a popup menu.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceLargePopupMenu=0x7f0301a4;
/**
* The preferred TextAppearance for the primary text of list items.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceListItem=0x7f0301a5;
/**
* The preferred TextAppearance for the secondary text of list items.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceListItemSecondary=0x7f0301a6;
/**
* The preferred TextAppearance for the primary text of small list items.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceListItemSmall=0x7f0301a7;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceOverline=0x7f0301a8;
/**
* Text color, typeface, size, and style for header text inside of a popup menu.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearancePopupMenuHeader=0x7f0301a9;
/**
* Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceSearchResultSubtitle=0x7f0301aa;
/**
* Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceSearchResultTitle=0x7f0301ab;
/**
* Text color, typeface, size, and style for small text inside of a popup menu.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceSmallPopupMenu=0x7f0301ac;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceSubtitle1=0x7f0301ad;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textAppearanceSubtitle2=0x7f0301ae;
/**
* Color of list item text in alert dialogs.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int textColorAlertDialogListItem=0x7f0301af;
/**
* Text color for urls in search suggestions, used by things like global search
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int textColorSearchUrl=0x7f0301b0;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int textEndPadding=0x7f0301b1;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int textInputStyle=0x7f0301b2;
/**
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int textStartPadding=0x7f0301b3;
/**
* Deprecated.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int theme=0x7f0301b4;
/**
* The thickness (stroke size) for the bar paint
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int thickness=0x7f0301b5;
/**
* Amount of padding on either side of text within the switch thumb.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int thumbTextPadding=0x7f0301b6;
/**
* Tint to apply to the thumb drawable.
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int thumbTint=0x7f0301b7;
/**
* Blending mode used to apply the thumb tint.
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td>Combines the tint and drawable color and alpha channels, clamping the
* result to valid color values. Saturate(S + D)</td></tr>
* <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of
* the tint. [Sa * Da, Sc * Dc]</td></tr>
* <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr>
* <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha
* channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr>
* <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s
* color channels are thrown out. [Sa * Da, Sc * Da]</td></tr>
* <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable.
* [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr>
* </table>
*/
public static final int thumbTintMode=0x7f0301b8;
/**
* Drawable displayed at each progress position on a seekbar.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int tickMark=0x7f0301b9;
/**
* Tint to apply to the tick mark drawable.
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int tickMarkTint=0x7f0301ba;
/**
* Blending mode used to apply the tick mark tint.
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td>Combines the tint and drawable color and alpha channels, clamping the
* result to valid color values. Saturate(S + D)</td></tr>
* <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of
* the tint. [Sa * Da, Sc * Dc]</td></tr>
* <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr>
* <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha
* channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr>
* <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s
* color channels are thrown out. [Sa * Da, Sc * Da]</td></tr>
* <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable.
* [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr>
* </table>
*/
public static final int tickMarkTintMode=0x7f0301bb;
/**
* Tint to apply to the image source.
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int tint=0x7f0301bc;
/**
* Blending mode used to apply the image source tint.
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the
* result to valid color values. Saturate(S + D)</td></tr>
* <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of
* the tint. [Sa * Da, Sc * Dc]</td></tr>
* <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr>
* <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha
* channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr>
* <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s
* color channels are thrown out. [Sa * Da, Sc * Da]</td></tr>
* <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable.
* [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr>
* </table>
*/
public static final int tintMode=0x7f0301bd;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int title=0x7f0301be;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int titleEnabled=0x7f0301bf;
/**
* Specifies extra space on the left, start, right and end sides
* of the toolbar's title. Margin values should be positive.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int titleMargin=0x7f0301c0;
/**
* Specifies extra space on the bottom side of the toolbar's title.
* If both this attribute and titleMargin are specified, then this
* attribute takes precedence. Margin values should be positive.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int titleMarginBottom=0x7f0301c1;
/**
* Specifies extra space on the end side of the toolbar's title.
* If both this attribute and titleMargin are specified, then this
* attribute takes precedence. Margin values should be positive.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int titleMarginEnd=0x7f0301c2;
/**
* Specifies extra space on the start side of the toolbar's title.
* If both this attribute and titleMargin are specified, then this
* attribute takes precedence. Margin values should be positive.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int titleMarginStart=0x7f0301c3;
/**
* Specifies extra space on the top side of the toolbar's title.
* If both this attribute and titleMargin are specified, then this
* attribute takes precedence. Margin values should be positive.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
public static final int titleMarginTop=0x7f0301c4;
/**
* {@deprecated Use titleMargin}
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*/
@Deprecated
public static final int titleMargins=0x7f0301c5;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int titleTextAppearance=0x7f0301c6;
/**
* A color to apply to the title string.
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int titleTextColor=0x7f0301c7;
/**
* Specifies a style to use for title text.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int titleTextStyle=0x7f0301c8;
/**
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int toolbarId=0x7f0301c9;
/**
* Default Toolar NavigationButtonStyle
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int toolbarNavigationButtonStyle=0x7f0301ca;
/**
* Default Toolbar style.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int toolbarStyle=0x7f0301cb;
/**
* Foreground color to use for tooltips
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int tooltipForegroundColor=0x7f0301cc;
/**
* Background to use for tooltips
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int tooltipFrameBackground=0x7f0301cd;
/**
* The tooltip text associated with the item.
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int tooltipText=0x7f0301ce;
/**
* Drawable to use as the "track" that the switch thumb slides within.
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int track=0x7f0301cf;
/**
* Tint to apply to the track.
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*/
public static final int trackTint=0x7f0301d0;
/**
* Blending mode used to apply the track tint.
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td>Combines the tint and drawable color and alpha channels, clamping the
* result to valid color values. Saturate(S + D)</td></tr>
* <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of
* the tint. [Sa * Da, Sc * Dc]</td></tr>
* <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr>
* <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha
* channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr>
* <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s
* color channels are thrown out. [Sa * Da, Sc * Da]</td></tr>
* <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable.
* [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr>
* </table>
*/
public static final int trackTintMode=0x7f0301d1;
/**
* The index of the font in the tcc font file. If the font file referenced is not in the
* tcc format, this attribute needs not be specified.
* <p>May be an integer value, such as "<code>100</code>".
*/
public static final int ttcIndex=0x7f0301d2;
/**
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int useCompatPadding=0x7f0301d3;
/**
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*/
public static final int viewInflaterClass=0x7f0301d4;
/**
* Voice button icon
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*/
public static final int voiceIcon=0x7f0301d5;
/**
* Flag indicating whether this window should have an Action Bar
* in place of the usual title bar.
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int windowActionBar=0x7f0301d6;
/**
* Flag indicating whether this window's Action Bar should overlay
* application content. Does nothing if the window would not
* have an Action Bar.
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int windowActionBarOverlay=0x7f0301d7;
/**
* Flag indicating whether action modes should overlay window content
* when there is not reserved space for their UI (such as an Action Bar).
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int windowActionModeOverlay=0x7f0301d8;
/**
* A fixed height for the window along the major axis of the screen,
* that is, when in portrait. Can be either an absolute dimension
* or a fraction of the screen size in that dimension.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*/
public static final int windowFixedHeightMajor=0x7f0301d9;
/**
* A fixed height for the window along the minor axis of the screen,
* that is, when in landscape. Can be either an absolute dimension
* or a fraction of the screen size in that dimension.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*/
public static final int windowFixedHeightMinor=0x7f0301da;
/**
* A fixed width for the window along the major axis of the screen,
* that is, when in landscape. Can be either an absolute dimension
* or a fraction of the screen size in that dimension.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*/
public static final int windowFixedWidthMajor=0x7f0301db;
/**
* A fixed width for the window along the minor axis of the screen,
* that is, when in portrait. Can be either an absolute dimension
* or a fraction of the screen size in that dimension.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*/
public static final int windowFixedWidthMinor=0x7f0301dc;
/**
* The minimum width the window is allowed to be, along the major
* axis of the screen. That is, when in landscape. Can be either
* an absolute dimension or a fraction of the screen size in that
* dimension.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*/
public static final int windowMinWidthMajor=0x7f0301dd;
/**
* The minimum width the window is allowed to be, along the minor
* axis of the screen. That is, when in portrait. Can be either
* an absolute dimension or a fraction of the screen size in that
* dimension.
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*/
public static final int windowMinWidthMinor=0x7f0301de;
/**
* Flag indicating whether there should be no title on this window.
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*/
public static final int windowNoTitle=0x7f0301df;
}
public static final class bool {
public static final int abc_action_bar_embed_tabs=0x7f040000;
public static final int abc_allow_stacked_button_bar=0x7f040001;
public static final int abc_config_actionMenuItemAllCaps=0x7f040002;
public static final int mtrl_btn_textappearance_all_caps=0x7f040003;
}
public static final class color {
public static final int abc_background_cache_hint_selector_material_dark=0x7f050000;
public static final int abc_background_cache_hint_selector_material_light=0x7f050001;
public static final int abc_btn_colored_borderless_text_material=0x7f050002;
public static final int abc_btn_colored_text_material=0x7f050003;
public static final int abc_color_highlight_material=0x7f050004;
public static final int abc_hint_foreground_material_dark=0x7f050005;
public static final int abc_hint_foreground_material_light=0x7f050006;
public static final int abc_input_method_navigation_guard=0x7f050007;
public static final int abc_primary_text_disable_only_material_dark=0x7f050008;
public static final int abc_primary_text_disable_only_material_light=0x7f050009;
public static final int abc_primary_text_material_dark=0x7f05000a;
public static final int abc_primary_text_material_light=0x7f05000b;
public static final int abc_search_url_text=0x7f05000c;
public static final int abc_search_url_text_normal=0x7f05000d;
public static final int abc_search_url_text_pressed=0x7f05000e;
public static final int abc_search_url_text_selected=0x7f05000f;
public static final int abc_secondary_text_material_dark=0x7f050010;
public static final int abc_secondary_text_material_light=0x7f050011;
public static final int abc_tint_btn_checkable=0x7f050012;
public static final int abc_tint_default=0x7f050013;
public static final int abc_tint_edittext=0x7f050014;
public static final int abc_tint_seek_thumb=0x7f050015;
public static final int abc_tint_spinner=0x7f050016;
public static final int abc_tint_switch_track=0x7f050017;
public static final int accent_material_dark=0x7f050018;
public static final int accent_material_light=0x7f050019;
public static final int background_floating_material_dark=0x7f05001a;
public static final int background_floating_material_light=0x7f05001b;
public static final int background_material_dark=0x7f05001c;
public static final int background_material_light=0x7f05001d;
public static final int bright_foreground_disabled_material_dark=0x7f05001e;
public static final int bright_foreground_disabled_material_light=0x7f05001f;
public static final int bright_foreground_inverse_material_dark=0x7f050020;
public static final int bright_foreground_inverse_material_light=0x7f050021;
public static final int bright_foreground_material_dark=0x7f050022;
public static final int bright_foreground_material_light=0x7f050023;
public static final int button_material_dark=0x7f050024;
public static final int button_material_light=0x7f050025;
public static final int cardview_dark_background=0x7f050026;
public static final int cardview_light_background=0x7f050027;
public static final int cardview_shadow_end_color=0x7f050028;
public static final int cardview_shadow_start_color=0x7f050029;
public static final int design_bottom_navigation_shadow_color=0x7f05002a;
public static final int design_default_color_primary=0x7f05002b;
public static final int design_default_color_primary_dark=0x7f05002c;
public static final int design_error=0x7f05002d;
public static final int design_fab_shadow_end_color=0x7f05002e;
public static final int design_fab_shadow_mid_color=0x7f05002f;
public static final int design_fab_shadow_start_color=0x7f050030;
public static final int design_fab_stroke_end_inner_color=0x7f050031;
public static final int design_fab_stroke_end_outer_color=0x7f050032;
public static final int design_fab_stroke_top_inner_color=0x7f050033;
public static final int design_fab_stroke_top_outer_color=0x7f050034;
public static final int design_snackbar_background_color=0x7f050035;
public static final int design_tint_password_toggle=0x7f050036;
public static final int dim_foreground_disabled_material_dark=0x7f050037;
public static final int dim_foreground_disabled_material_light=0x7f050038;
public static final int dim_foreground_material_dark=0x7f050039;
public static final int dim_foreground_material_light=0x7f05003a;
public static final int error_color_material_dark=0x7f05003b;
public static final int error_color_material_light=0x7f05003c;
public static final int foreground_material_dark=0x7f05003d;
public static final int foreground_material_light=0x7f05003e;
public static final int highlighted_text_material_dark=0x7f05003f;
public static final int highlighted_text_material_light=0x7f050040;
public static final int material_blue_grey_800=0x7f050041;
public static final int material_blue_grey_900=0x7f050042;
public static final int material_blue_grey_950=0x7f050043;
public static final int material_deep_teal_200=0x7f050044;
public static final int material_deep_teal_500=0x7f050045;
public static final int material_grey_100=0x7f050046;
public static final int material_grey_300=0x7f050047;
public static final int material_grey_50=0x7f050048;
public static final int material_grey_600=0x7f050049;
public static final int material_grey_800=0x7f05004a;
public static final int material_grey_850=0x7f05004b;
public static final int material_grey_900=0x7f05004c;
public static final int mtrl_bottom_nav_colored_item_tint=0x7f05004d;
public static final int mtrl_bottom_nav_item_tint=0x7f05004e;
public static final int mtrl_btn_bg_color_disabled=0x7f05004f;
public static final int mtrl_btn_bg_color_selector=0x7f050050;
public static final int mtrl_btn_ripple_color=0x7f050051;
public static final int mtrl_btn_stroke_color_selector=0x7f050052;
public static final int mtrl_btn_text_btn_ripple_color=0x7f050053;
public static final int mtrl_btn_text_color_disabled=0x7f050054;
public static final int mtrl_btn_text_color_selector=0x7f050055;
public static final int mtrl_btn_transparent_bg_color=0x7f050056;
public static final int mtrl_chip_background_color=0x7f050057;
public static final int mtrl_chip_close_icon_tint=0x7f050058;
public static final int mtrl_chip_ripple_color=0x7f050059;
public static final int mtrl_chip_text_color=0x7f05005a;
public static final int mtrl_fab_ripple_color=0x7f05005b;
public static final int mtrl_scrim_color=0x7f05005c;
public static final int mtrl_tabs_colored_ripple_color=0x7f05005d;
public static final int mtrl_tabs_icon_color_selector=0x7f05005e;
public static final int mtrl_tabs_icon_color_selector_colored=0x7f05005f;
public static final int mtrl_tabs_legacy_text_color_selector=0x7f050060;
public static final int mtrl_tabs_ripple_color=0x7f050061;
public static final int mtrl_text_btn_text_color_selector=0x7f050062;
public static final int mtrl_textinput_default_box_stroke_color=0x7f050063;
public static final int mtrl_textinput_disabled_color=0x7f050064;
public static final int mtrl_textinput_filled_box_default_background_color=0x7f050065;
public static final int mtrl_textinput_hovered_box_stroke_color=0x7f050066;
public static final int nativescript_blue=0x7f050067;
public static final int notification_action_color_filter=0x7f050068;
public static final int notification_icon_bg_color=0x7f050069;
public static final int notification_material_background_media_default_color=0x7f05006a;
public static final int ns_accent=0x7f05006b;
public static final int ns_blue=0x7f05006c;
public static final int ns_primary=0x7f05006d;
public static final int ns_primaryDark=0x7f05006e;
public static final int primary_dark_material_dark=0x7f05006f;
public static final int primary_dark_material_light=0x7f050070;
public static final int primary_material_dark=0x7f050071;
public static final int primary_material_light=0x7f050072;
public static final int primary_text_default_material_dark=0x7f050073;
public static final int primary_text_default_material_light=0x7f050074;
public static final int primary_text_disabled_material_dark=0x7f050075;
public static final int primary_text_disabled_material_light=0x7f050076;
public static final int ripple_material_dark=0x7f050077;
public static final int ripple_material_light=0x7f050078;
public static final int secondary_text_default_material_dark=0x7f050079;
public static final int secondary_text_default_material_light=0x7f05007a;
public static final int secondary_text_disabled_material_dark=0x7f05007b;
public static final int secondary_text_disabled_material_light=0x7f05007c;
public static final int switch_thumb_disabled_material_dark=0x7f05007d;
public static final int switch_thumb_disabled_material_light=0x7f05007e;
public static final int switch_thumb_material_dark=0x7f05007f;
public static final int switch_thumb_material_light=0x7f050080;
public static final int switch_thumb_normal_material_dark=0x7f050081;
public static final int switch_thumb_normal_material_light=0x7f050082;
public static final int tooltip_background_dark=0x7f050083;
public static final int tooltip_background_light=0x7f050084;
}
public static final class dimen {
public static final int abc_action_bar_content_inset_material=0x7f060000;
public static final int abc_action_bar_content_inset_with_nav=0x7f060001;
public static final int abc_action_bar_default_height_material=0x7f060002;
public static final int abc_action_bar_default_padding_end_material=0x7f060003;
public static final int abc_action_bar_default_padding_start_material=0x7f060004;
public static final int abc_action_bar_elevation_material=0x7f060005;
public static final int abc_action_bar_icon_vertical_padding_material=0x7f060006;
public static final int abc_action_bar_overflow_padding_end_material=0x7f060007;
public static final int abc_action_bar_overflow_padding_start_material=0x7f060008;
public static final int abc_action_bar_stacked_max_height=0x7f060009;
public static final int abc_action_bar_stacked_tab_max_width=0x7f06000a;
public static final int abc_action_bar_subtitle_bottom_margin_material=0x7f06000b;
public static final int abc_action_bar_subtitle_top_margin_material=0x7f06000c;
public static final int abc_action_button_min_height_material=0x7f06000d;
public static final int abc_action_button_min_width_material=0x7f06000e;
public static final int abc_action_button_min_width_overflow_material=0x7f06000f;
public static final int abc_alert_dialog_button_bar_height=0x7f060010;
public static final int abc_alert_dialog_button_dimen=0x7f060011;
public static final int abc_button_inset_horizontal_material=0x7f060012;
public static final int abc_button_inset_vertical_material=0x7f060013;
public static final int abc_button_padding_horizontal_material=0x7f060014;
public static final int abc_button_padding_vertical_material=0x7f060015;
public static final int abc_cascading_menus_min_smallest_width=0x7f060016;
public static final int abc_config_prefDialogWidth=0x7f060017;
public static final int abc_control_corner_material=0x7f060018;
public static final int abc_control_inset_material=0x7f060019;
public static final int abc_control_padding_material=0x7f06001a;
public static final int abc_dialog_corner_radius_material=0x7f06001b;
public static final int abc_dialog_fixed_height_major=0x7f06001c;
public static final int abc_dialog_fixed_height_minor=0x7f06001d;
public static final int abc_dialog_fixed_width_major=0x7f06001e;
public static final int abc_dialog_fixed_width_minor=0x7f06001f;
public static final int abc_dialog_list_padding_bottom_no_buttons=0x7f060020;
public static final int abc_dialog_list_padding_top_no_title=0x7f060021;
public static final int abc_dialog_min_width_major=0x7f060022;
public static final int abc_dialog_min_width_minor=0x7f060023;
public static final int abc_dialog_padding_material=0x7f060024;
public static final int abc_dialog_padding_top_material=0x7f060025;
public static final int abc_dialog_title_divider_material=0x7f060026;
public static final int abc_disabled_alpha_material_dark=0x7f060027;
public static final int abc_disabled_alpha_material_light=0x7f060028;
public static final int abc_dropdownitem_icon_width=0x7f060029;
public static final int abc_dropdownitem_text_padding_left=0x7f06002a;
public static final int abc_dropdownitem_text_padding_right=0x7f06002b;
public static final int abc_edit_text_inset_bottom_material=0x7f06002c;
public static final int abc_edit_text_inset_horizontal_material=0x7f06002d;
public static final int abc_edit_text_inset_top_material=0x7f06002e;
public static final int abc_floating_window_z=0x7f06002f;
public static final int abc_list_item_padding_horizontal_material=0x7f060030;
public static final int abc_panel_menu_list_width=0x7f060031;
public static final int abc_progress_bar_height_material=0x7f060032;
public static final int abc_search_view_preferred_height=0x7f060033;
public static final int abc_search_view_preferred_width=0x7f060034;
public static final int abc_seekbar_track_background_height_material=0x7f060035;
public static final int abc_seekbar_track_progress_height_material=0x7f060036;
public static final int abc_select_dialog_padding_start_material=0x7f060037;
public static final int abc_switch_padding=0x7f060038;
public static final int abc_text_size_body_1_material=0x7f060039;
public static final int abc_text_size_body_2_material=0x7f06003a;
public static final int abc_text_size_button_material=0x7f06003b;
public static final int abc_text_size_caption_material=0x7f06003c;
public static final int abc_text_size_display_1_material=0x7f06003d;
public static final int abc_text_size_display_2_material=0x7f06003e;
public static final int abc_text_size_display_3_material=0x7f06003f;
public static final int abc_text_size_display_4_material=0x7f060040;
public static final int abc_text_size_headline_material=0x7f060041;
public static final int abc_text_size_large_material=0x7f060042;
public static final int abc_text_size_medium_material=0x7f060043;
public static final int abc_text_size_menu_header_material=0x7f060044;
public static final int abc_text_size_menu_material=0x7f060045;
public static final int abc_text_size_small_material=0x7f060046;
public static final int abc_text_size_subhead_material=0x7f060047;
public static final int abc_text_size_subtitle_material_toolbar=0x7f060048;
public static final int abc_text_size_title_material=0x7f060049;
public static final int abc_text_size_title_material_toolbar=0x7f06004a;
public static final int cardview_compat_inset_shadow=0x7f06004b;
public static final int cardview_default_elevation=0x7f06004c;
public static final int cardview_default_radius=0x7f06004d;
public static final int compat_button_inset_horizontal_material=0x7f06004e;
public static final int compat_button_inset_vertical_material=0x7f06004f;
public static final int compat_button_padding_horizontal_material=0x7f060050;
public static final int compat_button_padding_vertical_material=0x7f060051;
public static final int compat_control_corner_material=0x7f060052;
public static final int compat_notification_large_icon_max_height=0x7f060053;
public static final int compat_notification_large_icon_max_width=0x7f060054;
public static final int design_appbar_elevation=0x7f060055;
public static final int design_bottom_navigation_active_item_max_width=0x7f060056;
public static final int design_bottom_navigation_active_item_min_width=0x7f060057;
public static final int design_bottom_navigation_active_text_size=0x7f060058;
public static final int design_bottom_navigation_elevation=0x7f060059;
public static final int design_bottom_navigation_height=0x7f06005a;
public static final int design_bottom_navigation_icon_size=0x7f06005b;
public static final int design_bottom_navigation_item_max_width=0x7f06005c;
public static final int design_bottom_navigation_item_min_width=0x7f06005d;
public static final int design_bottom_navigation_margin=0x7f06005e;
public static final int design_bottom_navigation_shadow_height=0x7f06005f;
public static final int design_bottom_navigation_text_size=0x7f060060;
public static final int design_bottom_sheet_modal_elevation=0x7f060061;
public static final int design_bottom_sheet_peek_height_min=0x7f060062;
public static final int design_fab_border_width=0x7f060063;
public static final int design_fab_elevation=0x7f060064;
public static final int design_fab_image_size=0x7f060065;
public static final int design_fab_size_mini=0x7f060066;
public static final int design_fab_size_normal=0x7f060067;
public static final int design_fab_translation_z_hovered_focused=0x7f060068;
public static final int design_fab_translation_z_pressed=0x7f060069;
public static final int design_navigation_elevation=0x7f06006a;
public static final int design_navigation_icon_padding=0x7f06006b;
public static final int design_navigation_icon_size=0x7f06006c;
public static final int design_navigation_item_horizontal_padding=0x7f06006d;
public static final int design_navigation_item_icon_padding=0x7f06006e;
public static final int design_navigation_max_width=0x7f06006f;
public static final int design_navigation_padding_bottom=0x7f060070;
public static final int design_navigation_separator_vertical_padding=0x7f060071;
public static final int design_snackbar_action_inline_max_width=0x7f060072;
public static final int design_snackbar_background_corner_radius=0x7f060073;
public static final int design_snackbar_elevation=0x7f060074;
public static final int design_snackbar_extra_spacing_horizontal=0x7f060075;
public static final int design_snackbar_max_width=0x7f060076;
public static final int design_snackbar_min_width=0x7f060077;
public static final int design_snackbar_padding_horizontal=0x7f060078;
public static final int design_snackbar_padding_vertical=0x7f060079;
public static final int design_snackbar_padding_vertical_2lines=0x7f06007a;
public static final int design_snackbar_text_size=0x7f06007b;
public static final int design_tab_max_width=0x7f06007c;
public static final int design_tab_scrollable_min_width=0x7f06007d;
public static final int design_tab_text_size=0x7f06007e;
public static final int design_tab_text_size_2line=0x7f06007f;
public static final int design_textinput_caption_translate_y=0x7f060080;
public static final int disabled_alpha_material_dark=0x7f060081;
public static final int disabled_alpha_material_light=0x7f060082;
public static final int fastscroll_default_thickness=0x7f060083;
public static final int fastscroll_margin=0x7f060084;
public static final int fastscroll_minimum_range=0x7f060085;
public static final int highlight_alpha_material_colored=0x7f060086;
public static final int highlight_alpha_material_dark=0x7f060087;
public static final int highlight_alpha_material_light=0x7f060088;
public static final int hint_alpha_material_dark=0x7f060089;
public static final int hint_alpha_material_light=0x7f06008a;
public static final int hint_pressed_alpha_material_dark=0x7f06008b;
public static final int hint_pressed_alpha_material_light=0x7f06008c;
public static final int item_touch_helper_max_drag_scroll_per_frame=0x7f06008d;
public static final int item_touch_helper_swipe_escape_max_velocity=0x7f06008e;
public static final int item_touch_helper_swipe_escape_velocity=0x7f06008f;
public static final int mtrl_bottomappbar_fabOffsetEndMode=0x7f060090;
public static final int mtrl_bottomappbar_fab_cradle_margin=0x7f060091;
public static final int mtrl_bottomappbar_fab_cradle_rounded_corner_radius=0x7f060092;
public static final int mtrl_bottomappbar_fab_cradle_vertical_offset=0x7f060093;
public static final int mtrl_bottomappbar_height=0x7f060094;
public static final int mtrl_btn_corner_radius=0x7f060095;
public static final int mtrl_btn_dialog_btn_min_width=0x7f060096;
public static final int mtrl_btn_disabled_elevation=0x7f060097;
public static final int mtrl_btn_disabled_z=0x7f060098;
public static final int mtrl_btn_elevation=0x7f060099;
public static final int mtrl_btn_focused_z=0x7f06009a;
public static final int mtrl_btn_hovered_z=0x7f06009b;
public static final int mtrl_btn_icon_btn_padding_left=0x7f06009c;
public static final int mtrl_btn_icon_padding=0x7f06009d;
public static final int mtrl_btn_inset=0x7f06009e;
public static final int mtrl_btn_letter_spacing=0x7f06009f;
public static final int mtrl_btn_padding_bottom=0x7f0600a0;
public static final int mtrl_btn_padding_left=0x7f0600a1;
public static final int mtrl_btn_padding_right=0x7f0600a2;
public static final int mtrl_btn_padding_top=0x7f0600a3;
public static final int mtrl_btn_pressed_z=0x7f0600a4;
public static final int mtrl_btn_stroke_size=0x7f0600a5;
public static final int mtrl_btn_text_btn_icon_padding=0x7f0600a6;
public static final int mtrl_btn_text_btn_padding_left=0x7f0600a7;
public static final int mtrl_btn_text_btn_padding_right=0x7f0600a8;
public static final int mtrl_btn_text_size=0x7f0600a9;
public static final int mtrl_btn_z=0x7f0600aa;
public static final int mtrl_card_elevation=0x7f0600ab;
public static final int mtrl_card_spacing=0x7f0600ac;
public static final int mtrl_chip_pressed_translation_z=0x7f0600ad;
public static final int mtrl_chip_text_size=0x7f0600ae;
public static final int mtrl_fab_elevation=0x7f0600af;
public static final int mtrl_fab_translation_z_hovered_focused=0x7f0600b0;
public static final int mtrl_fab_translation_z_pressed=0x7f0600b1;
public static final int mtrl_navigation_elevation=0x7f0600b2;
public static final int mtrl_navigation_item_horizontal_padding=0x7f0600b3;
public static final int mtrl_navigation_item_icon_padding=0x7f0600b4;
public static final int mtrl_snackbar_background_corner_radius=0x7f0600b5;
public static final int mtrl_snackbar_margin=0x7f0600b6;
public static final int mtrl_textinput_box_bottom_offset=0x7f0600b7;
public static final int mtrl_textinput_box_corner_radius_medium=0x7f0600b8;
public static final int mtrl_textinput_box_corner_radius_small=0x7f0600b9;
public static final int mtrl_textinput_box_label_cutout_padding=0x7f0600ba;
public static final int mtrl_textinput_box_padding_end=0x7f0600bb;
public static final int mtrl_textinput_box_stroke_width_default=0x7f0600bc;
public static final int mtrl_textinput_box_stroke_width_focused=0x7f0600bd;
public static final int mtrl_textinput_outline_box_expanded_padding=0x7f0600be;
public static final int mtrl_toolbar_default_height=0x7f0600bf;
public static final int notification_action_icon_size=0x7f0600c0;
public static final int notification_action_text_size=0x7f0600c1;
public static final int notification_big_circle_margin=0x7f0600c2;
public static final int notification_content_margin_start=0x7f0600c3;
public static final int notification_large_icon_height=0x7f0600c4;
public static final int notification_large_icon_width=0x7f0600c5;
public static final int notification_main_column_padding_top=0x7f0600c6;
public static final int notification_media_narrow_margin=0x7f0600c7;
public static final int notification_right_icon_size=0x7f0600c8;
public static final int notification_right_side_padding_top=0x7f0600c9;
public static final int notification_small_icon_background_padding=0x7f0600ca;
public static final int notification_small_icon_size_as_large=0x7f0600cb;
public static final int notification_subtext_size=0x7f0600cc;
public static final int notification_top_pad=0x7f0600cd;
public static final int notification_top_pad_large_text=0x7f0600ce;
public static final int subtitle_corner_radius=0x7f0600cf;
public static final int subtitle_outline_width=0x7f0600d0;
public static final int subtitle_shadow_offset=0x7f0600d1;
public static final int subtitle_shadow_radius=0x7f0600d2;
public static final int tooltip_corner_radius=0x7f0600d3;
public static final int tooltip_horizontal_padding=0x7f0600d4;
public static final int tooltip_margin=0x7f0600d5;
public static final int tooltip_precise_anchor_extra_offset=0x7f0600d6;
public static final int tooltip_precise_anchor_threshold=0x7f0600d7;
public static final int tooltip_vertical_padding=0x7f0600d8;
public static final int tooltip_y_offset_non_touch=0x7f0600d9;
public static final int tooltip_y_offset_touch=0x7f0600da;
}
public static final class drawable {
public static final int abc_ab_share_pack_mtrl_alpha=0x7f070006;
public static final int abc_action_bar_item_background_material=0x7f070007;
public static final int abc_btn_borderless_material=0x7f070008;
public static final int abc_btn_check_material=0x7f070009;
public static final int abc_btn_check_to_on_mtrl_000=0x7f07000a;
public static final int abc_btn_check_to_on_mtrl_015=0x7f07000b;
public static final int abc_btn_colored_material=0x7f07000c;
public static final int abc_btn_default_mtrl_shape=0x7f07000d;
public static final int abc_btn_radio_material=0x7f07000e;
public static final int abc_btn_radio_to_on_mtrl_000=0x7f07000f;
public static final int abc_btn_radio_to_on_mtrl_015=0x7f070010;
public static final int abc_btn_switch_to_on_mtrl_00001=0x7f070011;
public static final int abc_btn_switch_to_on_mtrl_00012=0x7f070012;
public static final int abc_cab_background_internal_bg=0x7f070013;
public static final int abc_cab_background_top_material=0x7f070014;
public static final int abc_cab_background_top_mtrl_alpha=0x7f070015;
public static final int abc_control_background_material=0x7f070016;
public static final int abc_dialog_material_background=0x7f070017;
public static final int abc_edit_text_material=0x7f070018;
public static final int abc_ic_ab_back_material=0x7f070019;
public static final int abc_ic_arrow_drop_right_black_24dp=0x7f07001a;
public static final int abc_ic_clear_material=0x7f07001b;
public static final int abc_ic_commit_search_api_mtrl_alpha=0x7f07001c;
public static final int abc_ic_go_search_api_material=0x7f07001d;
public static final int abc_ic_menu_copy_mtrl_am_alpha=0x7f07001e;
public static final int abc_ic_menu_cut_mtrl_alpha=0x7f07001f;
public static final int abc_ic_menu_overflow_material=0x7f070020;
public static final int abc_ic_menu_paste_mtrl_am_alpha=0x7f070021;
public static final int abc_ic_menu_selectall_mtrl_alpha=0x7f070022;
public static final int abc_ic_menu_share_mtrl_alpha=0x7f070023;
public static final int abc_ic_search_api_material=0x7f070024;
public static final int abc_ic_star_black_16dp=0x7f070025;
public static final int abc_ic_star_black_36dp=0x7f070026;
public static final int abc_ic_star_black_48dp=0x7f070027;
public static final int abc_ic_star_half_black_16dp=0x7f070028;
public static final int abc_ic_star_half_black_36dp=0x7f070029;
public static final int abc_ic_star_half_black_48dp=0x7f07002a;
public static final int abc_ic_voice_search_api_material=0x7f07002b;
public static final int abc_item_background_holo_dark=0x7f07002c;
public static final int abc_item_background_holo_light=0x7f07002d;
public static final int abc_list_divider_material=0x7f07002e;
public static final int abc_list_divider_mtrl_alpha=0x7f07002f;
public static final int abc_list_focused_holo=0x7f070030;
public static final int abc_list_longpressed_holo=0x7f070031;
public static final int abc_list_pressed_holo_dark=0x7f070032;
public static final int abc_list_pressed_holo_light=0x7f070033;
public static final int abc_list_selector_background_transition_holo_dark=0x7f070034;
public static final int abc_list_selector_background_transition_holo_light=0x7f070035;
public static final int abc_list_selector_disabled_holo_dark=0x7f070036;
public static final int abc_list_selector_disabled_holo_light=0x7f070037;
public static final int abc_list_selector_holo_dark=0x7f070038;
public static final int abc_list_selector_holo_light=0x7f070039;
public static final int abc_menu_hardkey_panel_mtrl_mult=0x7f07003a;
public static final int abc_popup_background_mtrl_mult=0x7f07003b;
public static final int abc_ratingbar_indicator_material=0x7f07003c;
public static final int abc_ratingbar_material=0x7f07003d;
public static final int abc_ratingbar_small_material=0x7f07003e;
public static final int abc_scrubber_control_off_mtrl_alpha=0x7f07003f;
public static final int abc_scrubber_control_to_pressed_mtrl_000=0x7f070040;
public static final int abc_scrubber_control_to_pressed_mtrl_005=0x7f070041;
public static final int abc_scrubber_primary_mtrl_alpha=0x7f070042;
public static final int abc_scrubber_track_mtrl_alpha=0x7f070043;
public static final int abc_seekbar_thumb_material=0x7f070044;
public static final int abc_seekbar_tick_mark_material=0x7f070045;
public static final int abc_seekbar_track_material=0x7f070046;
public static final int abc_spinner_mtrl_am_alpha=0x7f070047;
public static final int abc_spinner_textfield_background_material=0x7f070048;
public static final int abc_switch_thumb_material=0x7f070049;
public static final int abc_switch_track_mtrl_alpha=0x7f07004a;
public static final int abc_tab_indicator_material=0x7f07004b;
public static final int abc_tab_indicator_mtrl_alpha=0x7f07004c;
public static final int abc_text_cursor_material=0x7f07004d;
public static final int abc_text_select_handle_left_mtrl_dark=0x7f07004e;
public static final int abc_text_select_handle_left_mtrl_light=0x7f07004f;
public static final int abc_text_select_handle_middle_mtrl_dark=0x7f070050;
public static final int abc_text_select_handle_middle_mtrl_light=0x7f070051;
public static final int abc_text_select_handle_right_mtrl_dark=0x7f070052;
public static final int abc_text_select_handle_right_mtrl_light=0x7f070053;
public static final int abc_textfield_activated_mtrl_alpha=0x7f070054;
public static final int abc_textfield_default_mtrl_alpha=0x7f070055;
public static final int abc_textfield_search_activated_mtrl_alpha=0x7f070056;
public static final int abc_textfield_search_default_mtrl_alpha=0x7f070057;
public static final int abc_textfield_search_material=0x7f070058;
public static final int abc_vector_test=0x7f070059;
public static final int avd_hide_password=0x7f07005a;
public static final int avd_show_password=0x7f07005b;
public static final int background=0x7f07005c;
public static final int design_bottom_navigation_item_background=0x7f07005d;
public static final int design_fab_background=0x7f07005e;
public static final int design_ic_visibility=0x7f07005f;
public static final int design_ic_visibility_off=0x7f070060;
public static final int design_password_eye=0x7f070061;
public static final int design_snackbar_background=0x7f070062;
public static final int hamburger=0x7f070063;
public static final int hmb=0x7f070064;
public static final int ic_mtrl_chip_checked_black=0x7f070065;
public static final int ic_mtrl_chip_checked_circle=0x7f070066;
public static final int ic_mtrl_chip_close_circle=0x7f070067;
public static final int icon=0x7f070068;
public static final int logo=0x7f070069;
public static final int mtrl_snackbar_background=0x7f07006a;
public static final int mtrl_tabs_default_indicator=0x7f07006b;
public static final int navigation_empty_icon=0x7f07006c;
public static final int notification_action_background=0x7f07006d;
public static final int notification_bg=0x7f07006e;
public static final int notification_bg_low=0x7f07006f;
public static final int notification_bg_low_normal=0x7f070070;
public static final int notification_bg_low_pressed=0x7f070071;
public static final int notification_bg_normal=0x7f070072;
public static final int notification_bg_normal_pressed=0x7f070073;
public static final int notification_icon_background=0x7f070074;
public static final int notification_template_icon_bg=0x7f070075;
public static final int notification_template_icon_low_bg=0x7f070076;
public static final int notification_tile_bg=0x7f070077;
public static final int notify_panel_notification_icon_bg=0x7f070078;
public static final int splash_screen=0x7f070079;
public static final int tooltip_frame_dark=0x7f07007a;
public static final int tooltip_frame_light=0x7f07007b;
}
public static final class id {
public static final int ALT=0x7f080000;
public static final int CTRL=0x7f080001;
public static final int FUNCTION=0x7f080002;
public static final int META=0x7f080003;
public static final int SHIFT=0x7f080004;
public static final int SYM=0x7f080005;
public static final int action0=0x7f080006;
public static final int action_bar=0x7f080007;
public static final int action_bar_activity_content=0x7f080008;
public static final int action_bar_container=0x7f080009;
public static final int action_bar_root=0x7f08000a;
public static final int action_bar_spinner=0x7f08000b;
public static final int action_bar_subtitle=0x7f08000c;
public static final int action_bar_title=0x7f08000d;
public static final int action_container=0x7f08000e;
public static final int action_context_bar=0x7f08000f;
public static final int action_divider=0x7f080010;
public static final int action_image=0x7f080011;
public static final int action_menu_divider=0x7f080012;
public static final int action_menu_presenter=0x7f080013;
public static final int action_mode_bar=0x7f080014;
public static final int action_mode_bar_stub=0x7f080015;
public static final int action_mode_close_button=0x7f080016;
public static final int action_text=0x7f080017;
public static final int actions=0x7f080018;
public static final int activity_chooser_view_content=0x7f080019;
public static final int add=0x7f08001a;
public static final int alertTitle=0x7f08001b;
public static final int all=0x7f08001c;
public static final int always=0x7f08001d;
public static final int async=0x7f08001e;
public static final int auto=0x7f08001f;
public static final int beginning=0x7f080020;
public static final int blocking=0x7f080021;
public static final int both=0x7f080022;
public static final int bottom=0x7f080023;
public static final int btnCopyException=0x7f080024;
public static final int btnCopyLogcat=0x7f080025;
public static final int buttonPanel=0x7f080026;
public static final int cancel_action=0x7f080027;
public static final int center=0x7f080028;
public static final int center_horizontal=0x7f080029;
public static final int center_vertical=0x7f08002a;
public static final int checkbox=0x7f08002b;
public static final int chronometer=0x7f08002c;
public static final int clip_horizontal=0x7f08002d;
public static final int clip_vertical=0x7f08002e;
public static final int collapseActionView=0x7f08002f;
public static final int container=0x7f080030;
public static final int content=0x7f080031;
public static final int contentPanel=0x7f080032;
public static final int coordinator=0x7f080033;
public static final int custom=0x7f080034;
public static final int customPanel=0x7f080035;
public static final int decor_content_parent=0x7f080036;
public static final int default_activity_button=0x7f080037;
public static final int design_bottom_sheet=0x7f080038;
public static final int design_menu_item_action_area=0x7f080039;
public static final int design_menu_item_action_area_stub=0x7f08003a;
public static final int design_menu_item_text=0x7f08003b;
public static final int design_navigation_view=0x7f08003c;
public static final int disableHome=0x7f08003d;
public static final int edit_query=0x7f08003e;
public static final int end=0x7f08003f;
public static final int end_padder=0x7f080040;
public static final int enterAlways=0x7f080041;
public static final int enterAlwaysCollapsed=0x7f080042;
public static final int exitUntilCollapsed=0x7f080043;
public static final int expand_activities_button=0x7f080044;
public static final int expanded_menu=0x7f080045;
public static final int fill=0x7f080046;
public static final int fill_horizontal=0x7f080047;
public static final int fill_vertical=0x7f080048;
public static final int filled=0x7f080049;
public static final int fixed=0x7f08004a;
public static final int forever=0x7f08004b;
public static final int ghost_view=0x7f08004c;
public static final int group_divider=0x7f08004d;
public static final int home=0x7f08004e;
public static final int homeAsUp=0x7f08004f;
public static final int horizontal=0x7f080050;
public static final int icon=0x7f080051;
public static final int icon_group=0x7f080052;
public static final int ifRoom=0x7f080053;
public static final int image=0x7f080054;
public static final int imageView=0x7f080055;
public static final int info=0x7f080056;
public static final int italic=0x7f080057;
public static final int item_touch_helper_previous_elevation=0x7f080058;
public static final int labeled=0x7f080059;
public static final int largeLabel=0x7f08005a;
public static final int left=0x7f08005b;
public static final int line1=0x7f08005c;
public static final int line3=0x7f08005d;
public static final int linearLayout=0x7f08005e;
public static final int listMode=0x7f08005f;
public static final int list_item=0x7f080060;
public static final int logcatLinearLayout=0x7f080061;
public static final int logcatMsg=0x7f080062;
public static final int masked=0x7f080063;
public static final int media_actions=0x7f080064;
public static final int message=0x7f080065;
public static final int middle=0x7f080066;
public static final int mini=0x7f080067;
public static final int mtrl_child_content_container=0x7f080068;
public static final int mtrl_internal_children_alpha_tag=0x7f080069;
public static final int multiply=0x7f08006a;
public static final int navItemsLayout=0x7f08006b;
public static final int navigationItemText=0x7f08006c;
public static final int navigation_header_container=0x7f08006d;
public static final int never=0x7f08006e;
public static final int none=0x7f08006f;
public static final int normal=0x7f080070;
public static final int notification_background=0x7f080071;
public static final int notification_main_column=0x7f080072;
public static final int notification_main_column_container=0x7f080073;
public static final int outline=0x7f080074;
public static final int pager=0x7f080075;
public static final int parallax=0x7f080076;
public static final int parentPanel=0x7f080077;
public static final int parent_matrix=0x7f080078;
public static final int pin=0x7f080079;
public static final int progress_circular=0x7f08007a;
public static final int progress_horizontal=0x7f08007b;
public static final int radio=0x7f08007c;
public static final int right=0x7f08007d;
public static final int right_icon=0x7f08007e;
public static final int right_side=0x7f08007f;
public static final int save_image_matrix=0x7f080080;
public static final int save_non_transition_alpha=0x7f080081;
public static final int save_scale_type=0x7f080082;
public static final int screen=0x7f080083;
public static final int scroll=0x7f080084;
public static final int scrollIndicatorDown=0x7f080085;
public static final int scrollIndicatorUp=0x7f080086;
public static final int scrollView=0x7f080087;
public static final int scrollable=0x7f080088;
public static final int search_badge=0x7f080089;
public static final int search_bar=0x7f08008a;
public static final int search_button=0x7f08008b;
public static final int search_close_btn=0x7f08008c;
public static final int search_edit_frame=0x7f08008d;
public static final int search_go_btn=0x7f08008e;
public static final int search_mag_icon=0x7f08008f;
public static final int search_plate=0x7f080090;
public static final int search_src_text=0x7f080091;
public static final int search_voice_btn=0x7f080092;
public static final int select_dialog_listview=0x7f080093;
public static final int selected=0x7f080094;
public static final int shortcut=0x7f080095;
public static final int showCustom=0x7f080096;
public static final int showHome=0x7f080097;
public static final int showTitle=0x7f080098;
public static final int smallLabel=0x7f080099;
public static final int snackbar_action=0x7f08009a;
public static final int snackbar_text=0x7f08009b;
public static final int snap=0x7f08009c;
public static final int snapMargins=0x7f08009d;
public static final int spacer=0x7f08009e;
public static final int split_action_bar=0x7f08009f;
public static final int src_atop=0x7f0800a0;
public static final int src_in=0x7f0800a1;
public static final int src_over=0x7f0800a2;
public static final int start=0x7f0800a3;
public static final int status_bar_latest_event_content=0x7f0800a4;
public static final int stretch=0x7f0800a5;
public static final int submenuarrow=0x7f0800a6;
public static final int submit_area=0x7f0800a7;
public static final int tabLayout=0x7f0800a8;
public static final int tabMode=0x7f0800a9;
public static final int tag_transition_group=0x7f0800aa;
public static final int tag_unhandled_key_event_manager=0x7f0800ab;
public static final int tag_unhandled_key_listeners=0x7f0800ac;
public static final int text=0x7f0800ad;
public static final int text2=0x7f0800ae;
public static final int textSpacerNoButtons=0x7f0800af;
public static final int textSpacerNoTitle=0x7f0800b0;
public static final int textStart=0x7f0800b1;
public static final int text_input_password_toggle=0x7f0800b2;
public static final int textinput_counter=0x7f0800b3;
public static final int textinput_error=0x7f0800b4;
public static final int textinput_helper_text=0x7f0800b5;
public static final int time=0x7f0800b6;
public static final int title=0x7f0800b7;
public static final int titleDividerNoCustom=0x7f0800b8;
public static final int title_template=0x7f0800b9;
public static final int toolbar=0x7f0800ba;
public static final int top=0x7f0800bb;
public static final int topPanel=0x7f0800bc;
public static final int touch_outside=0x7f0800bd;
public static final int transition_current_scene=0x7f0800be;
public static final int transition_layout_save=0x7f0800bf;
public static final int transition_position=0x7f0800c0;
public static final int transition_scene_layoutid_cache=0x7f0800c1;
public static final int transition_transform=0x7f0800c2;
public static final int txtErrorMsg=0x7f0800c3;
public static final int uniform=0x7f0800c4;
public static final int unlabeled=0x7f0800c5;
public static final int up=0x7f0800c6;
public static final int useLogo=0x7f0800c7;
public static final int vertical=0x7f0800c8;
public static final int view_offset_helper=0x7f0800c9;
public static final int visible=0x7f0800ca;
public static final int withText=0x7f0800cb;
public static final int wrap_content=0x7f0800cc;
}
public static final class integer {
public static final int abc_config_activityDefaultDur=0x7f090000;
public static final int abc_config_activityShortDur=0x7f090001;
public static final int app_bar_elevation_anim_duration=0x7f090002;
public static final int bottom_sheet_slide_duration=0x7f090003;
public static final int cancel_button_image_alpha=0x7f090004;
public static final int config_tooltipAnimTime=0x7f090005;
public static final int design_snackbar_text_max_lines=0x7f090006;
public static final int design_tab_indicator_anim_duration_ms=0x7f090007;
public static final int hide_password_duration=0x7f090008;
public static final int mtrl_btn_anim_delay_ms=0x7f090009;
public static final int mtrl_btn_anim_duration_ms=0x7f09000a;
public static final int mtrl_chip_anim_duration=0x7f09000b;
public static final int mtrl_tab_indicator_anim_duration_ms=0x7f09000c;
public static final int show_password_duration=0x7f09000d;
public static final int status_bar_notification_info_maxnum=0x7f09000e;
}
public static final class interpolator {
public static final int mtrl_fast_out_linear_in=0x7f0a0000;
public static final int mtrl_fast_out_slow_in=0x7f0a0001;
public static final int mtrl_linear=0x7f0a0002;
public static final int mtrl_linear_out_slow_in=0x7f0a0003;
}
public static final class layout {
public static final int abc_action_bar_title_item=0x7f0b0000;
public static final int abc_action_bar_up_container=0x7f0b0001;
public static final int abc_action_menu_item_layout=0x7f0b0002;
public static final int abc_action_menu_layout=0x7f0b0003;
public static final int abc_action_mode_bar=0x7f0b0004;
public static final int abc_action_mode_close_item_material=0x7f0b0005;
public static final int abc_activity_chooser_view=0x7f0b0006;
public static final int abc_activity_chooser_view_list_item=0x7f0b0007;
public static final int abc_alert_dialog_button_bar_material=0x7f0b0008;
public static final int abc_alert_dialog_material=0x7f0b0009;
public static final int abc_alert_dialog_title_material=0x7f0b000a;
public static final int abc_cascading_menu_item_layout=0x7f0b000b;
public static final int abc_dialog_title_material=0x7f0b000c;
public static final int abc_expanded_menu_layout=0x7f0b000d;
public static final int abc_list_menu_item_checkbox=0x7f0b000e;
public static final int abc_list_menu_item_icon=0x7f0b000f;
public static final int abc_list_menu_item_layout=0x7f0b0010;
public static final int abc_list_menu_item_radio=0x7f0b0011;
public static final int abc_popup_menu_header_item_layout=0x7f0b0012;
public static final int abc_popup_menu_item_layout=0x7f0b0013;
public static final int abc_screen_content_include=0x7f0b0014;
public static final int abc_screen_simple=0x7f0b0015;
public static final int abc_screen_simple_overlay_action_mode=0x7f0b0016;
public static final int abc_screen_toolbar=0x7f0b0017;
public static final int abc_search_dropdown_item_icons_2line=0x7f0b0018;
public static final int abc_search_view=0x7f0b0019;
public static final int abc_select_dialog_material=0x7f0b001a;
public static final int abc_tooltip=0x7f0b001b;
public static final int design_bottom_navigation_item=0x7f0b001c;
public static final int design_bottom_sheet_dialog=0x7f0b001d;
public static final int design_layout_snackbar=0x7f0b001e;
public static final int design_layout_snackbar_include=0x7f0b001f;
public static final int design_layout_tab_icon=0x7f0b0020;
public static final int design_layout_tab_text=0x7f0b0021;
public static final int design_menu_item_action_area=0x7f0b0022;
public static final int design_navigation_item=0x7f0b0023;
public static final int design_navigation_item_header=0x7f0b0024;
public static final int design_navigation_item_separator=0x7f0b0025;
public static final int design_navigation_item_subheader=0x7f0b0026;
public static final int design_navigation_menu=0x7f0b0027;
public static final int design_navigation_menu_item=0x7f0b0028;
public static final int design_text_input_password_icon=0x7f0b0029;
public static final int drawer_blur_fade_layer=0x7f0b002a;
public static final int error_activity=0x7f0b002b;
public static final int exception_tab=0x7f0b002c;
public static final int logcat_tab=0x7f0b002d;
public static final int mtrl_layout_snackbar=0x7f0b002e;
public static final int mtrl_layout_snackbar_include=0x7f0b002f;
public static final int navigation_drawer_content=0x7f0b0030;
public static final int navigation_item_view=0x7f0b0031;
public static final int notification_action=0x7f0b0032;
public static final int notification_action_tombstone=0x7f0b0033;
public static final int notification_media_action=0x7f0b0034;
public static final int notification_media_cancel_action=0x7f0b0035;
public static final int notification_template_big_media=0x7f0b0036;
public static final int notification_template_big_media_custom=0x7f0b0037;
public static final int notification_template_big_media_narrow=0x7f0b0038;
public static final int notification_template_big_media_narrow_custom=0x7f0b0039;
public static final int notification_template_custom_big=0x7f0b003a;
public static final int notification_template_icon_group=0x7f0b003b;
public static final int notification_template_lines_media=0x7f0b003c;
public static final int notification_template_media=0x7f0b003d;
public static final int notification_template_media_custom=0x7f0b003e;
public static final int notification_template_part_chronometer=0x7f0b003f;
public static final int notification_template_part_time=0x7f0b0040;
public static final int select_dialog_item_material=0x7f0b0041;
public static final int select_dialog_multichoice_material=0x7f0b0042;
public static final int select_dialog_singlechoice_material=0x7f0b0043;
public static final int support_simple_spinner_dropdown_item=0x7f0b0044;
}
public static final class string {
public static final int abc_action_bar_home_description=0x7f0c0000;
public static final int abc_action_bar_up_description=0x7f0c0001;
public static final int abc_action_menu_overflow_description=0x7f0c0002;
public static final int abc_action_mode_done=0x7f0c0003;
public static final int abc_activity_chooser_view_see_all=0x7f0c0004;
public static final int abc_activitychooserview_choose_application=0x7f0c0005;
public static final int abc_capital_off=0x7f0c0006;
public static final int abc_capital_on=0x7f0c0007;
public static final int abc_font_family_body_1_material=0x7f0c0008;
public static final int abc_font_family_body_2_material=0x7f0c0009;
public static final int abc_font_family_button_material=0x7f0c000a;
public static final int abc_font_family_caption_material=0x7f0c000b;
public static final int abc_font_family_display_1_material=0x7f0c000c;
public static final int abc_font_family_display_2_material=0x7f0c000d;
public static final int abc_font_family_display_3_material=0x7f0c000e;
public static final int abc_font_family_display_4_material=0x7f0c000f;
public static final int abc_font_family_headline_material=0x7f0c0010;
public static final int abc_font_family_menu_material=0x7f0c0011;
public static final int abc_font_family_subhead_material=0x7f0c0012;
public static final int abc_font_family_title_material=0x7f0c0013;
public static final int abc_menu_alt_shortcut_label=0x7f0c0014;
public static final int abc_menu_ctrl_shortcut_label=0x7f0c0015;
public static final int abc_menu_delete_shortcut_label=0x7f0c0016;
public static final int abc_menu_enter_shortcut_label=0x7f0c0017;
public static final int abc_menu_function_shortcut_label=0x7f0c0018;
public static final int abc_menu_meta_shortcut_label=0x7f0c0019;
public static final int abc_menu_shift_shortcut_label=0x7f0c001a;
public static final int abc_menu_space_shortcut_label=0x7f0c001b;
public static final int abc_menu_sym_shortcut_label=0x7f0c001c;
public static final int abc_prepend_shortcut_label=0x7f0c001d;
public static final int abc_search_hint=0x7f0c001e;
public static final int abc_searchview_description_clear=0x7f0c001f;
public static final int abc_searchview_description_query=0x7f0c0020;
public static final int abc_searchview_description_search=0x7f0c0021;
public static final int abc_searchview_description_submit=0x7f0c0022;
public static final int abc_searchview_description_voice=0x7f0c0023;
public static final int abc_shareactionprovider_share_with=0x7f0c0024;
public static final int abc_shareactionprovider_share_with_application=0x7f0c0025;
public static final int abc_toolbar_collapse_description=0x7f0c0026;
public static final int app_name=0x7f0c0027;
public static final int appbar_scrolling_view_behavior=0x7f0c0028;
public static final int bottom_sheet_behavior=0x7f0c0029;
public static final int character_counter_content_description=0x7f0c002a;
public static final int character_counter_pattern=0x7f0c002b;
public static final int fab_transformation_scrim_behavior=0x7f0c002c;
public static final int fab_transformation_sheet_behavior=0x7f0c002d;
public static final int hide_bottom_view_on_scroll_behavior=0x7f0c002e;
public static final int mtrl_chip_close_icon_content_description=0x7f0c002f;
public static final int password_toggle_content_description=0x7f0c0030;
public static final int path_password_eye=0x7f0c0031;
public static final int path_password_eye_mask_strike_through=0x7f0c0032;
public static final int path_password_eye_mask_visible=0x7f0c0033;
public static final int path_password_strike_through=0x7f0c0034;
public static final int search_menu_title=0x7f0c0035;
public static final int status_bar_notification_info_overflow=0x7f0c0036;
public static final int title_activity_kimera=0x7f0c0037;
}
public static final class style {
public static final int AlertDialog_AppCompat=0x7f0d0000;
public static final int AlertDialog_AppCompat_Light=0x7f0d0001;
public static final int Animation_AppCompat_Dialog=0x7f0d0002;
public static final int Animation_AppCompat_DropDownUp=0x7f0d0003;
public static final int Animation_AppCompat_Tooltip=0x7f0d0004;
public static final int Animation_Design_BottomSheetDialog=0x7f0d0005;
public static final int AppTheme=0x7f0d0006;
public static final int AppThemeBase=0x7f0d0007;
public static final int Base_AlertDialog_AppCompat=0x7f0d0008;
public static final int Base_AlertDialog_AppCompat_Light=0x7f0d0009;
public static final int Base_Animation_AppCompat_Dialog=0x7f0d000a;
public static final int Base_Animation_AppCompat_DropDownUp=0x7f0d000b;
public static final int Base_Animation_AppCompat_Tooltip=0x7f0d000c;
public static final int Base_CardView=0x7f0d000d;
public static final int Base_DialogWindowTitle_AppCompat=0x7f0d000e;
public static final int Base_DialogWindowTitleBackground_AppCompat=0x7f0d000f;
public static final int Base_TextAppearance_AppCompat=0x7f0d0010;
public static final int Base_TextAppearance_AppCompat_Body1=0x7f0d0011;
public static final int Base_TextAppearance_AppCompat_Body2=0x7f0d0012;
public static final int Base_TextAppearance_AppCompat_Button=0x7f0d0013;
public static final int Base_TextAppearance_AppCompat_Caption=0x7f0d0014;
public static final int Base_TextAppearance_AppCompat_Display1=0x7f0d0015;
public static final int Base_TextAppearance_AppCompat_Display2=0x7f0d0016;
public static final int Base_TextAppearance_AppCompat_Display3=0x7f0d0017;
public static final int Base_TextAppearance_AppCompat_Display4=0x7f0d0018;
public static final int Base_TextAppearance_AppCompat_Headline=0x7f0d0019;
public static final int Base_TextAppearance_AppCompat_Inverse=0x7f0d001a;
public static final int Base_TextAppearance_AppCompat_Large=0x7f0d001b;
public static final int Base_TextAppearance_AppCompat_Large_Inverse=0x7f0d001c;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0d001d;
public static final int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0d001e;
public static final int Base_TextAppearance_AppCompat_Medium=0x7f0d001f;
public static final int Base_TextAppearance_AppCompat_Medium_Inverse=0x7f0d0020;
public static final int Base_TextAppearance_AppCompat_Menu=0x7f0d0021;
public static final int Base_TextAppearance_AppCompat_SearchResult=0x7f0d0022;
public static final int Base_TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0d0023;
public static final int Base_TextAppearance_AppCompat_SearchResult_Title=0x7f0d0024;
public static final int Base_TextAppearance_AppCompat_Small=0x7f0d0025;
public static final int Base_TextAppearance_AppCompat_Small_Inverse=0x7f0d0026;
public static final int Base_TextAppearance_AppCompat_Subhead=0x7f0d0027;
public static final int Base_TextAppearance_AppCompat_Subhead_Inverse=0x7f0d0028;
public static final int Base_TextAppearance_AppCompat_Title=0x7f0d0029;
public static final int Base_TextAppearance_AppCompat_Title_Inverse=0x7f0d002a;
public static final int Base_TextAppearance_AppCompat_Tooltip=0x7f0d002b;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0d002c;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0d002d;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0d002e;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0d002f;
public static final int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0d0030;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0d0031;
public static final int Base_TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0d0032;
public static final int Base_TextAppearance_AppCompat_Widget_Button=0x7f0d0033;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0d0034;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Colored=0x7f0d0035;
public static final int Base_TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0d0036;
public static final int Base_TextAppearance_AppCompat_Widget_DropDownItem=0x7f0d0037;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0d0038;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0d0039;
public static final int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0d003a;
public static final int Base_TextAppearance_AppCompat_Widget_Switch=0x7f0d003b;
public static final int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0d003c;
public static final int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0d003d;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0d003e;
public static final int Base_TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0d003f;
public static final int Base_Theme_AppCompat=0x7f0d0040;
public static final int Base_Theme_AppCompat_CompactMenu=0x7f0d0041;
public static final int Base_Theme_AppCompat_Dialog=0x7f0d0042;
public static final int Base_Theme_AppCompat_Dialog_Alert=0x7f0d0043;
public static final int Base_Theme_AppCompat_Dialog_FixedSize=0x7f0d0044;
public static final int Base_Theme_AppCompat_Dialog_MinWidth=0x7f0d0045;
public static final int Base_Theme_AppCompat_DialogWhenLarge=0x7f0d0046;
public static final int Base_Theme_AppCompat_Light=0x7f0d0047;
public static final int Base_Theme_AppCompat_Light_DarkActionBar=0x7f0d0048;
public static final int Base_Theme_AppCompat_Light_Dialog=0x7f0d0049;
public static final int Base_Theme_AppCompat_Light_Dialog_Alert=0x7f0d004a;
public static final int Base_Theme_AppCompat_Light_Dialog_FixedSize=0x7f0d004b;
public static final int Base_Theme_AppCompat_Light_Dialog_MinWidth=0x7f0d004c;
public static final int Base_Theme_AppCompat_Light_DialogWhenLarge=0x7f0d004d;
public static final int Base_Theme_MaterialComponents=0x7f0d004e;
public static final int Base_Theme_MaterialComponents_Bridge=0x7f0d004f;
public static final int Base_Theme_MaterialComponents_CompactMenu=0x7f0d0050;
public static final int Base_Theme_MaterialComponents_Dialog=0x7f0d0051;
public static final int Base_Theme_MaterialComponents_Dialog_Alert=0x7f0d0052;
public static final int Base_Theme_MaterialComponents_Dialog_FixedSize=0x7f0d0053;
public static final int Base_Theme_MaterialComponents_Dialog_MinWidth=0x7f0d0054;
public static final int Base_Theme_MaterialComponents_DialogWhenLarge=0x7f0d0055;
public static final int Base_Theme_MaterialComponents_Light=0x7f0d0056;
public static final int Base_Theme_MaterialComponents_Light_Bridge=0x7f0d0057;
public static final int Base_Theme_MaterialComponents_Light_DarkActionBar=0x7f0d0058;
public static final int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge=0x7f0d0059;
public static final int Base_Theme_MaterialComponents_Light_Dialog=0x7f0d005a;
public static final int Base_Theme_MaterialComponents_Light_Dialog_Alert=0x7f0d005b;
public static final int Base_Theme_MaterialComponents_Light_Dialog_FixedSize=0x7f0d005c;
public static final int Base_Theme_MaterialComponents_Light_Dialog_MinWidth=0x7f0d005d;
public static final int Base_Theme_MaterialComponents_Light_DialogWhenLarge=0x7f0d005e;
public static final int Base_ThemeOverlay_AppCompat=0x7f0d005f;
public static final int Base_ThemeOverlay_AppCompat_ActionBar=0x7f0d0060;
public static final int Base_ThemeOverlay_AppCompat_Dark=0x7f0d0061;
public static final int Base_ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0d0062;
public static final int Base_ThemeOverlay_AppCompat_Dialog=0x7f0d0063;
public static final int Base_ThemeOverlay_AppCompat_Dialog_Alert=0x7f0d0064;
public static final int Base_ThemeOverlay_AppCompat_Light=0x7f0d0065;
public static final int Base_ThemeOverlay_MaterialComponents_Dialog=0x7f0d0066;
public static final int Base_ThemeOverlay_MaterialComponents_Dialog_Alert=0x7f0d0067;
public static final int Base_V14_Theme_MaterialComponents=0x7f0d0068;
public static final int Base_V14_Theme_MaterialComponents_Bridge=0x7f0d0069;
public static final int Base_V14_Theme_MaterialComponents_Dialog=0x7f0d006a;
public static final int Base_V14_Theme_MaterialComponents_Light=0x7f0d006b;
public static final int Base_V14_Theme_MaterialComponents_Light_Bridge=0x7f0d006c;
public static final int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge=0x7f0d006d;
public static final int Base_V14_Theme_MaterialComponents_Light_Dialog=0x7f0d006e;
public static final int Base_V14_ThemeOverlay_MaterialComponents_Dialog=0x7f0d006f;
public static final int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert=0x7f0d0070;
public static final int Base_V21_Theme_AppCompat=0x7f0d0071;
public static final int Base_V21_Theme_AppCompat_Dialog=0x7f0d0072;
public static final int Base_V21_Theme_AppCompat_Light=0x7f0d0073;
public static final int Base_V21_Theme_AppCompat_Light_Dialog=0x7f0d0074;
public static final int Base_V21_ThemeOverlay_AppCompat_Dialog=0x7f0d0075;
public static final int Base_V22_Theme_AppCompat=0x7f0d0076;
public static final int Base_V22_Theme_AppCompat_Light=0x7f0d0077;
public static final int Base_V23_Theme_AppCompat=0x7f0d0078;
public static final int Base_V23_Theme_AppCompat_Light=0x7f0d0079;
public static final int Base_V26_Theme_AppCompat=0x7f0d007a;
public static final int Base_V26_Theme_AppCompat_Light=0x7f0d007b;
public static final int Base_V26_Widget_AppCompat_Toolbar=0x7f0d007c;
public static final int Base_V28_Theme_AppCompat=0x7f0d007d;
public static final int Base_V28_Theme_AppCompat_Light=0x7f0d007e;
public static final int Base_V7_Theme_AppCompat=0x7f0d007f;
public static final int Base_V7_Theme_AppCompat_Dialog=0x7f0d0080;
public static final int Base_V7_Theme_AppCompat_Light=0x7f0d0081;
public static final int Base_V7_Theme_AppCompat_Light_Dialog=0x7f0d0082;
public static final int Base_V7_ThemeOverlay_AppCompat_Dialog=0x7f0d0083;
public static final int Base_V7_Widget_AppCompat_AutoCompleteTextView=0x7f0d0084;
public static final int Base_V7_Widget_AppCompat_EditText=0x7f0d0085;
public static final int Base_V7_Widget_AppCompat_Toolbar=0x7f0d0086;
public static final int Base_Widget_AppCompat_ActionBar=0x7f0d0087;
public static final int Base_Widget_AppCompat_ActionBar_Solid=0x7f0d0088;
public static final int Base_Widget_AppCompat_ActionBar_TabBar=0x7f0d0089;
public static final int Base_Widget_AppCompat_ActionBar_TabText=0x7f0d008a;
public static final int Base_Widget_AppCompat_ActionBar_TabView=0x7f0d008b;
public static final int Base_Widget_AppCompat_ActionButton=0x7f0d008c;
public static final int Base_Widget_AppCompat_ActionButton_CloseMode=0x7f0d008d;
public static final int Base_Widget_AppCompat_ActionButton_Overflow=0x7f0d008e;
public static final int Base_Widget_AppCompat_ActionMode=0x7f0d008f;
public static final int Base_Widget_AppCompat_ActivityChooserView=0x7f0d0090;
public static final int Base_Widget_AppCompat_AutoCompleteTextView=0x7f0d0091;
public static final int Base_Widget_AppCompat_Button=0x7f0d0092;
public static final int Base_Widget_AppCompat_Button_Borderless=0x7f0d0093;
public static final int Base_Widget_AppCompat_Button_Borderless_Colored=0x7f0d0094;
public static final int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0d0095;
public static final int Base_Widget_AppCompat_Button_Colored=0x7f0d0096;
public static final int Base_Widget_AppCompat_Button_Small=0x7f0d0097;
public static final int Base_Widget_AppCompat_ButtonBar=0x7f0d0098;
public static final int Base_Widget_AppCompat_ButtonBar_AlertDialog=0x7f0d0099;
public static final int Base_Widget_AppCompat_CompoundButton_CheckBox=0x7f0d009a;
public static final int Base_Widget_AppCompat_CompoundButton_RadioButton=0x7f0d009b;
public static final int Base_Widget_AppCompat_CompoundButton_Switch=0x7f0d009c;
public static final int Base_Widget_AppCompat_DrawerArrowToggle=0x7f0d009d;
public static final int Base_Widget_AppCompat_DrawerArrowToggle_Common=0x7f0d009e;
public static final int Base_Widget_AppCompat_DropDownItem_Spinner=0x7f0d009f;
public static final int Base_Widget_AppCompat_EditText=0x7f0d00a0;
public static final int Base_Widget_AppCompat_ImageButton=0x7f0d00a1;
public static final int Base_Widget_AppCompat_Light_ActionBar=0x7f0d00a2;
public static final int Base_Widget_AppCompat_Light_ActionBar_Solid=0x7f0d00a3;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabBar=0x7f0d00a4;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText=0x7f0d00a5;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0d00a6;
public static final int Base_Widget_AppCompat_Light_ActionBar_TabView=0x7f0d00a7;
public static final int Base_Widget_AppCompat_Light_PopupMenu=0x7f0d00a8;
public static final int Base_Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0d00a9;
public static final int Base_Widget_AppCompat_ListMenuView=0x7f0d00aa;
public static final int Base_Widget_AppCompat_ListPopupWindow=0x7f0d00ab;
public static final int Base_Widget_AppCompat_ListView=0x7f0d00ac;
public static final int Base_Widget_AppCompat_ListView_DropDown=0x7f0d00ad;
public static final int Base_Widget_AppCompat_ListView_Menu=0x7f0d00ae;
public static final int Base_Widget_AppCompat_PopupMenu=0x7f0d00af;
public static final int Base_Widget_AppCompat_PopupMenu_Overflow=0x7f0d00b0;
public static final int Base_Widget_AppCompat_PopupWindow=0x7f0d00b1;
public static final int Base_Widget_AppCompat_ProgressBar=0x7f0d00b2;
public static final int Base_Widget_AppCompat_ProgressBar_Horizontal=0x7f0d00b3;
public static final int Base_Widget_AppCompat_RatingBar=0x7f0d00b4;
public static final int Base_Widget_AppCompat_RatingBar_Indicator=0x7f0d00b5;
public static final int Base_Widget_AppCompat_RatingBar_Small=0x7f0d00b6;
public static final int Base_Widget_AppCompat_SearchView=0x7f0d00b7;
public static final int Base_Widget_AppCompat_SearchView_ActionBar=0x7f0d00b8;
public static final int Base_Widget_AppCompat_SeekBar=0x7f0d00b9;
public static final int Base_Widget_AppCompat_SeekBar_Discrete=0x7f0d00ba;
public static final int Base_Widget_AppCompat_Spinner=0x7f0d00bb;
public static final int Base_Widget_AppCompat_Spinner_Underlined=0x7f0d00bc;
public static final int Base_Widget_AppCompat_TextView_SpinnerItem=0x7f0d00bd;
public static final int Base_Widget_AppCompat_Toolbar=0x7f0d00be;
public static final int Base_Widget_AppCompat_Toolbar_Button_Navigation=0x7f0d00bf;
public static final int Base_Widget_Design_TabLayout=0x7f0d00c0;
public static final int Base_Widget_MaterialComponents_Chip=0x7f0d00c1;
public static final int Base_Widget_MaterialComponents_TextInputEditText=0x7f0d00c2;
public static final int Base_Widget_MaterialComponents_TextInputLayout=0x7f0d00c3;
public static final int CardView=0x7f0d00c4;
public static final int CardView_Dark=0x7f0d00c5;
public static final int CardView_Light=0x7f0d00c6;
public static final int LaunchScreenTheme=0x7f0d00c7;
public static final int LaunchScreenThemeBase=0x7f0d00c8;
public static final int NativeScriptToolbarStyle=0x7f0d00c9;
public static final int NativeScriptToolbarStyleBase=0x7f0d00ca;
public static final int NoActionBar=0x7f0d00cb;
public static final int Platform_AppCompat=0x7f0d00cc;
public static final int Platform_AppCompat_Light=0x7f0d00cd;
public static final int Platform_MaterialComponents=0x7f0d00ce;
public static final int Platform_MaterialComponents_Dialog=0x7f0d00cf;
public static final int Platform_MaterialComponents_Light=0x7f0d00d0;
public static final int Platform_MaterialComponents_Light_Dialog=0x7f0d00d1;
public static final int Platform_ThemeOverlay_AppCompat=0x7f0d00d2;
public static final int Platform_ThemeOverlay_AppCompat_Dark=0x7f0d00d3;
public static final int Platform_ThemeOverlay_AppCompat_Light=0x7f0d00d4;
public static final int Platform_V21_AppCompat=0x7f0d00d5;
public static final int Platform_V21_AppCompat_Light=0x7f0d00d6;
public static final int Platform_V25_AppCompat=0x7f0d00d7;
public static final int Platform_V25_AppCompat_Light=0x7f0d00d8;
public static final int Platform_Widget_AppCompat_Spinner=0x7f0d00d9;
public static final int RadScrollViewStyle=0x7f0d00da;
public static final int RadScrollViewTheme=0x7f0d00db;
public static final int RtlOverlay_DialogWindowTitle_AppCompat=0x7f0d00dc;
public static final int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem=0x7f0d00dd;
public static final int RtlOverlay_Widget_AppCompat_DialogTitle_Icon=0x7f0d00de;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem=0x7f0d00df;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup=0x7f0d00e0;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut=0x7f0d00e1;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow=0x7f0d00e2;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text=0x7f0d00e3;
public static final int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title=0x7f0d00e4;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown=0x7f0d00e5;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1=0x7f0d00e6;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2=0x7f0d00e7;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Query=0x7f0d00e8;
public static final int RtlOverlay_Widget_AppCompat_Search_DropDown_Text=0x7f0d00e9;
public static final int RtlOverlay_Widget_AppCompat_SearchView_MagIcon=0x7f0d00ea;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton=0x7f0d00eb;
public static final int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow=0x7f0d00ec;
public static final int SpinnerDatePicker=0x7f0d00ed;
public static final int SpinnerTimePicker=0x7f0d00ee;
public static final int TextAppearance_AppCompat=0x7f0d00ef;
public static final int TextAppearance_AppCompat_Body1=0x7f0d00f0;
public static final int TextAppearance_AppCompat_Body2=0x7f0d00f1;
public static final int TextAppearance_AppCompat_Button=0x7f0d00f2;
public static final int TextAppearance_AppCompat_Caption=0x7f0d00f3;
public static final int TextAppearance_AppCompat_Display1=0x7f0d00f4;
public static final int TextAppearance_AppCompat_Display2=0x7f0d00f5;
public static final int TextAppearance_AppCompat_Display3=0x7f0d00f6;
public static final int TextAppearance_AppCompat_Display4=0x7f0d00f7;
public static final int TextAppearance_AppCompat_Headline=0x7f0d00f8;
public static final int TextAppearance_AppCompat_Inverse=0x7f0d00f9;
public static final int TextAppearance_AppCompat_Large=0x7f0d00fa;
public static final int TextAppearance_AppCompat_Large_Inverse=0x7f0d00fb;
public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0d00fc;
public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0d00fd;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0d00fe;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0d00ff;
public static final int TextAppearance_AppCompat_Medium=0x7f0d0100;
public static final int TextAppearance_AppCompat_Medium_Inverse=0x7f0d0101;
public static final int TextAppearance_AppCompat_Menu=0x7f0d0102;
public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0d0103;
public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0d0104;
public static final int TextAppearance_AppCompat_Small=0x7f0d0105;
public static final int TextAppearance_AppCompat_Small_Inverse=0x7f0d0106;
public static final int TextAppearance_AppCompat_Subhead=0x7f0d0107;
public static final int TextAppearance_AppCompat_Subhead_Inverse=0x7f0d0108;
public static final int TextAppearance_AppCompat_Title=0x7f0d0109;
public static final int TextAppearance_AppCompat_Title_Inverse=0x7f0d010a;
public static final int TextAppearance_AppCompat_Tooltip=0x7f0d010b;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0d010c;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0d010d;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0d010e;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0d010f;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0d0110;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0d0111;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0d0112;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0d0113;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0d0114;
public static final int TextAppearance_AppCompat_Widget_Button=0x7f0d0115;
public static final int TextAppearance_AppCompat_Widget_Button_Borderless_Colored=0x7f0d0116;
public static final int TextAppearance_AppCompat_Widget_Button_Colored=0x7f0d0117;
public static final int TextAppearance_AppCompat_Widget_Button_Inverse=0x7f0d0118;
public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0d0119;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Header=0x7f0d011a;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0d011b;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0d011c;
public static final int TextAppearance_AppCompat_Widget_Switch=0x7f0d011d;
public static final int TextAppearance_AppCompat_Widget_TextView_SpinnerItem=0x7f0d011e;
public static final int TextAppearance_Compat_Notification=0x7f0d011f;
public static final int TextAppearance_Compat_Notification_Info=0x7f0d0120;
public static final int TextAppearance_Compat_Notification_Info_Media=0x7f0d0121;
public static final int TextAppearance_Compat_Notification_Line2=0x7f0d0122;
public static final int TextAppearance_Compat_Notification_Line2_Media=0x7f0d0123;
public static final int TextAppearance_Compat_Notification_Media=0x7f0d0124;
public static final int TextAppearance_Compat_Notification_Time=0x7f0d0125;
public static final int TextAppearance_Compat_Notification_Time_Media=0x7f0d0126;
public static final int TextAppearance_Compat_Notification_Title=0x7f0d0127;
public static final int TextAppearance_Compat_Notification_Title_Media=0x7f0d0128;
public static final int TextAppearance_Design_CollapsingToolbar_Expanded=0x7f0d0129;
public static final int TextAppearance_Design_Counter=0x7f0d012a;
public static final int TextAppearance_Design_Counter_Overflow=0x7f0d012b;
public static final int TextAppearance_Design_Error=0x7f0d012c;
public static final int TextAppearance_Design_HelperText=0x7f0d012d;
public static final int TextAppearance_Design_Hint=0x7f0d012e;
public static final int TextAppearance_Design_Snackbar_Message=0x7f0d012f;
public static final int TextAppearance_Design_Tab=0x7f0d0130;
public static final int TextAppearance_MaterialComponents_Body1=0x7f0d0131;
public static final int TextAppearance_MaterialComponents_Body2=0x7f0d0132;
public static final int TextAppearance_MaterialComponents_Button=0x7f0d0133;
public static final int TextAppearance_MaterialComponents_Caption=0x7f0d0134;
public static final int TextAppearance_MaterialComponents_Chip=0x7f0d0135;
public static final int TextAppearance_MaterialComponents_Headline1=0x7f0d0136;
public static final int TextAppearance_MaterialComponents_Headline2=0x7f0d0137;
public static final int TextAppearance_MaterialComponents_Headline3=0x7f0d0138;
public static final int TextAppearance_MaterialComponents_Headline4=0x7f0d0139;
public static final int TextAppearance_MaterialComponents_Headline5=0x7f0d013a;
public static final int TextAppearance_MaterialComponents_Headline6=0x7f0d013b;
public static final int TextAppearance_MaterialComponents_Overline=0x7f0d013c;
public static final int TextAppearance_MaterialComponents_Subtitle1=0x7f0d013d;
public static final int TextAppearance_MaterialComponents_Subtitle2=0x7f0d013e;
public static final int TextAppearance_MaterialComponents_Tab=0x7f0d013f;
public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0d0140;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Subtitle=0x7f0d0141;
public static final int TextAppearance_Widget_AppCompat_Toolbar_Title=0x7f0d0142;
public static final int Theme_AppCompat=0x7f0d0143;
public static final int Theme_AppCompat_CompactMenu=0x7f0d0144;
public static final int Theme_AppCompat_DayNight=0x7f0d0145;
public static final int Theme_AppCompat_DayNight_DarkActionBar=0x7f0d0146;
public static final int Theme_AppCompat_DayNight_Dialog=0x7f0d0147;
public static final int Theme_AppCompat_DayNight_Dialog_Alert=0x7f0d0148;
public static final int Theme_AppCompat_DayNight_Dialog_MinWidth=0x7f0d0149;
public static final int Theme_AppCompat_DayNight_DialogWhenLarge=0x7f0d014a;
public static final int Theme_AppCompat_DayNight_NoActionBar=0x7f0d014b;
public static final int Theme_AppCompat_Dialog=0x7f0d014c;
public static final int Theme_AppCompat_Dialog_Alert=0x7f0d014d;
public static final int Theme_AppCompat_Dialog_MinWidth=0x7f0d014e;
public static final int Theme_AppCompat_DialogWhenLarge=0x7f0d014f;
public static final int Theme_AppCompat_Light=0x7f0d0150;
public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0d0151;
public static final int Theme_AppCompat_Light_Dialog=0x7f0d0152;
public static final int Theme_AppCompat_Light_Dialog_Alert=0x7f0d0153;
public static final int Theme_AppCompat_Light_Dialog_MinWidth=0x7f0d0154;
public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0d0155;
public static final int Theme_AppCompat_Light_NoActionBar=0x7f0d0156;
public static final int Theme_AppCompat_NoActionBar=0x7f0d0157;
public static final int Theme_Design=0x7f0d0158;
public static final int Theme_Design_BottomSheetDialog=0x7f0d0159;
public static final int Theme_Design_Light=0x7f0d015a;
public static final int Theme_Design_Light_BottomSheetDialog=0x7f0d015b;
public static final int Theme_Design_Light_NoActionBar=0x7f0d015c;
public static final int Theme_Design_NoActionBar=0x7f0d015d;
public static final int Theme_MaterialComponents=0x7f0d015e;
public static final int Theme_MaterialComponents_BottomSheetDialog=0x7f0d015f;
public static final int Theme_MaterialComponents_Bridge=0x7f0d0160;
public static final int Theme_MaterialComponents_CompactMenu=0x7f0d0161;
public static final int Theme_MaterialComponents_Dialog=0x7f0d0162;
public static final int Theme_MaterialComponents_Dialog_Alert=0x7f0d0163;
public static final int Theme_MaterialComponents_Dialog_MinWidth=0x7f0d0164;
public static final int Theme_MaterialComponents_DialogWhenLarge=0x7f0d0165;
public static final int Theme_MaterialComponents_Light=0x7f0d0166;
public static final int Theme_MaterialComponents_Light_BottomSheetDialog=0x7f0d0167;
public static final int Theme_MaterialComponents_Light_Bridge=0x7f0d0168;
public static final int Theme_MaterialComponents_Light_DarkActionBar=0x7f0d0169;
public static final int Theme_MaterialComponents_Light_DarkActionBar_Bridge=0x7f0d016a;
public static final int Theme_MaterialComponents_Light_Dialog=0x7f0d016b;
public static final int Theme_MaterialComponents_Light_Dialog_Alert=0x7f0d016c;
public static final int Theme_MaterialComponents_Light_Dialog_MinWidth=0x7f0d016d;
public static final int Theme_MaterialComponents_Light_DialogWhenLarge=0x7f0d016e;
public static final int Theme_MaterialComponents_Light_NoActionBar=0x7f0d016f;
public static final int Theme_MaterialComponents_Light_NoActionBar_Bridge=0x7f0d0170;
public static final int Theme_MaterialComponents_NoActionBar=0x7f0d0171;
public static final int Theme_MaterialComponents_NoActionBar_Bridge=0x7f0d0172;
public static final int ThemeOverlay_AppCompat=0x7f0d0173;
public static final int ThemeOverlay_AppCompat_ActionBar=0x7f0d0174;
public static final int ThemeOverlay_AppCompat_Dark=0x7f0d0175;
public static final int ThemeOverlay_AppCompat_Dark_ActionBar=0x7f0d0176;
public static final int ThemeOverlay_AppCompat_Dialog=0x7f0d0177;
public static final int ThemeOverlay_AppCompat_Dialog_Alert=0x7f0d0178;
public static final int ThemeOverlay_AppCompat_Light=0x7f0d0179;
public static final int ThemeOverlay_MaterialComponents=0x7f0d017a;
public static final int ThemeOverlay_MaterialComponents_ActionBar=0x7f0d017b;
public static final int ThemeOverlay_MaterialComponents_Dark=0x7f0d017c;
public static final int ThemeOverlay_MaterialComponents_Dark_ActionBar=0x7f0d017d;
public static final int ThemeOverlay_MaterialComponents_Dialog=0x7f0d017e;
public static final int ThemeOverlay_MaterialComponents_Dialog_Alert=0x7f0d017f;
public static final int ThemeOverlay_MaterialComponents_Light=0x7f0d0180;
public static final int ThemeOverlay_MaterialComponents_TextInputEditText=0x7f0d0181;
public static final int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox=0x7f0d0182;
public static final int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense=0x7f0d0183;
public static final int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox=0x7f0d0184;
public static final int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense=0x7f0d0185;
public static final int Widget_AppCompat_ActionBar=0x7f0d0186;
public static final int Widget_AppCompat_ActionBar_Solid=0x7f0d0187;
public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0d0188;
public static final int Widget_AppCompat_ActionBar_TabText=0x7f0d0189;
public static final int Widget_AppCompat_ActionBar_TabView=0x7f0d018a;
public static final int Widget_AppCompat_ActionButton=0x7f0d018b;
public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0d018c;
public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0d018d;
public static final int Widget_AppCompat_ActionMode=0x7f0d018e;
public static final int Widget_AppCompat_ActivityChooserView=0x7f0d018f;
public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0d0190;
public static final int Widget_AppCompat_Button=0x7f0d0191;
public static final int Widget_AppCompat_Button_Borderless=0x7f0d0192;
public static final int Widget_AppCompat_Button_Borderless_Colored=0x7f0d0193;
public static final int Widget_AppCompat_Button_ButtonBar_AlertDialog=0x7f0d0194;
public static final int Widget_AppCompat_Button_Colored=0x7f0d0195;
public static final int Widget_AppCompat_Button_Small=0x7f0d0196;
public static final int Widget_AppCompat_ButtonBar=0x7f0d0197;
public static final int Widget_AppCompat_ButtonBar_AlertDialog=0x7f0d0198;
public static final int Widget_AppCompat_CompoundButton_CheckBox=0x7f0d0199;
public static final int Widget_AppCompat_CompoundButton_RadioButton=0x7f0d019a;
public static final int Widget_AppCompat_CompoundButton_Switch=0x7f0d019b;
public static final int Widget_AppCompat_DrawerArrowToggle=0x7f0d019c;
public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0d019d;
public static final int Widget_AppCompat_EditText=0x7f0d019e;
public static final int Widget_AppCompat_ImageButton=0x7f0d019f;
public static final int Widget_AppCompat_Light_ActionBar=0x7f0d01a0;
public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0d01a1;
public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0d01a2;
public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0d01a3;
public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0d01a4;
public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0d01a5;
public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0d01a6;
public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0d01a7;
public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0d01a8;
public static final int Widget_AppCompat_Light_ActionButton=0x7f0d01a9;
public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0d01aa;
public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0d01ab;
public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0d01ac;
public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0d01ad;
public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0d01ae;
public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0d01af;
public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0d01b0;
public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0d01b1;
public static final int Widget_AppCompat_Light_PopupMenu=0x7f0d01b2;
public static final int Widget_AppCompat_Light_PopupMenu_Overflow=0x7f0d01b3;
public static final int Widget_AppCompat_Light_SearchView=0x7f0d01b4;
public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0d01b5;
public static final int Widget_AppCompat_ListMenuView=0x7f0d01b6;
public static final int Widget_AppCompat_ListPopupWindow=0x7f0d01b7;
public static final int Widget_AppCompat_ListView=0x7f0d01b8;
public static final int Widget_AppCompat_ListView_DropDown=0x7f0d01b9;
public static final int Widget_AppCompat_ListView_Menu=0x7f0d01ba;
public static final int Widget_AppCompat_PopupMenu=0x7f0d01bb;
public static final int Widget_AppCompat_PopupMenu_Overflow=0x7f0d01bc;
public static final int Widget_AppCompat_PopupWindow=0x7f0d01bd;
public static final int Widget_AppCompat_ProgressBar=0x7f0d01be;
public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0d01bf;
public static final int Widget_AppCompat_RatingBar=0x7f0d01c0;
public static final int Widget_AppCompat_RatingBar_Indicator=0x7f0d01c1;
public static final int Widget_AppCompat_RatingBar_Small=0x7f0d01c2;
public static final int Widget_AppCompat_SearchView=0x7f0d01c3;
public static final int Widget_AppCompat_SearchView_ActionBar=0x7f0d01c4;
public static final int Widget_AppCompat_SeekBar=0x7f0d01c5;
public static final int Widget_AppCompat_SeekBar_Discrete=0x7f0d01c6;
public static final int Widget_AppCompat_Spinner=0x7f0d01c7;
public static final int Widget_AppCompat_Spinner_DropDown=0x7f0d01c8;
public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0d01c9;
public static final int Widget_AppCompat_Spinner_Underlined=0x7f0d01ca;
public static final int Widget_AppCompat_TextView_SpinnerItem=0x7f0d01cb;
public static final int Widget_AppCompat_Toolbar=0x7f0d01cc;
public static final int Widget_AppCompat_Toolbar_Button_Navigation=0x7f0d01cd;
public static final int Widget_Compat_NotificationActionContainer=0x7f0d01ce;
public static final int Widget_Compat_NotificationActionText=0x7f0d01cf;
public static final int Widget_Design_AppBarLayout=0x7f0d01d0;
public static final int Widget_Design_BottomNavigationView=0x7f0d01d1;
public static final int Widget_Design_BottomSheet_Modal=0x7f0d01d2;
public static final int Widget_Design_CollapsingToolbar=0x7f0d01d3;
public static final int Widget_Design_FloatingActionButton=0x7f0d01d4;
public static final int Widget_Design_NavigationView=0x7f0d01d5;
public static final int Widget_Design_ScrimInsetsFrameLayout=0x7f0d01d6;
public static final int Widget_Design_Snackbar=0x7f0d01d7;
public static final int Widget_Design_TabLayout=0x7f0d01d8;
public static final int Widget_Design_TextInputLayout=0x7f0d01d9;
public static final int Widget_MaterialComponents_BottomAppBar=0x7f0d01da;
public static final int Widget_MaterialComponents_BottomAppBar_Colored=0x7f0d01db;
public static final int Widget_MaterialComponents_BottomNavigationView=0x7f0d01dc;
public static final int Widget_MaterialComponents_BottomNavigationView_Colored=0x7f0d01dd;
public static final int Widget_MaterialComponents_BottomSheet_Modal=0x7f0d01de;
public static final int Widget_MaterialComponents_Button=0x7f0d01df;
public static final int Widget_MaterialComponents_Button_Icon=0x7f0d01e0;
public static final int Widget_MaterialComponents_Button_OutlinedButton=0x7f0d01e1;
public static final int Widget_MaterialComponents_Button_OutlinedButton_Icon=0x7f0d01e2;
public static final int Widget_MaterialComponents_Button_TextButton=0x7f0d01e3;
public static final int Widget_MaterialComponents_Button_TextButton_Dialog=0x7f0d01e4;
public static final int Widget_MaterialComponents_Button_TextButton_Dialog_Icon=0x7f0d01e5;
public static final int Widget_MaterialComponents_Button_TextButton_Icon=0x7f0d01e6;
public static final int Widget_MaterialComponents_Button_UnelevatedButton=0x7f0d01e7;
public static final int Widget_MaterialComponents_Button_UnelevatedButton_Icon=0x7f0d01e8;
public static final int Widget_MaterialComponents_CardView=0x7f0d01e9;
public static final int Widget_MaterialComponents_Chip_Action=0x7f0d01ea;
public static final int Widget_MaterialComponents_Chip_Choice=0x7f0d01eb;
public static final int Widget_MaterialComponents_Chip_Entry=0x7f0d01ec;
public static final int Widget_MaterialComponents_Chip_Filter=0x7f0d01ed;
public static final int Widget_MaterialComponents_ChipGroup=0x7f0d01ee;
public static final int Widget_MaterialComponents_FloatingActionButton=0x7f0d01ef;
public static final int Widget_MaterialComponents_NavigationView=0x7f0d01f0;
public static final int Widget_MaterialComponents_Snackbar=0x7f0d01f1;
public static final int Widget_MaterialComponents_Snackbar_FullWidth=0x7f0d01f2;
public static final int Widget_MaterialComponents_TabLayout=0x7f0d01f3;
public static final int Widget_MaterialComponents_TabLayout_Colored=0x7f0d01f4;
public static final int Widget_MaterialComponents_TextInputEditText_FilledBox=0x7f0d01f5;
public static final int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense=0x7f0d01f6;
public static final int Widget_MaterialComponents_TextInputEditText_OutlinedBox=0x7f0d01f7;
public static final int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense=0x7f0d01f8;
public static final int Widget_MaterialComponents_TextInputLayout_FilledBox=0x7f0d01f9;
public static final int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense=0x7f0d01fa;
public static final int Widget_MaterialComponents_TextInputLayout_OutlinedBox=0x7f0d01fb;
public static final int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense=0x7f0d01fc;
public static final int Widget_MaterialComponents_Toolbar=0x7f0d01fd;
public static final int Widget_Support_CoordinatorLayout=0x7f0d01fe;
}
public static final class styleable {
/**
* Attributes that can be used with a ActionBar.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ActionBar_background org.nativescript.MAD2:background}</code></td><td>Specifies a background drawable for the action bar.</td></tr>
* <tr><td><code>{@link #ActionBar_backgroundSplit org.nativescript.MAD2:backgroundSplit}</code></td><td>Specifies a background drawable for the bottom component of a split action bar.</td></tr>
* <tr><td><code>{@link #ActionBar_backgroundStacked org.nativescript.MAD2:backgroundStacked}</code></td><td>Specifies a background drawable for a second stacked row of the action bar.</td></tr>
* <tr><td><code>{@link #ActionBar_contentInsetEnd org.nativescript.MAD2:contentInsetEnd}</code></td><td>Minimum inset for content views within a bar.</td></tr>
* <tr><td><code>{@link #ActionBar_contentInsetEndWithActions org.nativescript.MAD2:contentInsetEndWithActions}</code></td><td>Minimum inset for content views within a bar when actions from a menu
* are present.</td></tr>
* <tr><td><code>{@link #ActionBar_contentInsetLeft org.nativescript.MAD2:contentInsetLeft}</code></td><td>Minimum inset for content views within a bar.</td></tr>
* <tr><td><code>{@link #ActionBar_contentInsetRight org.nativescript.MAD2:contentInsetRight}</code></td><td>Minimum inset for content views within a bar.</td></tr>
* <tr><td><code>{@link #ActionBar_contentInsetStart org.nativescript.MAD2:contentInsetStart}</code></td><td>Minimum inset for content views within a bar.</td></tr>
* <tr><td><code>{@link #ActionBar_contentInsetStartWithNavigation org.nativescript.MAD2:contentInsetStartWithNavigation}</code></td><td>Minimum inset for content views within a bar when a navigation button
* is present, such as the Up button.</td></tr>
* <tr><td><code>{@link #ActionBar_customNavigationLayout org.nativescript.MAD2:customNavigationLayout}</code></td><td>Specifies a layout for custom navigation.</td></tr>
* <tr><td><code>{@link #ActionBar_displayOptions org.nativescript.MAD2:displayOptions}</code></td><td>Options affecting how the action bar is displayed.</td></tr>
* <tr><td><code>{@link #ActionBar_divider org.nativescript.MAD2:divider}</code></td><td>Specifies the drawable used for item dividers.</td></tr>
* <tr><td><code>{@link #ActionBar_elevation org.nativescript.MAD2:elevation}</code></td><td>Elevation for the action bar itself</td></tr>
* <tr><td><code>{@link #ActionBar_height org.nativescript.MAD2:height}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_hideOnContentScroll org.nativescript.MAD2:hideOnContentScroll}</code></td><td>Set true to hide the action bar on a vertical nested scroll of content.</td></tr>
* <tr><td><code>{@link #ActionBar_homeAsUpIndicator org.nativescript.MAD2:homeAsUpIndicator}</code></td><td>Specifies a drawable to use for the 'home as up' indicator.</td></tr>
* <tr><td><code>{@link #ActionBar_homeLayout org.nativescript.MAD2:homeLayout}</code></td><td>Specifies a layout to use for the "home" section of the action bar.</td></tr>
* <tr><td><code>{@link #ActionBar_icon org.nativescript.MAD2:icon}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_indeterminateProgressStyle org.nativescript.MAD2:indeterminateProgressStyle}</code></td><td>Specifies a style resource to use for an indeterminate progress spinner.</td></tr>
* <tr><td><code>{@link #ActionBar_itemPadding org.nativescript.MAD2:itemPadding}</code></td><td>Specifies padding that should be applied to the left and right sides of
* system-provided items in the bar.</td></tr>
* <tr><td><code>{@link #ActionBar_logo org.nativescript.MAD2:logo}</code></td><td>Specifies the drawable used for the application logo.</td></tr>
* <tr><td><code>{@link #ActionBar_navigationMode org.nativescript.MAD2:navigationMode}</code></td><td>The type of navigation to use.</td></tr>
* <tr><td><code>{@link #ActionBar_popupTheme org.nativescript.MAD2:popupTheme}</code></td><td>Reference to a theme that should be used to inflate popups
* shown by widgets in the action bar.</td></tr>
* <tr><td><code>{@link #ActionBar_progressBarPadding org.nativescript.MAD2:progressBarPadding}</code></td><td>Specifies the horizontal padding on either end for an embedded progress bar.</td></tr>
* <tr><td><code>{@link #ActionBar_progressBarStyle org.nativescript.MAD2:progressBarStyle}</code></td><td>Specifies a style resource to use for an embedded progress bar.</td></tr>
* <tr><td><code>{@link #ActionBar_subtitle org.nativescript.MAD2:subtitle}</code></td><td>Specifies subtitle text used for navigationMode="normal"</td></tr>
* <tr><td><code>{@link #ActionBar_subtitleTextStyle org.nativescript.MAD2:subtitleTextStyle}</code></td><td>Specifies a style to use for subtitle text.</td></tr>
* <tr><td><code>{@link #ActionBar_title org.nativescript.MAD2:title}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionBar_titleTextStyle org.nativescript.MAD2:titleTextStyle}</code></td><td>Specifies a style to use for title text.</td></tr>
* </table>
* @see #ActionBar_background
* @see #ActionBar_backgroundSplit
* @see #ActionBar_backgroundStacked
* @see #ActionBar_contentInsetEnd
* @see #ActionBar_contentInsetEndWithActions
* @see #ActionBar_contentInsetLeft
* @see #ActionBar_contentInsetRight
* @see #ActionBar_contentInsetStart
* @see #ActionBar_contentInsetStartWithNavigation
* @see #ActionBar_customNavigationLayout
* @see #ActionBar_displayOptions
* @see #ActionBar_divider
* @see #ActionBar_elevation
* @see #ActionBar_height
* @see #ActionBar_hideOnContentScroll
* @see #ActionBar_homeAsUpIndicator
* @see #ActionBar_homeLayout
* @see #ActionBar_icon
* @see #ActionBar_indeterminateProgressStyle
* @see #ActionBar_itemPadding
* @see #ActionBar_logo
* @see #ActionBar_navigationMode
* @see #ActionBar_popupTheme
* @see #ActionBar_progressBarPadding
* @see #ActionBar_progressBarStyle
* @see #ActionBar_subtitle
* @see #ActionBar_subtitleTextStyle
* @see #ActionBar_title
* @see #ActionBar_titleTextStyle
*/
public static final int[] ActionBar={
0x7f030031, 0x7f030032, 0x7f030033, 0x7f030091,
0x7f030092, 0x7f030093, 0x7f030094, 0x7f030095,
0x7f030096, 0x7f0300a4, 0x7f0300a9, 0x7f0300aa,
0x7f0300b5, 0x7f0300e0, 0x7f0300e5, 0x7f0300ea,
0x7f0300eb, 0x7f0300ed, 0x7f0300f7, 0x7f030101,
0x7f030124, 0x7f030130, 0x7f030141, 0x7f030145,
0x7f030146, 0x7f030176, 0x7f030179, 0x7f0301be,
0x7f0301c8
};
/**
* <p>
* @attr description
* Specifies a background drawable for the action bar.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:background
*/
public static final int ActionBar_background=0;
/**
* <p>
* @attr description
* Specifies a background drawable for the bottom component of a split action bar.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:backgroundSplit
*/
public static final int ActionBar_backgroundSplit=1;
/**
* <p>
* @attr description
* Specifies a background drawable for a second stacked row of the action bar.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:backgroundStacked
*/
public static final int ActionBar_backgroundStacked=2;
/**
* <p>
* @attr description
* Minimum inset for content views within a bar. Navigation buttons and
* menu views are excepted. Only valid for some themes and configurations.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:contentInsetEnd
*/
public static final int ActionBar_contentInsetEnd=3;
/**
* <p>
* @attr description
* Minimum inset for content views within a bar when actions from a menu
* are present. Only valid for some themes and configurations.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:contentInsetEndWithActions
*/
public static final int ActionBar_contentInsetEndWithActions=4;
/**
* <p>
* @attr description
* Minimum inset for content views within a bar. Navigation buttons and
* menu views are excepted. Only valid for some themes and configurations.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:contentInsetLeft
*/
public static final int ActionBar_contentInsetLeft=5;
/**
* <p>
* @attr description
* Minimum inset for content views within a bar. Navigation buttons and
* menu views are excepted. Only valid for some themes and configurations.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:contentInsetRight
*/
public static final int ActionBar_contentInsetRight=6;
/**
* <p>
* @attr description
* Minimum inset for content views within a bar. Navigation buttons and
* menu views are excepted. Only valid for some themes and configurations.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:contentInsetStart
*/
public static final int ActionBar_contentInsetStart=7;
/**
* <p>
* @attr description
* Minimum inset for content views within a bar when a navigation button
* is present, such as the Up button. Only valid for some themes and configurations.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:contentInsetStartWithNavigation
*/
public static final int ActionBar_contentInsetStartWithNavigation=8;
/**
* <p>
* @attr description
* Specifies a layout for custom navigation. Overrides navigationMode.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:customNavigationLayout
*/
public static final int ActionBar_customNavigationLayout=9;
/**
* <p>
* @attr description
* Options affecting how the action bar is displayed.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>disableHome</td><td>20</td><td></td></tr>
* <tr><td>homeAsUp</td><td>4</td><td></td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>showCustom</td><td>10</td><td></td></tr>
* <tr><td>showHome</td><td>2</td><td></td></tr>
* <tr><td>showTitle</td><td>8</td><td></td></tr>
* <tr><td>useLogo</td><td>1</td><td></td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:displayOptions
*/
public static final int ActionBar_displayOptions=10;
/**
* <p>
* @attr description
* Specifies the drawable used for item dividers.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:divider
*/
public static final int ActionBar_divider=11;
/**
* <p>
* @attr description
* Elevation for the action bar itself
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:elevation
*/
public static final int ActionBar_elevation=12;
/**
* <p>
* @attr description
* Specifies a fixed height.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:height
*/
public static final int ActionBar_height=13;
/**
* <p>
* @attr description
* Set true to hide the action bar on a vertical nested scroll of content.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:hideOnContentScroll
*/
public static final int ActionBar_hideOnContentScroll=14;
/**
* <p>
* @attr description
* Up navigation glyph
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:homeAsUpIndicator
*/
public static final int ActionBar_homeAsUpIndicator=15;
/**
* <p>
* @attr description
* Specifies a layout to use for the "home" section of the action bar.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:homeLayout
*/
public static final int ActionBar_homeLayout=16;
/**
* <p>
* @attr description
* Specifies the drawable used for the application icon.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:icon
*/
public static final int ActionBar_icon=17;
/**
* <p>
* @attr description
* Specifies a style resource to use for an indeterminate progress spinner.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:indeterminateProgressStyle
*/
public static final int ActionBar_indeterminateProgressStyle=18;
/**
* <p>
* @attr description
* Specifies padding that should be applied to the left and right sides of
* system-provided items in the bar.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:itemPadding
*/
public static final int ActionBar_itemPadding=19;
/**
* <p>
* @attr description
* Specifies the drawable used for the application logo.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:logo
*/
public static final int ActionBar_logo=20;
/**
* <p>
* @attr description
* The type of navigation to use.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>listMode</td><td>1</td><td>The action bar will use a selection list for navigation.</td></tr>
* <tr><td>normal</td><td>0</td><td>Normal static title text</td></tr>
* <tr><td>tabMode</td><td>2</td><td>The action bar will use a series of horizontal tabs for navigation.</td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:navigationMode
*/
public static final int ActionBar_navigationMode=21;
/**
* <p>
* @attr description
* Reference to a theme that should be used to inflate popups
* shown by widgets in the action bar.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:popupTheme
*/
public static final int ActionBar_popupTheme=22;
/**
* <p>
* @attr description
* Specifies the horizontal padding on either end for an embedded progress bar.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:progressBarPadding
*/
public static final int ActionBar_progressBarPadding=23;
/**
* <p>
* @attr description
* Specifies a style resource to use for an embedded progress bar.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:progressBarStyle
*/
public static final int ActionBar_progressBarStyle=24;
/**
* <p>
* @attr description
* Specifies subtitle text used for navigationMode="normal"
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name org.nativescript.MAD2:subtitle
*/
public static final int ActionBar_subtitle=25;
/**
* <p>
* @attr description
* Specifies a style to use for subtitle text.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:subtitleTextStyle
*/
public static final int ActionBar_subtitleTextStyle=26;
/**
* <p>
* @attr description
* Specifies title text used for navigationMode="normal"
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name org.nativescript.MAD2:title
*/
public static final int ActionBar_title=27;
/**
* <p>
* @attr description
* Specifies a style to use for title text.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:titleTextStyle
*/
public static final int ActionBar_titleTextStyle=28;
/**
* Attributes that can be used with a ActionBarLayout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
* </table>
* @see #ActionBarLayout_android_layout_gravity
*/
public static final int[] ActionBarLayout={
0x010100b3
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
* attribute's value can be found in the {@link #ActionBarLayout} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>clip_horizontal</td><td>8</td><td></td></tr>
* <tr><td>clip_vertical</td><td>80</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>fill</td><td>77</td><td></td></tr>
* <tr><td>fill_horizontal</td><td>7</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name android:layout_gravity
*/
public static final int ActionBarLayout_android_layout_gravity=0;
/**
* Attributes that can be used with a ActionMenuItemView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ActionMenuItemView_android_minWidth android:minWidth}</code></td><td></td></tr>
* </table>
* @see #ActionMenuItemView_android_minWidth
*/
public static final int[] ActionMenuItemView={
0x0101013f
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#minWidth}
* attribute's value can be found in the {@link #ActionMenuItemView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:minWidth
*/
public static final int ActionMenuItemView_android_minWidth=0;
public static final int[] ActionMenuView={
};
/**
* Attributes that can be used with a ActionMode.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ActionMode_background org.nativescript.MAD2:background}</code></td><td>Specifies a background drawable for the action bar.</td></tr>
* <tr><td><code>{@link #ActionMode_backgroundSplit org.nativescript.MAD2:backgroundSplit}</code></td><td>Specifies a background drawable for the bottom component of a split action bar.</td></tr>
* <tr><td><code>{@link #ActionMode_closeItemLayout org.nativescript.MAD2:closeItemLayout}</code></td><td>Specifies a layout to use for the "close" item at the starting edge.</td></tr>
* <tr><td><code>{@link #ActionMode_height org.nativescript.MAD2:height}</code></td><td></td></tr>
* <tr><td><code>{@link #ActionMode_subtitleTextStyle org.nativescript.MAD2:subtitleTextStyle}</code></td><td>Specifies a style to use for subtitle text.</td></tr>
* <tr><td><code>{@link #ActionMode_titleTextStyle org.nativescript.MAD2:titleTextStyle}</code></td><td>Specifies a style to use for title text.</td></tr>
* </table>
* @see #ActionMode_background
* @see #ActionMode_backgroundSplit
* @see #ActionMode_closeItemLayout
* @see #ActionMode_height
* @see #ActionMode_subtitleTextStyle
* @see #ActionMode_titleTextStyle
*/
public static final int[] ActionMode={
0x7f030031, 0x7f030032, 0x7f03007e, 0x7f0300e0,
0x7f030179, 0x7f0301c8
};
/**
* <p>
* @attr description
* Specifies a background for the action mode bar.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:background
*/
public static final int ActionMode_background=0;
/**
* <p>
* @attr description
* Specifies a background for the split action mode bar.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:backgroundSplit
*/
public static final int ActionMode_backgroundSplit=1;
/**
* <p>
* @attr description
* Specifies a layout to use for the "close" item at the starting edge.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:closeItemLayout
*/
public static final int ActionMode_closeItemLayout=2;
/**
* <p>
* @attr description
* Specifies a fixed height for the action mode bar.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:height
*/
public static final int ActionMode_height=3;
/**
* <p>
* @attr description
* Specifies a style to use for subtitle text.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:subtitleTextStyle
*/
public static final int ActionMode_subtitleTextStyle=4;
/**
* <p>
* @attr description
* Specifies a style to use for title text.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:titleTextStyle
*/
public static final int ActionMode_titleTextStyle=5;
/**
* Attributes that can be used with a ActivityChooserView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable org.nativescript.MAD2:expandActivityOverflowButtonDrawable}</code></td><td>The drawable to show in the button for expanding the activities overflow popup.</td></tr>
* <tr><td><code>{@link #ActivityChooserView_initialActivityCount org.nativescript.MAD2:initialActivityCount}</code></td><td>The maximal number of items initially shown in the activity list.</td></tr>
* </table>
* @see #ActivityChooserView_expandActivityOverflowButtonDrawable
* @see #ActivityChooserView_initialActivityCount
*/
public static final int[] ActivityChooserView={
0x7f0300ba, 0x7f0300f8
};
/**
* <p>
* @attr description
* The drawable to show in the button for expanding the activities overflow popup.
* <strong>Note:</strong> Clients would like to set this drawable
* as a clue about the action the chosen activity will perform. For
* example, if share activity is to be chosen the drawable should
* give a clue that sharing is to be performed.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:expandActivityOverflowButtonDrawable
*/
public static final int ActivityChooserView_expandActivityOverflowButtonDrawable=0;
/**
* <p>
* @attr description
* The maximal number of items initially shown in the activity list.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name org.nativescript.MAD2:initialActivityCount
*/
public static final int ActivityChooserView_initialActivityCount=1;
/**
* Attributes that can be used with a AlertDialog.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #AlertDialog_android_layout android:layout}</code></td><td></td></tr>
* <tr><td><code>{@link #AlertDialog_buttonIconDimen org.nativescript.MAD2:buttonIconDimen}</code></td><td></td></tr>
* <tr><td><code>{@link #AlertDialog_buttonPanelSideLayout org.nativescript.MAD2:buttonPanelSideLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #AlertDialog_listItemLayout org.nativescript.MAD2:listItemLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #AlertDialog_listLayout org.nativescript.MAD2:listLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #AlertDialog_multiChoiceItemLayout org.nativescript.MAD2:multiChoiceItemLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #AlertDialog_showTitle org.nativescript.MAD2:showTitle}</code></td><td></td></tr>
* <tr><td><code>{@link #AlertDialog_singleChoiceItemLayout org.nativescript.MAD2:singleChoiceItemLayout}</code></td><td></td></tr>
* </table>
* @see #AlertDialog_android_layout
* @see #AlertDialog_buttonIconDimen
* @see #AlertDialog_buttonPanelSideLayout
* @see #AlertDialog_listItemLayout
* @see #AlertDialog_listLayout
* @see #AlertDialog_multiChoiceItemLayout
* @see #AlertDialog_showTitle
* @see #AlertDialog_singleChoiceItemLayout
*/
public static final int[] AlertDialog={
0x010100f2, 0x7f030052, 0x7f030053, 0x7f03011b,
0x7f03011c, 0x7f03012d, 0x7f03015e, 0x7f03015f
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout}
* attribute's value can be found in the {@link #AlertDialog} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:layout
*/
public static final int AlertDialog_android_layout=0;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#buttonIconDimen}
* attribute's value can be found in the {@link #AlertDialog} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:buttonIconDimen
*/
public static final int AlertDialog_buttonIconDimen=1;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#buttonPanelSideLayout}
* attribute's value can be found in the {@link #AlertDialog} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:buttonPanelSideLayout
*/
public static final int AlertDialog_buttonPanelSideLayout=2;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#listItemLayout}
* attribute's value can be found in the {@link #AlertDialog} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:listItemLayout
*/
public static final int AlertDialog_listItemLayout=3;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#listLayout}
* attribute's value can be found in the {@link #AlertDialog} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:listLayout
*/
public static final int AlertDialog_listLayout=4;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#multiChoiceItemLayout}
* attribute's value can be found in the {@link #AlertDialog} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:multiChoiceItemLayout
*/
public static final int AlertDialog_multiChoiceItemLayout=5;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#showTitle}
* attribute's value can be found in the {@link #AlertDialog} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:showTitle
*/
public static final int AlertDialog_showTitle=6;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#singleChoiceItemLayout}
* attribute's value can be found in the {@link #AlertDialog} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:singleChoiceItemLayout
*/
public static final int AlertDialog_singleChoiceItemLayout=7;
/**
* Attributes that can be used with a AnimatedStateListDrawableCompat.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_dither android:dither}</code></td><td></td></tr>
* <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_visible android:visible}</code></td><td></td></tr>
* <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_variablePadding android:variablePadding}</code></td><td></td></tr>
* <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_constantSize android:constantSize}</code></td><td></td></tr>
* <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_enterFadeDuration android:enterFadeDuration}</code></td><td></td></tr>
* <tr><td><code>{@link #AnimatedStateListDrawableCompat_android_exitFadeDuration android:exitFadeDuration}</code></td><td></td></tr>
* </table>
* @see #AnimatedStateListDrawableCompat_android_dither
* @see #AnimatedStateListDrawableCompat_android_visible
* @see #AnimatedStateListDrawableCompat_android_variablePadding
* @see #AnimatedStateListDrawableCompat_android_constantSize
* @see #AnimatedStateListDrawableCompat_android_enterFadeDuration
* @see #AnimatedStateListDrawableCompat_android_exitFadeDuration
*/
public static final int[] AnimatedStateListDrawableCompat={
0x0101011c, 0x01010194, 0x01010195, 0x01010196,
0x0101030c, 0x0101030d
};
/**
* <p>
* @attr description
* Enables or disables dithering of the bitmap if the bitmap does not have the
* same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with
* an RGB 565 screen).
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:dither
*/
public static final int AnimatedStateListDrawableCompat_android_dither=0;
/**
* <p>
* @attr description
* Indicates whether the drawable should be initially visible.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:visible
*/
public static final int AnimatedStateListDrawableCompat_android_visible=1;
/**
* <p>
* @attr description
* If true, allows the drawable's padding to change based on the
* current state that is selected. If false, the padding will
* stay the same (based on the maximum padding of all the states).
* Enabling this feature requires that the owner of the drawable
* deal with performing layout when the state changes, which is
* often not supported.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:variablePadding
*/
public static final int AnimatedStateListDrawableCompat_android_variablePadding=2;
/**
* <p>
* @attr description
* If true, the drawable's reported internal size will remain
* constant as the state changes; the size is the maximum of all
* of the states. If false, the size will vary based on the
* current state.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:constantSize
*/
public static final int AnimatedStateListDrawableCompat_android_constantSize=3;
/**
* <p>
* @attr description
* Amount of time (in milliseconds) to fade in a new state drawable.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name android:enterFadeDuration
*/
public static final int AnimatedStateListDrawableCompat_android_enterFadeDuration=4;
/**
* <p>
* @attr description
* Amount of time (in milliseconds) to fade out an old state drawable.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name android:exitFadeDuration
*/
public static final int AnimatedStateListDrawableCompat_android_exitFadeDuration=5;
/**
* Attributes that can be used with a AnimatedStateListDrawableItem.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #AnimatedStateListDrawableItem_android_id android:id}</code></td><td></td></tr>
* <tr><td><code>{@link #AnimatedStateListDrawableItem_android_drawable android:drawable}</code></td><td></td></tr>
* </table>
* @see #AnimatedStateListDrawableItem_android_id
* @see #AnimatedStateListDrawableItem_android_drawable
*/
public static final int[] AnimatedStateListDrawableItem={
0x010100d0, 0x01010199
};
/**
* <p>
* @attr description
* Keyframe identifier for use in specifying transitions.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:id
*/
public static final int AnimatedStateListDrawableItem_android_id=0;
/**
* <p>
* @attr description
* Reference to a drawable resource to use for the frame. If not
* given, the drawable must be defined by the first child tag.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:drawable
*/
public static final int AnimatedStateListDrawableItem_android_drawable=1;
/**
* Attributes that can be used with a AnimatedStateListDrawableTransition.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #AnimatedStateListDrawableTransition_android_drawable android:drawable}</code></td><td></td></tr>
* <tr><td><code>{@link #AnimatedStateListDrawableTransition_android_toId android:toId}</code></td><td></td></tr>
* <tr><td><code>{@link #AnimatedStateListDrawableTransition_android_fromId android:fromId}</code></td><td></td></tr>
* <tr><td><code>{@link #AnimatedStateListDrawableTransition_android_reversible android:reversible}</code></td><td></td></tr>
* </table>
* @see #AnimatedStateListDrawableTransition_android_drawable
* @see #AnimatedStateListDrawableTransition_android_toId
* @see #AnimatedStateListDrawableTransition_android_fromId
* @see #AnimatedStateListDrawableTransition_android_reversible
*/
public static final int[] AnimatedStateListDrawableTransition={
0x01010199, 0x01010449, 0x0101044a, 0x0101044b
};
/**
* <p>
* @attr description
* Reference to a animation drawable resource to use for the frame. If not
* given, the animation drawable must be defined by the first child tag.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:drawable
*/
public static final int AnimatedStateListDrawableTransition_android_drawable=0;
/**
* <p>
* @attr description
* Keyframe identifier for the ending state.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:toId
*/
public static final int AnimatedStateListDrawableTransition_android_toId=1;
/**
* <p>
* @attr description
* Keyframe identifier for the starting state.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:fromId
*/
public static final int AnimatedStateListDrawableTransition_android_fromId=2;
/**
* <p>
* @attr description
* Whether this transition is reversible.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:reversible
*/
public static final int AnimatedStateListDrawableTransition_android_reversible=3;
/**
* Attributes that can be used with a AppBarLayout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #AppBarLayout_android_background android:background}</code></td><td></td></tr>
* <tr><td><code>{@link #AppBarLayout_android_touchscreenBlocksFocus android:touchscreenBlocksFocus}</code></td><td></td></tr>
* <tr><td><code>{@link #AppBarLayout_android_keyboardNavigationCluster android:keyboardNavigationCluster}</code></td><td></td></tr>
* <tr><td><code>{@link #AppBarLayout_elevation org.nativescript.MAD2:elevation}</code></td><td>Elevation for the action bar itself</td></tr>
* <tr><td><code>{@link #AppBarLayout_expanded org.nativescript.MAD2:expanded}</code></td><td></td></tr>
* <tr><td><code>{@link #AppBarLayout_liftOnScroll org.nativescript.MAD2:liftOnScroll}</code></td><td></td></tr>
* </table>
* @see #AppBarLayout_android_background
* @see #AppBarLayout_android_touchscreenBlocksFocus
* @see #AppBarLayout_android_keyboardNavigationCluster
* @see #AppBarLayout_elevation
* @see #AppBarLayout_expanded
* @see #AppBarLayout_liftOnScroll
*/
public static final int[] AppBarLayout={
0x010100d4, 0x0101048f, 0x01010540, 0x7f0300b5,
0x7f0300bb, 0x7f030116
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#background}
* attribute's value can be found in the {@link #AppBarLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:background
*/
public static final int AppBarLayout_android_background=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#touchscreenBlocksFocus}
* attribute's value can be found in the {@link #AppBarLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:touchscreenBlocksFocus
*/
public static final int AppBarLayout_android_touchscreenBlocksFocus=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#keyboardNavigationCluster}
* attribute's value can be found in the {@link #AppBarLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:keyboardNavigationCluster
*/
public static final int AppBarLayout_android_keyboardNavigationCluster=2;
/**
* <p>
* @attr description
* Elevation for the action bar itself
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:elevation
*/
public static final int AppBarLayout_elevation=3;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#expanded}
* attribute's value can be found in the {@link #AppBarLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:expanded
*/
public static final int AppBarLayout_expanded=4;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#liftOnScroll}
* attribute's value can be found in the {@link #AppBarLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:liftOnScroll
*/
public static final int AppBarLayout_liftOnScroll=5;
/**
* Attributes that can be used with a AppBarLayoutStates.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #AppBarLayoutStates_state_collapsed org.nativescript.MAD2:state_collapsed}</code></td><td></td></tr>
* <tr><td><code>{@link #AppBarLayoutStates_state_collapsible org.nativescript.MAD2:state_collapsible}</code></td><td></td></tr>
* <tr><td><code>{@link #AppBarLayoutStates_state_liftable org.nativescript.MAD2:state_liftable}</code></td><td></td></tr>
* <tr><td><code>{@link #AppBarLayoutStates_state_lifted org.nativescript.MAD2:state_lifted}</code></td><td></td></tr>
* </table>
* @see #AppBarLayoutStates_state_collapsed
* @see #AppBarLayoutStates_state_collapsible
* @see #AppBarLayoutStates_state_liftable
* @see #AppBarLayoutStates_state_lifted
*/
public static final int[] AppBarLayoutStates={
0x7f03016c, 0x7f03016d, 0x7f03016e, 0x7f03016f
};
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#state_collapsed}
* attribute's value can be found in the {@link #AppBarLayoutStates} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:state_collapsed
*/
public static final int AppBarLayoutStates_state_collapsed=0;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#state_collapsible}
* attribute's value can be found in the {@link #AppBarLayoutStates} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:state_collapsible
*/
public static final int AppBarLayoutStates_state_collapsible=1;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#state_liftable}
* attribute's value can be found in the {@link #AppBarLayoutStates} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:state_liftable
*/
public static final int AppBarLayoutStates_state_liftable=2;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#state_lifted}
* attribute's value can be found in the {@link #AppBarLayoutStates} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:state_lifted
*/
public static final int AppBarLayoutStates_state_lifted=3;
/**
* Attributes that can be used with a AppBarLayout_Layout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #AppBarLayout_Layout_layout_scrollFlags org.nativescript.MAD2:layout_scrollFlags}</code></td><td></td></tr>
* <tr><td><code>{@link #AppBarLayout_Layout_layout_scrollInterpolator org.nativescript.MAD2:layout_scrollInterpolator}</code></td><td></td></tr>
* </table>
* @see #AppBarLayout_Layout_layout_scrollFlags
* @see #AppBarLayout_Layout_layout_scrollInterpolator
*/
public static final int[] AppBarLayout_Layout={
0x7f030114, 0x7f030115
};
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#layout_scrollFlags}
* attribute's value can be found in the {@link #AppBarLayout_Layout} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>enterAlways</td><td>4</td><td></td></tr>
* <tr><td>enterAlwaysCollapsed</td><td>8</td><td></td></tr>
* <tr><td>exitUntilCollapsed</td><td>2</td><td></td></tr>
* <tr><td>scroll</td><td>1</td><td></td></tr>
* <tr><td>snap</td><td>10</td><td></td></tr>
* <tr><td>snapMargins</td><td>20</td><td></td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:layout_scrollFlags
*/
public static final int AppBarLayout_Layout_layout_scrollFlags=0;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#layout_scrollInterpolator}
* attribute's value can be found in the {@link #AppBarLayout_Layout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:layout_scrollInterpolator
*/
public static final int AppBarLayout_Layout_layout_scrollInterpolator=1;
/**
* Attributes that can be used with a AppCompatImageView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #AppCompatImageView_android_src android:src}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatImageView_srcCompat org.nativescript.MAD2:srcCompat}</code></td><td>Sets a drawable as the content of this ImageView.</td></tr>
* <tr><td><code>{@link #AppCompatImageView_tint org.nativescript.MAD2:tint}</code></td><td>Tint to apply to the image source.</td></tr>
* <tr><td><code>{@link #AppCompatImageView_tintMode org.nativescript.MAD2:tintMode}</code></td><td>Blending mode used to apply the image source tint.</td></tr>
* </table>
* @see #AppCompatImageView_android_src
* @see #AppCompatImageView_srcCompat
* @see #AppCompatImageView_tint
* @see #AppCompatImageView_tintMode
*/
public static final int[] AppCompatImageView={
0x01010119, 0x7f030169, 0x7f0301bc, 0x7f0301bd
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#src}
* attribute's value can be found in the {@link #AppCompatImageView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:src
*/
public static final int AppCompatImageView_android_src=0;
/**
* <p>
* @attr description
* Sets a drawable as the content of this ImageView. Allows the use of vector drawable
* when running on older versions of the platform.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:srcCompat
*/
public static final int AppCompatImageView_srcCompat=1;
/**
* <p>
* @attr description
* Tint to apply to the image source.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:tint
*/
public static final int AppCompatImageView_tint=2;
/**
* <p>
* @attr description
* Blending mode used to apply the image source tint.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the
* result to valid color values. Saturate(S + D)</td></tr>
* <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of
* the tint. [Sa * Da, Sc * Dc]</td></tr>
* <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr>
* <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha
* channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr>
* <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s
* color channels are thrown out. [Sa * Da, Sc * Da]</td></tr>
* <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable.
* [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:tintMode
*/
public static final int AppCompatImageView_tintMode=3;
/**
* Attributes that can be used with a AppCompatSeekBar.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #AppCompatSeekBar_android_thumb android:thumb}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatSeekBar_tickMark org.nativescript.MAD2:tickMark}</code></td><td>Drawable displayed at each progress position on a seekbar.</td></tr>
* <tr><td><code>{@link #AppCompatSeekBar_tickMarkTint org.nativescript.MAD2:tickMarkTint}</code></td><td>Tint to apply to the tick mark drawable.</td></tr>
* <tr><td><code>{@link #AppCompatSeekBar_tickMarkTintMode org.nativescript.MAD2:tickMarkTintMode}</code></td><td>Blending mode used to apply the tick mark tint.</td></tr>
* </table>
* @see #AppCompatSeekBar_android_thumb
* @see #AppCompatSeekBar_tickMark
* @see #AppCompatSeekBar_tickMarkTint
* @see #AppCompatSeekBar_tickMarkTintMode
*/
public static final int[] AppCompatSeekBar={
0x01010142, 0x7f0301b9, 0x7f0301ba, 0x7f0301bb
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#thumb}
* attribute's value can be found in the {@link #AppCompatSeekBar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:thumb
*/
public static final int AppCompatSeekBar_android_thumb=0;
/**
* <p>
* @attr description
* Drawable displayed at each progress position on a seekbar.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:tickMark
*/
public static final int AppCompatSeekBar_tickMark=1;
/**
* <p>
* @attr description
* Tint to apply to the tick mark drawable.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:tickMarkTint
*/
public static final int AppCompatSeekBar_tickMarkTint=2;
/**
* <p>
* @attr description
* Blending mode used to apply the tick mark tint.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td>Combines the tint and drawable color and alpha channels, clamping the
* result to valid color values. Saturate(S + D)</td></tr>
* <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of
* the tint. [Sa * Da, Sc * Dc]</td></tr>
* <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr>
* <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha
* channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr>
* <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s
* color channels are thrown out. [Sa * Da, Sc * Da]</td></tr>
* <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable.
* [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:tickMarkTintMode
*/
public static final int AppCompatSeekBar_tickMarkTintMode=3;
/**
* Attributes that can be used with a AppCompatTextHelper.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #AppCompatTextHelper_android_textAppearance android:textAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextHelper_android_drawableTop android:drawableTop}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextHelper_android_drawableBottom android:drawableBottom}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextHelper_android_drawableLeft android:drawableLeft}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextHelper_android_drawableRight android:drawableRight}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextHelper_android_drawableStart android:drawableStart}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextHelper_android_drawableEnd android:drawableEnd}</code></td><td></td></tr>
* </table>
* @see #AppCompatTextHelper_android_textAppearance
* @see #AppCompatTextHelper_android_drawableTop
* @see #AppCompatTextHelper_android_drawableBottom
* @see #AppCompatTextHelper_android_drawableLeft
* @see #AppCompatTextHelper_android_drawableRight
* @see #AppCompatTextHelper_android_drawableStart
* @see #AppCompatTextHelper_android_drawableEnd
*/
public static final int[] AppCompatTextHelper={
0x01010034, 0x0101016d, 0x0101016e, 0x0101016f,
0x01010170, 0x01010392, 0x01010393
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#textAppearance}
* attribute's value can be found in the {@link #AppCompatTextHelper} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:textAppearance
*/
public static final int AppCompatTextHelper_android_textAppearance=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#drawableTop}
* attribute's value can be found in the {@link #AppCompatTextHelper} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:drawableTop
*/
public static final int AppCompatTextHelper_android_drawableTop=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#drawableBottom}
* attribute's value can be found in the {@link #AppCompatTextHelper} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:drawableBottom
*/
public static final int AppCompatTextHelper_android_drawableBottom=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#drawableLeft}
* attribute's value can be found in the {@link #AppCompatTextHelper} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:drawableLeft
*/
public static final int AppCompatTextHelper_android_drawableLeft=3;
/**
* <p>This symbol is the offset where the {@link android.R.attr#drawableRight}
* attribute's value can be found in the {@link #AppCompatTextHelper} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:drawableRight
*/
public static final int AppCompatTextHelper_android_drawableRight=4;
/**
* <p>This symbol is the offset where the {@link android.R.attr#drawableStart}
* attribute's value can be found in the {@link #AppCompatTextHelper} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:drawableStart
*/
public static final int AppCompatTextHelper_android_drawableStart=5;
/**
* <p>This symbol is the offset where the {@link android.R.attr#drawableEnd}
* attribute's value can be found in the {@link #AppCompatTextHelper} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:drawableEnd
*/
public static final int AppCompatTextHelper_android_drawableEnd=6;
/**
* Attributes that can be used with a AppCompatTextView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #AppCompatTextView_android_textAppearance android:textAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTextView_autoSizeMaxTextSize org.nativescript.MAD2:autoSizeMaxTextSize}</code></td><td>The maximum text size constraint to be used when auto-sizing text.</td></tr>
* <tr><td><code>{@link #AppCompatTextView_autoSizeMinTextSize org.nativescript.MAD2:autoSizeMinTextSize}</code></td><td>The minimum text size constraint to be used when auto-sizing text.</td></tr>
* <tr><td><code>{@link #AppCompatTextView_autoSizePresetSizes org.nativescript.MAD2:autoSizePresetSizes}</code></td><td>Resource array of dimensions to be used in conjunction with
* <code>autoSizeTextType</code> set to <code>uniform</code>.</td></tr>
* <tr><td><code>{@link #AppCompatTextView_autoSizeStepGranularity org.nativescript.MAD2:autoSizeStepGranularity}</code></td><td>Specify the auto-size step size if <code>autoSizeTextType</code> is set to
* <code>uniform</code>.</td></tr>
* <tr><td><code>{@link #AppCompatTextView_autoSizeTextType org.nativescript.MAD2:autoSizeTextType}</code></td><td>Specify the type of auto-size.</td></tr>
* <tr><td><code>{@link #AppCompatTextView_firstBaselineToTopHeight org.nativescript.MAD2:firstBaselineToTopHeight}</code></td><td>Distance from the top of the TextView to the first text baseline.</td></tr>
* <tr><td><code>{@link #AppCompatTextView_fontFamily org.nativescript.MAD2:fontFamily}</code></td><td>The attribute for the font family.</td></tr>
* <tr><td><code>{@link #AppCompatTextView_lastBaselineToBottomHeight org.nativescript.MAD2:lastBaselineToBottomHeight}</code></td><td>Distance from the bottom of the TextView to the last text baseline.</td></tr>
* <tr><td><code>{@link #AppCompatTextView_lineHeight org.nativescript.MAD2:lineHeight}</code></td><td>Explicit height between lines of text.</td></tr>
* <tr><td><code>{@link #AppCompatTextView_textAllCaps org.nativescript.MAD2:textAllCaps}</code></td><td>Present the text in ALL CAPS.</td></tr>
* </table>
* @see #AppCompatTextView_android_textAppearance
* @see #AppCompatTextView_autoSizeMaxTextSize
* @see #AppCompatTextView_autoSizeMinTextSize
* @see #AppCompatTextView_autoSizePresetSizes
* @see #AppCompatTextView_autoSizeStepGranularity
* @see #AppCompatTextView_autoSizeTextType
* @see #AppCompatTextView_firstBaselineToTopHeight
* @see #AppCompatTextView_fontFamily
* @see #AppCompatTextView_lastBaselineToBottomHeight
* @see #AppCompatTextView_lineHeight
* @see #AppCompatTextView_textAllCaps
*/
public static final int[] AppCompatTextView={
0x01010034, 0x7f03002c, 0x7f03002d, 0x7f03002e,
0x7f03002f, 0x7f030030, 0x7f0300cf, 0x7f0300d2,
0x7f030109, 0x7f030117, 0x7f030199
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#textAppearance}
* attribute's value can be found in the {@link #AppCompatTextView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:textAppearance
*/
public static final int AppCompatTextView_android_textAppearance=0;
/**
* <p>
* @attr description
* The maximum text size constraint to be used when auto-sizing text.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:autoSizeMaxTextSize
*/
public static final int AppCompatTextView_autoSizeMaxTextSize=1;
/**
* <p>
* @attr description
* The minimum text size constraint to be used when auto-sizing text.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:autoSizeMinTextSize
*/
public static final int AppCompatTextView_autoSizeMinTextSize=2;
/**
* <p>
* @attr description
* Resource array of dimensions to be used in conjunction with
* <code>autoSizeTextType</code> set to <code>uniform</code>. Overrides
* <code>autoSizeStepGranularity</code> if set.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:autoSizePresetSizes
*/
public static final int AppCompatTextView_autoSizePresetSizes=3;
/**
* <p>
* @attr description
* Specify the auto-size step size if <code>autoSizeTextType</code> is set to
* <code>uniform</code>. The default is 1px. Overwrites
* <code>autoSizePresetSizes</code> if set.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:autoSizeStepGranularity
*/
public static final int AppCompatTextView_autoSizeStepGranularity=4;
/**
* <p>
* @attr description
* Specify the type of auto-size. Note that this feature is not supported by EditText,
* works only for TextView.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>none</td><td>0</td><td>No auto-sizing (default).</td></tr>
* <tr><td>uniform</td><td>1</td><td>Uniform horizontal and vertical text size scaling to fit within the
* container.</td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:autoSizeTextType
*/
public static final int AppCompatTextView_autoSizeTextType=5;
/**
* <p>
* @attr description
* Distance from the top of the TextView to the first text baseline. If set, this
* overrides the value set for paddingTop.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:firstBaselineToTopHeight
*/
public static final int AppCompatTextView_firstBaselineToTopHeight=6;
/**
* <p>
* @attr description
* The attribute for the font family.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name org.nativescript.MAD2:fontFamily
*/
public static final int AppCompatTextView_fontFamily=7;
/**
* <p>
* @attr description
* Distance from the bottom of the TextView to the last text baseline. If set, this
* overrides the value set for paddingBottom.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:lastBaselineToBottomHeight
*/
public static final int AppCompatTextView_lastBaselineToBottomHeight=8;
/**
* <p>
* @attr description
* Explicit height between lines of text. If set, this will override the values set
* for lineSpacingExtra and lineSpacingMultiplier.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:lineHeight
*/
public static final int AppCompatTextView_lineHeight=9;
/**
* <p>
* @attr description
* Present the text in ALL CAPS. This may use a small-caps form when available.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:textAllCaps
*/
public static final int AppCompatTextView_textAllCaps=10;
/**
* Attributes that can be used with a AppCompatTheme.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #AppCompatTheme_android_windowIsFloating android:windowIsFloating}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarDivider org.nativescript.MAD2:actionBarDivider}</code></td><td>Custom divider drawable to use for elements in the action bar.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarItemBackground org.nativescript.MAD2:actionBarItemBackground}</code></td><td>Custom item state list drawable background for action bar items.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarPopupTheme org.nativescript.MAD2:actionBarPopupTheme}</code></td><td>Reference to a theme that should be used to inflate popups
* shown by widgets in the action bar.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarSize org.nativescript.MAD2:actionBarSize}</code></td><td>Size of the Action Bar, including the contextual
* bar used to present Action Modes.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarSplitStyle org.nativescript.MAD2:actionBarSplitStyle}</code></td><td>Reference to a style for the split Action Bar.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarStyle org.nativescript.MAD2:actionBarStyle}</code></td><td>Reference to a style for the Action Bar</td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarTabBarStyle org.nativescript.MAD2:actionBarTabBarStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarTabStyle org.nativescript.MAD2:actionBarTabStyle}</code></td><td>Default style for tabs within an action bar</td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarTabTextStyle org.nativescript.MAD2:actionBarTabTextStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarTheme org.nativescript.MAD2:actionBarTheme}</code></td><td>Reference to a theme that should be used to inflate the
* action bar.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionBarWidgetTheme org.nativescript.MAD2:actionBarWidgetTheme}</code></td><td>Reference to a theme that should be used to inflate widgets
* and layouts destined for the action bar.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionButtonStyle org.nativescript.MAD2:actionButtonStyle}</code></td><td>Default action button style.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionDropDownStyle org.nativescript.MAD2:actionDropDownStyle}</code></td><td>Default ActionBar dropdown style.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionMenuTextAppearance org.nativescript.MAD2:actionMenuTextAppearance}</code></td><td>TextAppearance style that will be applied to text that
* appears within action menu items.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionMenuTextColor org.nativescript.MAD2:actionMenuTextColor}</code></td><td>Color for text that appears within action menu items.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeBackground org.nativescript.MAD2:actionModeBackground}</code></td><td>Background drawable to use for action mode UI</td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeCloseButtonStyle org.nativescript.MAD2:actionModeCloseButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeCloseDrawable org.nativescript.MAD2:actionModeCloseDrawable}</code></td><td>Drawable to use for the close action mode button</td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeCopyDrawable org.nativescript.MAD2:actionModeCopyDrawable}</code></td><td>Drawable to use for the Copy action button in Contextual Action Bar</td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeCutDrawable org.nativescript.MAD2:actionModeCutDrawable}</code></td><td>Drawable to use for the Cut action button in Contextual Action Bar</td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeFindDrawable org.nativescript.MAD2:actionModeFindDrawable}</code></td><td>Drawable to use for the Find action button in WebView selection action modes</td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModePasteDrawable org.nativescript.MAD2:actionModePasteDrawable}</code></td><td>Drawable to use for the Paste action button in Contextual Action Bar</td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModePopupWindowStyle org.nativescript.MAD2:actionModePopupWindowStyle}</code></td><td>PopupWindow style to use for action modes when showing as a window overlay.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeSelectAllDrawable org.nativescript.MAD2:actionModeSelectAllDrawable}</code></td><td>Drawable to use for the Select all action button in Contextual Action Bar</td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeShareDrawable org.nativescript.MAD2:actionModeShareDrawable}</code></td><td>Drawable to use for the Share action button in WebView selection action modes</td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeSplitBackground org.nativescript.MAD2:actionModeSplitBackground}</code></td><td>Background drawable to use for action mode UI in the lower split bar</td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeStyle org.nativescript.MAD2:actionModeStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionModeWebSearchDrawable org.nativescript.MAD2:actionModeWebSearchDrawable}</code></td><td>Drawable to use for the Web Search action button in WebView selection action modes</td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionOverflowButtonStyle org.nativescript.MAD2:actionOverflowButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_actionOverflowMenuStyle org.nativescript.MAD2:actionOverflowMenuStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_activityChooserViewStyle org.nativescript.MAD2:activityChooserViewStyle}</code></td><td>Default ActivityChooserView style.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_alertDialogButtonGroupStyle org.nativescript.MAD2:alertDialogButtonGroupStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_alertDialogCenterButtons org.nativescript.MAD2:alertDialogCenterButtons}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_alertDialogStyle org.nativescript.MAD2:alertDialogStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_alertDialogTheme org.nativescript.MAD2:alertDialogTheme}</code></td><td>Theme to use for alert dialogs spawned from this theme.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_autoCompleteTextViewStyle org.nativescript.MAD2:autoCompleteTextViewStyle}</code></td><td>Default AutoCompleteTextView style.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_borderlessButtonStyle org.nativescript.MAD2:borderlessButtonStyle}</code></td><td>Style for buttons without an explicit border, often used in groups.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_buttonBarButtonStyle org.nativescript.MAD2:buttonBarButtonStyle}</code></td><td>Style for buttons within button bars</td></tr>
* <tr><td><code>{@link #AppCompatTheme_buttonBarNegativeButtonStyle org.nativescript.MAD2:buttonBarNegativeButtonStyle}</code></td><td>Style for the "negative" buttons within button bars</td></tr>
* <tr><td><code>{@link #AppCompatTheme_buttonBarNeutralButtonStyle org.nativescript.MAD2:buttonBarNeutralButtonStyle}</code></td><td>Style for the "neutral" buttons within button bars</td></tr>
* <tr><td><code>{@link #AppCompatTheme_buttonBarPositiveButtonStyle org.nativescript.MAD2:buttonBarPositiveButtonStyle}</code></td><td>Style for the "positive" buttons within button bars</td></tr>
* <tr><td><code>{@link #AppCompatTheme_buttonBarStyle org.nativescript.MAD2:buttonBarStyle}</code></td><td>Style for button bars</td></tr>
* <tr><td><code>{@link #AppCompatTheme_buttonStyle org.nativescript.MAD2:buttonStyle}</code></td><td>Normal Button style.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_buttonStyleSmall org.nativescript.MAD2:buttonStyleSmall}</code></td><td>Small Button style.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_checkboxStyle org.nativescript.MAD2:checkboxStyle}</code></td><td>Default Checkbox style.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_checkedTextViewStyle org.nativescript.MAD2:checkedTextViewStyle}</code></td><td>Default CheckedTextView style.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorAccent org.nativescript.MAD2:colorAccent}</code></td><td>Bright complement to the primary branding color.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorBackgroundFloating org.nativescript.MAD2:colorBackgroundFloating}</code></td><td>Default color of background imagery for floating components, ex.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorButtonNormal org.nativescript.MAD2:colorButtonNormal}</code></td><td>The color applied to framework buttons in their normal state.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorControlActivated org.nativescript.MAD2:colorControlActivated}</code></td><td>The color applied to framework controls in their activated (ex.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorControlHighlight org.nativescript.MAD2:colorControlHighlight}</code></td><td>The color applied to framework control highlights (ex.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorControlNormal org.nativescript.MAD2:colorControlNormal}</code></td><td>The color applied to framework controls in their normal state.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorError org.nativescript.MAD2:colorError}</code></td><td>Color used for error states and things that need to be drawn to
* the user's attention.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorPrimary org.nativescript.MAD2:colorPrimary}</code></td><td>The primary branding color for the app.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorPrimaryDark org.nativescript.MAD2:colorPrimaryDark}</code></td><td>Dark variant of the primary branding color.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_colorSwitchThumbNormal org.nativescript.MAD2:colorSwitchThumbNormal}</code></td><td>The color applied to framework switch thumbs in their normal state.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_controlBackground org.nativescript.MAD2:controlBackground}</code></td><td>The background used by framework controls.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_dialogCornerRadius org.nativescript.MAD2:dialogCornerRadius}</code></td><td>Preferred corner radius of dialogs.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_dialogPreferredPadding org.nativescript.MAD2:dialogPreferredPadding}</code></td><td>Preferred padding for dialog content.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_dialogTheme org.nativescript.MAD2:dialogTheme}</code></td><td>Theme to use for dialogs spawned from this theme.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_dividerHorizontal org.nativescript.MAD2:dividerHorizontal}</code></td><td>A drawable that may be used as a horizontal divider between visual elements.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_dividerVertical org.nativescript.MAD2:dividerVertical}</code></td><td>A drawable that may be used as a vertical divider between visual elements.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_dropDownListViewStyle org.nativescript.MAD2:dropDownListViewStyle}</code></td><td>ListPopupWindow compatibility</td></tr>
* <tr><td><code>{@link #AppCompatTheme_dropdownListPreferredItemHeight org.nativescript.MAD2:dropdownListPreferredItemHeight}</code></td><td>The preferred item height for dropdown lists.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_editTextBackground org.nativescript.MAD2:editTextBackground}</code></td><td>EditText background drawable.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_editTextColor org.nativescript.MAD2:editTextColor}</code></td><td>EditText text foreground color.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_editTextStyle org.nativescript.MAD2:editTextStyle}</code></td><td>Default EditText style.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_homeAsUpIndicator org.nativescript.MAD2:homeAsUpIndicator}</code></td><td>Specifies a drawable to use for the 'home as up' indicator.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_imageButtonStyle org.nativescript.MAD2:imageButtonStyle}</code></td><td>ImageButton background drawable.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_listChoiceBackgroundIndicator org.nativescript.MAD2:listChoiceBackgroundIndicator}</code></td><td>Drawable used as a background for selected list items.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_listDividerAlertDialog org.nativescript.MAD2:listDividerAlertDialog}</code></td><td>The list divider used in alert dialogs.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_listMenuViewStyle org.nativescript.MAD2:listMenuViewStyle}</code></td><td>Default menu-style ListView style.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_listPopupWindowStyle org.nativescript.MAD2:listPopupWindowStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeight org.nativescript.MAD2:listPreferredItemHeight}</code></td><td>The preferred list item height.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightLarge org.nativescript.MAD2:listPreferredItemHeightLarge}</code></td><td>A larger, more robust list item height.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_listPreferredItemHeightSmall org.nativescript.MAD2:listPreferredItemHeightSmall}</code></td><td>A smaller, sleeker list item height.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingLeft org.nativescript.MAD2:listPreferredItemPaddingLeft}</code></td><td>The preferred padding along the left edge of list items.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_listPreferredItemPaddingRight org.nativescript.MAD2:listPreferredItemPaddingRight}</code></td><td>The preferred padding along the right edge of list items.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_panelBackground org.nativescript.MAD2:panelBackground}</code></td><td>The background of a panel when it is inset from the left and right edges of the screen.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_panelMenuListTheme org.nativescript.MAD2:panelMenuListTheme}</code></td><td>Default Panel Menu style.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_panelMenuListWidth org.nativescript.MAD2:panelMenuListWidth}</code></td><td>Default Panel Menu width.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_popupMenuStyle org.nativescript.MAD2:popupMenuStyle}</code></td><td>Default PopupMenu style.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_popupWindowStyle org.nativescript.MAD2:popupWindowStyle}</code></td><td>Default PopupWindow style.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_radioButtonStyle org.nativescript.MAD2:radioButtonStyle}</code></td><td>Default RadioButton style.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_ratingBarStyle org.nativescript.MAD2:ratingBarStyle}</code></td><td>Default RatingBar style.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_ratingBarStyleIndicator org.nativescript.MAD2:ratingBarStyleIndicator}</code></td><td>Indicator RatingBar style.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_ratingBarStyleSmall org.nativescript.MAD2:ratingBarStyleSmall}</code></td><td>Small indicator RatingBar style.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_searchViewStyle org.nativescript.MAD2:searchViewStyle}</code></td><td>Style for the search query widget.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_seekBarStyle org.nativescript.MAD2:seekBarStyle}</code></td><td>Default SeekBar style.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_selectableItemBackground org.nativescript.MAD2:selectableItemBackground}</code></td><td>A style that may be applied to buttons or other selectable items
* that should react to pressed and focus states, but that do not
* have a clear visual border along the edges.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_selectableItemBackgroundBorderless org.nativescript.MAD2:selectableItemBackgroundBorderless}</code></td><td>Background drawable for borderless standalone items that need focus/pressed states.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_spinnerDropDownItemStyle org.nativescript.MAD2:spinnerDropDownItemStyle}</code></td><td>Default Spinner style.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_spinnerStyle org.nativescript.MAD2:spinnerStyle}</code></td><td>Default Spinner style.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_switchStyle org.nativescript.MAD2:switchStyle}</code></td><td>Default style for the Switch widget.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_textAppearanceLargePopupMenu org.nativescript.MAD2:textAppearanceLargePopupMenu}</code></td><td>Text color, typeface, size, and style for the text inside of a popup menu.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_textAppearanceListItem org.nativescript.MAD2:textAppearanceListItem}</code></td><td>The preferred TextAppearance for the primary text of list items.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSecondary org.nativescript.MAD2:textAppearanceListItemSecondary}</code></td><td>The preferred TextAppearance for the secondary text of list items.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_textAppearanceListItemSmall org.nativescript.MAD2:textAppearanceListItemSmall}</code></td><td>The preferred TextAppearance for the primary text of small list items.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_textAppearancePopupMenuHeader org.nativescript.MAD2:textAppearancePopupMenuHeader}</code></td><td>Text color, typeface, size, and style for header text inside of a popup menu.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultSubtitle org.nativescript.MAD2:textAppearanceSearchResultSubtitle}</code></td><td>Text color, typeface, size, and style for system search result subtitle.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_textAppearanceSearchResultTitle org.nativescript.MAD2:textAppearanceSearchResultTitle}</code></td><td>Text color, typeface, size, and style for system search result title.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_textAppearanceSmallPopupMenu org.nativescript.MAD2:textAppearanceSmallPopupMenu}</code></td><td>Text color, typeface, size, and style for small text inside of a popup menu.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_textColorAlertDialogListItem org.nativescript.MAD2:textColorAlertDialogListItem}</code></td><td>Color of list item text in alert dialogs.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_textColorSearchUrl org.nativescript.MAD2:textColorSearchUrl}</code></td><td>Text color for urls in search suggestions, used by things like global search</td></tr>
* <tr><td><code>{@link #AppCompatTheme_toolbarNavigationButtonStyle org.nativescript.MAD2:toolbarNavigationButtonStyle}</code></td><td>Default Toolar NavigationButtonStyle</td></tr>
* <tr><td><code>{@link #AppCompatTheme_toolbarStyle org.nativescript.MAD2:toolbarStyle}</code></td><td>Default Toolbar style.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_tooltipForegroundColor org.nativescript.MAD2:tooltipForegroundColor}</code></td><td>Foreground color to use for tooltips</td></tr>
* <tr><td><code>{@link #AppCompatTheme_tooltipFrameBackground org.nativescript.MAD2:tooltipFrameBackground}</code></td><td>Background to use for tooltips</td></tr>
* <tr><td><code>{@link #AppCompatTheme_viewInflaterClass org.nativescript.MAD2:viewInflaterClass}</code></td><td></td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowActionBar org.nativescript.MAD2:windowActionBar}</code></td><td>Flag indicating whether this window should have an Action Bar
* in place of the usual title bar.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowActionBarOverlay org.nativescript.MAD2:windowActionBarOverlay}</code></td><td>Flag indicating whether this window's Action Bar should overlay
* application content.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowActionModeOverlay org.nativescript.MAD2:windowActionModeOverlay}</code></td><td>Flag indicating whether action modes should overlay window content
* when there is not reserved space for their UI (such as an Action Bar).</td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMajor org.nativescript.MAD2:windowFixedHeightMajor}</code></td><td>A fixed height for the window along the major axis of the screen,
* that is, when in portrait.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowFixedHeightMinor org.nativescript.MAD2:windowFixedHeightMinor}</code></td><td>A fixed height for the window along the minor axis of the screen,
* that is, when in landscape.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMajor org.nativescript.MAD2:windowFixedWidthMajor}</code></td><td>A fixed width for the window along the major axis of the screen,
* that is, when in landscape.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowFixedWidthMinor org.nativescript.MAD2:windowFixedWidthMinor}</code></td><td>A fixed width for the window along the minor axis of the screen,
* that is, when in portrait.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowMinWidthMajor org.nativescript.MAD2:windowMinWidthMajor}</code></td><td>The minimum width the window is allowed to be, along the major
* axis of the screen.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowMinWidthMinor org.nativescript.MAD2:windowMinWidthMinor}</code></td><td>The minimum width the window is allowed to be, along the minor
* axis of the screen.</td></tr>
* <tr><td><code>{@link #AppCompatTheme_windowNoTitle org.nativescript.MAD2:windowNoTitle}</code></td><td>Flag indicating whether there should be no title on this window.</td></tr>
* </table>
* @see #AppCompatTheme_android_windowIsFloating
* @see #AppCompatTheme_android_windowAnimationStyle
* @see #AppCompatTheme_actionBarDivider
* @see #AppCompatTheme_actionBarItemBackground
* @see #AppCompatTheme_actionBarPopupTheme
* @see #AppCompatTheme_actionBarSize
* @see #AppCompatTheme_actionBarSplitStyle
* @see #AppCompatTheme_actionBarStyle
* @see #AppCompatTheme_actionBarTabBarStyle
* @see #AppCompatTheme_actionBarTabStyle
* @see #AppCompatTheme_actionBarTabTextStyle
* @see #AppCompatTheme_actionBarTheme
* @see #AppCompatTheme_actionBarWidgetTheme
* @see #AppCompatTheme_actionButtonStyle
* @see #AppCompatTheme_actionDropDownStyle
* @see #AppCompatTheme_actionMenuTextAppearance
* @see #AppCompatTheme_actionMenuTextColor
* @see #AppCompatTheme_actionModeBackground
* @see #AppCompatTheme_actionModeCloseButtonStyle
* @see #AppCompatTheme_actionModeCloseDrawable
* @see #AppCompatTheme_actionModeCopyDrawable
* @see #AppCompatTheme_actionModeCutDrawable
* @see #AppCompatTheme_actionModeFindDrawable
* @see #AppCompatTheme_actionModePasteDrawable
* @see #AppCompatTheme_actionModePopupWindowStyle
* @see #AppCompatTheme_actionModeSelectAllDrawable
* @see #AppCompatTheme_actionModeShareDrawable
* @see #AppCompatTheme_actionModeSplitBackground
* @see #AppCompatTheme_actionModeStyle
* @see #AppCompatTheme_actionModeWebSearchDrawable
* @see #AppCompatTheme_actionOverflowButtonStyle
* @see #AppCompatTheme_actionOverflowMenuStyle
* @see #AppCompatTheme_activityChooserViewStyle
* @see #AppCompatTheme_alertDialogButtonGroupStyle
* @see #AppCompatTheme_alertDialogCenterButtons
* @see #AppCompatTheme_alertDialogStyle
* @see #AppCompatTheme_alertDialogTheme
* @see #AppCompatTheme_autoCompleteTextViewStyle
* @see #AppCompatTheme_borderlessButtonStyle
* @see #AppCompatTheme_buttonBarButtonStyle
* @see #AppCompatTheme_buttonBarNegativeButtonStyle
* @see #AppCompatTheme_buttonBarNeutralButtonStyle
* @see #AppCompatTheme_buttonBarPositiveButtonStyle
* @see #AppCompatTheme_buttonBarStyle
* @see #AppCompatTheme_buttonStyle
* @see #AppCompatTheme_buttonStyleSmall
* @see #AppCompatTheme_checkboxStyle
* @see #AppCompatTheme_checkedTextViewStyle
* @see #AppCompatTheme_colorAccent
* @see #AppCompatTheme_colorBackgroundFloating
* @see #AppCompatTheme_colorButtonNormal
* @see #AppCompatTheme_colorControlActivated
* @see #AppCompatTheme_colorControlHighlight
* @see #AppCompatTheme_colorControlNormal
* @see #AppCompatTheme_colorError
* @see #AppCompatTheme_colorPrimary
* @see #AppCompatTheme_colorPrimaryDark
* @see #AppCompatTheme_colorSwitchThumbNormal
* @see #AppCompatTheme_controlBackground
* @see #AppCompatTheme_dialogCornerRadius
* @see #AppCompatTheme_dialogPreferredPadding
* @see #AppCompatTheme_dialogTheme
* @see #AppCompatTheme_dividerHorizontal
* @see #AppCompatTheme_dividerVertical
* @see #AppCompatTheme_dropDownListViewStyle
* @see #AppCompatTheme_dropdownListPreferredItemHeight
* @see #AppCompatTheme_editTextBackground
* @see #AppCompatTheme_editTextColor
* @see #AppCompatTheme_editTextStyle
* @see #AppCompatTheme_homeAsUpIndicator
* @see #AppCompatTheme_imageButtonStyle
* @see #AppCompatTheme_listChoiceBackgroundIndicator
* @see #AppCompatTheme_listDividerAlertDialog
* @see #AppCompatTheme_listMenuViewStyle
* @see #AppCompatTheme_listPopupWindowStyle
* @see #AppCompatTheme_listPreferredItemHeight
* @see #AppCompatTheme_listPreferredItemHeightLarge
* @see #AppCompatTheme_listPreferredItemHeightSmall
* @see #AppCompatTheme_listPreferredItemPaddingLeft
* @see #AppCompatTheme_listPreferredItemPaddingRight
* @see #AppCompatTheme_panelBackground
* @see #AppCompatTheme_panelMenuListTheme
* @see #AppCompatTheme_panelMenuListWidth
* @see #AppCompatTheme_popupMenuStyle
* @see #AppCompatTheme_popupWindowStyle
* @see #AppCompatTheme_radioButtonStyle
* @see #AppCompatTheme_ratingBarStyle
* @see #AppCompatTheme_ratingBarStyleIndicator
* @see #AppCompatTheme_ratingBarStyleSmall
* @see #AppCompatTheme_searchViewStyle
* @see #AppCompatTheme_seekBarStyle
* @see #AppCompatTheme_selectableItemBackground
* @see #AppCompatTheme_selectableItemBackgroundBorderless
* @see #AppCompatTheme_spinnerDropDownItemStyle
* @see #AppCompatTheme_spinnerStyle
* @see #AppCompatTheme_switchStyle
* @see #AppCompatTheme_textAppearanceLargePopupMenu
* @see #AppCompatTheme_textAppearanceListItem
* @see #AppCompatTheme_textAppearanceListItemSecondary
* @see #AppCompatTheme_textAppearanceListItemSmall
* @see #AppCompatTheme_textAppearancePopupMenuHeader
* @see #AppCompatTheme_textAppearanceSearchResultSubtitle
* @see #AppCompatTheme_textAppearanceSearchResultTitle
* @see #AppCompatTheme_textAppearanceSmallPopupMenu
* @see #AppCompatTheme_textColorAlertDialogListItem
* @see #AppCompatTheme_textColorSearchUrl
* @see #AppCompatTheme_toolbarNavigationButtonStyle
* @see #AppCompatTheme_toolbarStyle
* @see #AppCompatTheme_tooltipForegroundColor
* @see #AppCompatTheme_tooltipFrameBackground
* @see #AppCompatTheme_viewInflaterClass
* @see #AppCompatTheme_windowActionBar
* @see #AppCompatTheme_windowActionBarOverlay
* @see #AppCompatTheme_windowActionModeOverlay
* @see #AppCompatTheme_windowFixedHeightMajor
* @see #AppCompatTheme_windowFixedHeightMinor
* @see #AppCompatTheme_windowFixedWidthMajor
* @see #AppCompatTheme_windowFixedWidthMinor
* @see #AppCompatTheme_windowMinWidthMajor
* @see #AppCompatTheme_windowMinWidthMinor
* @see #AppCompatTheme_windowNoTitle
*/
public static final int[] AppCompatTheme={
0x01010057, 0x010100ae, 0x7f030000, 0x7f030001,
0x7f030002, 0x7f030003, 0x7f030004, 0x7f030005,
0x7f030006, 0x7f030007, 0x7f030008, 0x7f030009,
0x7f03000a, 0x7f03000b, 0x7f03000c, 0x7f03000e,
0x7f03000f, 0x7f030010, 0x7f030011, 0x7f030012,
0x7f030013, 0x7f030014, 0x7f030015, 0x7f030016,
0x7f030017, 0x7f030018, 0x7f030019, 0x7f03001a,
0x7f03001b, 0x7f03001c, 0x7f03001d, 0x7f03001e,
0x7f030021, 0x7f030022, 0x7f030023, 0x7f030024,
0x7f030025, 0x7f03002b, 0x7f03003e, 0x7f03004c,
0x7f03004d, 0x7f03004e, 0x7f03004f, 0x7f030050,
0x7f030054, 0x7f030055, 0x7f03005f, 0x7f030064,
0x7f030084, 0x7f030085, 0x7f030086, 0x7f030087,
0x7f030088, 0x7f030089, 0x7f03008a, 0x7f03008b,
0x7f03008c, 0x7f03008e, 0x7f03009d, 0x7f0300a6,
0x7f0300a7, 0x7f0300a8, 0x7f0300ab, 0x7f0300ad,
0x7f0300b0, 0x7f0300b1, 0x7f0300b2, 0x7f0300b3,
0x7f0300b4, 0x7f0300ea, 0x7f0300f6, 0x7f030119,
0x7f03011a, 0x7f03011d, 0x7f03011e, 0x7f03011f,
0x7f030120, 0x7f030121, 0x7f030122, 0x7f030123,
0x7f030138, 0x7f030139, 0x7f03013a, 0x7f030140,
0x7f030142, 0x7f03014a, 0x7f03014b, 0x7f03014c,
0x7f03014d, 0x7f030156, 0x7f030157, 0x7f030158,
0x7f030159, 0x7f030166, 0x7f030167, 0x7f03017d,
0x7f0301a4, 0x7f0301a5, 0x7f0301a6, 0x7f0301a7,
0x7f0301a9, 0x7f0301aa, 0x7f0301ab, 0x7f0301ac,
0x7f0301af, 0x7f0301b0, 0x7f0301ca, 0x7f0301cb,
0x7f0301cc, 0x7f0301cd, 0x7f0301d4, 0x7f0301d6,
0x7f0301d7, 0x7f0301d8, 0x7f0301d9, 0x7f0301da,
0x7f0301db, 0x7f0301dc, 0x7f0301dd, 0x7f0301de,
0x7f0301df
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#windowIsFloating}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:windowIsFloating
*/
public static final int AppCompatTheme_android_windowIsFloating=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:windowAnimationStyle
*/
public static final int AppCompatTheme_android_windowAnimationStyle=1;
/**
* <p>
* @attr description
* Custom divider drawable to use for elements in the action bar.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:actionBarDivider
*/
public static final int AppCompatTheme_actionBarDivider=2;
/**
* <p>
* @attr description
* Custom item state list drawable background for action bar items.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:actionBarItemBackground
*/
public static final int AppCompatTheme_actionBarItemBackground=3;
/**
* <p>
* @attr description
* Reference to a theme that should be used to inflate popups
* shown by widgets in the action bar.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:actionBarPopupTheme
*/
public static final int AppCompatTheme_actionBarPopupTheme=4;
/**
* <p>
* @attr description
* Size of the Action Bar, including the contextual
* bar used to present Action Modes.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>wrap_content</td><td>0</td><td></td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:actionBarSize
*/
public static final int AppCompatTheme_actionBarSize=5;
/**
* <p>
* @attr description
* Reference to a style for the split Action Bar. This style
* controls the split component that holds the menu/action
* buttons. actionBarStyle is still used for the primary
* bar.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:actionBarSplitStyle
*/
public static final int AppCompatTheme_actionBarSplitStyle=6;
/**
* <p>
* @attr description
* Reference to a style for the Action Bar
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:actionBarStyle
*/
public static final int AppCompatTheme_actionBarStyle=7;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#actionBarTabBarStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:actionBarTabBarStyle
*/
public static final int AppCompatTheme_actionBarTabBarStyle=8;
/**
* <p>
* @attr description
* Default style for tabs within an action bar
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:actionBarTabStyle
*/
public static final int AppCompatTheme_actionBarTabStyle=9;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#actionBarTabTextStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:actionBarTabTextStyle
*/
public static final int AppCompatTheme_actionBarTabTextStyle=10;
/**
* <p>
* @attr description
* Reference to a theme that should be used to inflate the
* action bar. This will be inherited by any widget inflated
* into the action bar.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:actionBarTheme
*/
public static final int AppCompatTheme_actionBarTheme=11;
/**
* <p>
* @attr description
* Reference to a theme that should be used to inflate widgets
* and layouts destined for the action bar. Most of the time
* this will be a reference to the current theme, but when
* the action bar has a significantly different contrast
* profile than the rest of the activity the difference
* can become important. If this is set to @null the current
* theme will be used.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:actionBarWidgetTheme
*/
public static final int AppCompatTheme_actionBarWidgetTheme=12;
/**
* <p>
* @attr description
* Default action button style.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:actionButtonStyle
*/
public static final int AppCompatTheme_actionButtonStyle=13;
/**
* <p>
* @attr description
* Default ActionBar dropdown style.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:actionDropDownStyle
*/
public static final int AppCompatTheme_actionDropDownStyle=14;
/**
* <p>
* @attr description
* TextAppearance style that will be applied to text that
* appears within action menu items.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:actionMenuTextAppearance
*/
public static final int AppCompatTheme_actionMenuTextAppearance=15;
/**
* <p>
* @attr description
* Color for text that appears within action menu items.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:actionMenuTextColor
*/
public static final int AppCompatTheme_actionMenuTextColor=16;
/**
* <p>
* @attr description
* Background drawable to use for action mode UI
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:actionModeBackground
*/
public static final int AppCompatTheme_actionModeBackground=17;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#actionModeCloseButtonStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:actionModeCloseButtonStyle
*/
public static final int AppCompatTheme_actionModeCloseButtonStyle=18;
/**
* <p>
* @attr description
* Drawable to use for the close action mode button
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:actionModeCloseDrawable
*/
public static final int AppCompatTheme_actionModeCloseDrawable=19;
/**
* <p>
* @attr description
* Drawable to use for the Copy action button in Contextual Action Bar
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:actionModeCopyDrawable
*/
public static final int AppCompatTheme_actionModeCopyDrawable=20;
/**
* <p>
* @attr description
* Drawable to use for the Cut action button in Contextual Action Bar
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:actionModeCutDrawable
*/
public static final int AppCompatTheme_actionModeCutDrawable=21;
/**
* <p>
* @attr description
* Drawable to use for the Find action button in WebView selection action modes
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:actionModeFindDrawable
*/
public static final int AppCompatTheme_actionModeFindDrawable=22;
/**
* <p>
* @attr description
* Drawable to use for the Paste action button in Contextual Action Bar
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:actionModePasteDrawable
*/
public static final int AppCompatTheme_actionModePasteDrawable=23;
/**
* <p>
* @attr description
* PopupWindow style to use for action modes when showing as a window overlay.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:actionModePopupWindowStyle
*/
public static final int AppCompatTheme_actionModePopupWindowStyle=24;
/**
* <p>
* @attr description
* Drawable to use for the Select all action button in Contextual Action Bar
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:actionModeSelectAllDrawable
*/
public static final int AppCompatTheme_actionModeSelectAllDrawable=25;
/**
* <p>
* @attr description
* Drawable to use for the Share action button in WebView selection action modes
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:actionModeShareDrawable
*/
public static final int AppCompatTheme_actionModeShareDrawable=26;
/**
* <p>
* @attr description
* Background drawable to use for action mode UI in the lower split bar
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:actionModeSplitBackground
*/
public static final int AppCompatTheme_actionModeSplitBackground=27;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#actionModeStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:actionModeStyle
*/
public static final int AppCompatTheme_actionModeStyle=28;
/**
* <p>
* @attr description
* Drawable to use for the Web Search action button in WebView selection action modes
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:actionModeWebSearchDrawable
*/
public static final int AppCompatTheme_actionModeWebSearchDrawable=29;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#actionOverflowButtonStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:actionOverflowButtonStyle
*/
public static final int AppCompatTheme_actionOverflowButtonStyle=30;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#actionOverflowMenuStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:actionOverflowMenuStyle
*/
public static final int AppCompatTheme_actionOverflowMenuStyle=31;
/**
* <p>
* @attr description
* Default ActivityChooserView style.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:activityChooserViewStyle
*/
public static final int AppCompatTheme_activityChooserViewStyle=32;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#alertDialogButtonGroupStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:alertDialogButtonGroupStyle
*/
public static final int AppCompatTheme_alertDialogButtonGroupStyle=33;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#alertDialogCenterButtons}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:alertDialogCenterButtons
*/
public static final int AppCompatTheme_alertDialogCenterButtons=34;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#alertDialogStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:alertDialogStyle
*/
public static final int AppCompatTheme_alertDialogStyle=35;
/**
* <p>
* @attr description
* Theme to use for alert dialogs spawned from this theme.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:alertDialogTheme
*/
public static final int AppCompatTheme_alertDialogTheme=36;
/**
* <p>
* @attr description
* Default AutoCompleteTextView style.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:autoCompleteTextViewStyle
*/
public static final int AppCompatTheme_autoCompleteTextViewStyle=37;
/**
* <p>
* @attr description
* Style for buttons without an explicit border, often used in groups.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:borderlessButtonStyle
*/
public static final int AppCompatTheme_borderlessButtonStyle=38;
/**
* <p>
* @attr description
* Style for buttons within button bars
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:buttonBarButtonStyle
*/
public static final int AppCompatTheme_buttonBarButtonStyle=39;
/**
* <p>
* @attr description
* Style for the "negative" buttons within button bars
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:buttonBarNegativeButtonStyle
*/
public static final int AppCompatTheme_buttonBarNegativeButtonStyle=40;
/**
* <p>
* @attr description
* Style for the "neutral" buttons within button bars
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:buttonBarNeutralButtonStyle
*/
public static final int AppCompatTheme_buttonBarNeutralButtonStyle=41;
/**
* <p>
* @attr description
* Style for the "positive" buttons within button bars
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:buttonBarPositiveButtonStyle
*/
public static final int AppCompatTheme_buttonBarPositiveButtonStyle=42;
/**
* <p>
* @attr description
* Style for button bars
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:buttonBarStyle
*/
public static final int AppCompatTheme_buttonBarStyle=43;
/**
* <p>
* @attr description
* Normal Button style.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:buttonStyle
*/
public static final int AppCompatTheme_buttonStyle=44;
/**
* <p>
* @attr description
* Small Button style.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:buttonStyleSmall
*/
public static final int AppCompatTheme_buttonStyleSmall=45;
/**
* <p>
* @attr description
* Default Checkbox style.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:checkboxStyle
*/
public static final int AppCompatTheme_checkboxStyle=46;
/**
* <p>
* @attr description
* Default CheckedTextView style.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:checkedTextViewStyle
*/
public static final int AppCompatTheme_checkedTextViewStyle=47;
/**
* <p>
* @attr description
* Bright complement to the primary branding color. By default, this is the color applied
* to framework controls (via colorControlActivated).
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:colorAccent
*/
public static final int AppCompatTheme_colorAccent=48;
/**
* <p>
* @attr description
* Default color of background imagery for floating components, ex. dialogs, popups, and cards.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:colorBackgroundFloating
*/
public static final int AppCompatTheme_colorBackgroundFloating=49;
/**
* <p>
* @attr description
* The color applied to framework buttons in their normal state.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:colorButtonNormal
*/
public static final int AppCompatTheme_colorButtonNormal=50;
/**
* <p>
* @attr description
* The color applied to framework controls in their activated (ex. checked) state.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:colorControlActivated
*/
public static final int AppCompatTheme_colorControlActivated=51;
/**
* <p>
* @attr description
* The color applied to framework control highlights (ex. ripples, list selectors).
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:colorControlHighlight
*/
public static final int AppCompatTheme_colorControlHighlight=52;
/**
* <p>
* @attr description
* The color applied to framework controls in their normal state.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:colorControlNormal
*/
public static final int AppCompatTheme_colorControlNormal=53;
/**
* <p>
* @attr description
* Color used for error states and things that need to be drawn to
* the user's attention.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:colorError
*/
public static final int AppCompatTheme_colorError=54;
/**
* <p>
* @attr description
* The primary branding color for the app. By default, this is the color applied to the
* action bar background.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:colorPrimary
*/
public static final int AppCompatTheme_colorPrimary=55;
/**
* <p>
* @attr description
* Dark variant of the primary branding color. By default, this is the color applied to
* the status bar (via statusBarColor) and navigation bar (via navigationBarColor).
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:colorPrimaryDark
*/
public static final int AppCompatTheme_colorPrimaryDark=56;
/**
* <p>
* @attr description
* The color applied to framework switch thumbs in their normal state.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:colorSwitchThumbNormal
*/
public static final int AppCompatTheme_colorSwitchThumbNormal=57;
/**
* <p>
* @attr description
* The background used by framework controls.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:controlBackground
*/
public static final int AppCompatTheme_controlBackground=58;
/**
* <p>
* @attr description
* Preferred corner radius of dialogs.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:dialogCornerRadius
*/
public static final int AppCompatTheme_dialogCornerRadius=59;
/**
* <p>
* @attr description
* Preferred padding for dialog content.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:dialogPreferredPadding
*/
public static final int AppCompatTheme_dialogPreferredPadding=60;
/**
* <p>
* @attr description
* Theme to use for dialogs spawned from this theme.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:dialogTheme
*/
public static final int AppCompatTheme_dialogTheme=61;
/**
* <p>
* @attr description
* A drawable that may be used as a horizontal divider between visual elements.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:dividerHorizontal
*/
public static final int AppCompatTheme_dividerHorizontal=62;
/**
* <p>
* @attr description
* A drawable that may be used as a vertical divider between visual elements.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:dividerVertical
*/
public static final int AppCompatTheme_dividerVertical=63;
/**
* <p>
* @attr description
* ListPopupWindow compatibility
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:dropDownListViewStyle
*/
public static final int AppCompatTheme_dropDownListViewStyle=64;
/**
* <p>
* @attr description
* The preferred item height for dropdown lists.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:dropdownListPreferredItemHeight
*/
public static final int AppCompatTheme_dropdownListPreferredItemHeight=65;
/**
* <p>
* @attr description
* EditText background drawable.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:editTextBackground
*/
public static final int AppCompatTheme_editTextBackground=66;
/**
* <p>
* @attr description
* EditText text foreground color.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:editTextColor
*/
public static final int AppCompatTheme_editTextColor=67;
/**
* <p>
* @attr description
* Default EditText style.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:editTextStyle
*/
public static final int AppCompatTheme_editTextStyle=68;
/**
* <p>
* @attr description
* Specifies a drawable to use for the 'home as up' indicator.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:homeAsUpIndicator
*/
public static final int AppCompatTheme_homeAsUpIndicator=69;
/**
* <p>
* @attr description
* ImageButton background drawable.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:imageButtonStyle
*/
public static final int AppCompatTheme_imageButtonStyle=70;
/**
* <p>
* @attr description
* Drawable used as a background for selected list items.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:listChoiceBackgroundIndicator
*/
public static final int AppCompatTheme_listChoiceBackgroundIndicator=71;
/**
* <p>
* @attr description
* The list divider used in alert dialogs.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:listDividerAlertDialog
*/
public static final int AppCompatTheme_listDividerAlertDialog=72;
/**
* <p>
* @attr description
* Default menu-style ListView style.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:listMenuViewStyle
*/
public static final int AppCompatTheme_listMenuViewStyle=73;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#listPopupWindowStyle}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:listPopupWindowStyle
*/
public static final int AppCompatTheme_listPopupWindowStyle=74;
/**
* <p>
* @attr description
* The preferred list item height.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:listPreferredItemHeight
*/
public static final int AppCompatTheme_listPreferredItemHeight=75;
/**
* <p>
* @attr description
* A larger, more robust list item height.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:listPreferredItemHeightLarge
*/
public static final int AppCompatTheme_listPreferredItemHeightLarge=76;
/**
* <p>
* @attr description
* A smaller, sleeker list item height.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:listPreferredItemHeightSmall
*/
public static final int AppCompatTheme_listPreferredItemHeightSmall=77;
/**
* <p>
* @attr description
* The preferred padding along the left edge of list items.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:listPreferredItemPaddingLeft
*/
public static final int AppCompatTheme_listPreferredItemPaddingLeft=78;
/**
* <p>
* @attr description
* The preferred padding along the right edge of list items.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:listPreferredItemPaddingRight
*/
public static final int AppCompatTheme_listPreferredItemPaddingRight=79;
/**
* <p>
* @attr description
* The background of a panel when it is inset from the left and right edges of the screen.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:panelBackground
*/
public static final int AppCompatTheme_panelBackground=80;
/**
* <p>
* @attr description
* Default Panel Menu style.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:panelMenuListTheme
*/
public static final int AppCompatTheme_panelMenuListTheme=81;
/**
* <p>
* @attr description
* Default Panel Menu width.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:panelMenuListWidth
*/
public static final int AppCompatTheme_panelMenuListWidth=82;
/**
* <p>
* @attr description
* Default PopupMenu style.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:popupMenuStyle
*/
public static final int AppCompatTheme_popupMenuStyle=83;
/**
* <p>
* @attr description
* Default PopupWindow style.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:popupWindowStyle
*/
public static final int AppCompatTheme_popupWindowStyle=84;
/**
* <p>
* @attr description
* Default RadioButton style.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:radioButtonStyle
*/
public static final int AppCompatTheme_radioButtonStyle=85;
/**
* <p>
* @attr description
* Default RatingBar style.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:ratingBarStyle
*/
public static final int AppCompatTheme_ratingBarStyle=86;
/**
* <p>
* @attr description
* Indicator RatingBar style.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:ratingBarStyleIndicator
*/
public static final int AppCompatTheme_ratingBarStyleIndicator=87;
/**
* <p>
* @attr description
* Small indicator RatingBar style.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:ratingBarStyleSmall
*/
public static final int AppCompatTheme_ratingBarStyleSmall=88;
/**
* <p>
* @attr description
* Style for the search query widget.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:searchViewStyle
*/
public static final int AppCompatTheme_searchViewStyle=89;
/**
* <p>
* @attr description
* Default SeekBar style.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:seekBarStyle
*/
public static final int AppCompatTheme_seekBarStyle=90;
/**
* <p>
* @attr description
* A style that may be applied to buttons or other selectable items
* that should react to pressed and focus states, but that do not
* have a clear visual border along the edges.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:selectableItemBackground
*/
public static final int AppCompatTheme_selectableItemBackground=91;
/**
* <p>
* @attr description
* Background drawable for borderless standalone items that need focus/pressed states.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:selectableItemBackgroundBorderless
*/
public static final int AppCompatTheme_selectableItemBackgroundBorderless=92;
/**
* <p>
* @attr description
* Default Spinner style.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:spinnerDropDownItemStyle
*/
public static final int AppCompatTheme_spinnerDropDownItemStyle=93;
/**
* <p>
* @attr description
* Default Spinner style.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:spinnerStyle
*/
public static final int AppCompatTheme_spinnerStyle=94;
/**
* <p>
* @attr description
* Default style for the Switch widget.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:switchStyle
*/
public static final int AppCompatTheme_switchStyle=95;
/**
* <p>
* @attr description
* Text color, typeface, size, and style for the text inside of a popup menu.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:textAppearanceLargePopupMenu
*/
public static final int AppCompatTheme_textAppearanceLargePopupMenu=96;
/**
* <p>
* @attr description
* The preferred TextAppearance for the primary text of list items.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:textAppearanceListItem
*/
public static final int AppCompatTheme_textAppearanceListItem=97;
/**
* <p>
* @attr description
* The preferred TextAppearance for the secondary text of list items.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:textAppearanceListItemSecondary
*/
public static final int AppCompatTheme_textAppearanceListItemSecondary=98;
/**
* <p>
* @attr description
* The preferred TextAppearance for the primary text of small list items.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:textAppearanceListItemSmall
*/
public static final int AppCompatTheme_textAppearanceListItemSmall=99;
/**
* <p>
* @attr description
* Text color, typeface, size, and style for header text inside of a popup menu.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:textAppearancePopupMenuHeader
*/
public static final int AppCompatTheme_textAppearancePopupMenuHeader=100;
/**
* <p>
* @attr description
* Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:textAppearanceSearchResultSubtitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultSubtitle=101;
/**
* <p>
* @attr description
* Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:textAppearanceSearchResultTitle
*/
public static final int AppCompatTheme_textAppearanceSearchResultTitle=102;
/**
* <p>
* @attr description
* Text color, typeface, size, and style for small text inside of a popup menu.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:textAppearanceSmallPopupMenu
*/
public static final int AppCompatTheme_textAppearanceSmallPopupMenu=103;
/**
* <p>
* @attr description
* Color of list item text in alert dialogs.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:textColorAlertDialogListItem
*/
public static final int AppCompatTheme_textColorAlertDialogListItem=104;
/**
* <p>
* @attr description
* Text color for urls in search suggestions, used by things like global search
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:textColorSearchUrl
*/
public static final int AppCompatTheme_textColorSearchUrl=105;
/**
* <p>
* @attr description
* Default Toolar NavigationButtonStyle
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:toolbarNavigationButtonStyle
*/
public static final int AppCompatTheme_toolbarNavigationButtonStyle=106;
/**
* <p>
* @attr description
* Default Toolbar style.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:toolbarStyle
*/
public static final int AppCompatTheme_toolbarStyle=107;
/**
* <p>
* @attr description
* Foreground color to use for tooltips
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:tooltipForegroundColor
*/
public static final int AppCompatTheme_tooltipForegroundColor=108;
/**
* <p>
* @attr description
* Background to use for tooltips
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:tooltipFrameBackground
*/
public static final int AppCompatTheme_tooltipFrameBackground=109;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#viewInflaterClass}
* attribute's value can be found in the {@link #AppCompatTheme} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name org.nativescript.MAD2:viewInflaterClass
*/
public static final int AppCompatTheme_viewInflaterClass=110;
/**
* <p>
* @attr description
* Flag indicating whether this window should have an Action Bar
* in place of the usual title bar.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:windowActionBar
*/
public static final int AppCompatTheme_windowActionBar=111;
/**
* <p>
* @attr description
* Flag indicating whether this window's Action Bar should overlay
* application content. Does nothing if the window would not
* have an Action Bar.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:windowActionBarOverlay
*/
public static final int AppCompatTheme_windowActionBarOverlay=112;
/**
* <p>
* @attr description
* Flag indicating whether action modes should overlay window content
* when there is not reserved space for their UI (such as an Action Bar).
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:windowActionModeOverlay
*/
public static final int AppCompatTheme_windowActionModeOverlay=113;
/**
* <p>
* @attr description
* A fixed height for the window along the major axis of the screen,
* that is, when in portrait. Can be either an absolute dimension
* or a fraction of the screen size in that dimension.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*
* @attr name org.nativescript.MAD2:windowFixedHeightMajor
*/
public static final int AppCompatTheme_windowFixedHeightMajor=114;
/**
* <p>
* @attr description
* A fixed height for the window along the minor axis of the screen,
* that is, when in landscape. Can be either an absolute dimension
* or a fraction of the screen size in that dimension.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*
* @attr name org.nativescript.MAD2:windowFixedHeightMinor
*/
public static final int AppCompatTheme_windowFixedHeightMinor=115;
/**
* <p>
* @attr description
* A fixed width for the window along the major axis of the screen,
* that is, when in landscape. Can be either an absolute dimension
* or a fraction of the screen size in that dimension.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*
* @attr name org.nativescript.MAD2:windowFixedWidthMajor
*/
public static final int AppCompatTheme_windowFixedWidthMajor=116;
/**
* <p>
* @attr description
* A fixed width for the window along the minor axis of the screen,
* that is, when in portrait. Can be either an absolute dimension
* or a fraction of the screen size in that dimension.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*
* @attr name org.nativescript.MAD2:windowFixedWidthMinor
*/
public static final int AppCompatTheme_windowFixedWidthMinor=117;
/**
* <p>
* @attr description
* The minimum width the window is allowed to be, along the major
* axis of the screen. That is, when in landscape. Can be either
* an absolute dimension or a fraction of the screen size in that
* dimension.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*
* @attr name org.nativescript.MAD2:windowMinWidthMajor
*/
public static final int AppCompatTheme_windowMinWidthMajor=118;
/**
* <p>
* @attr description
* The minimum width the window is allowed to be, along the minor
* axis of the screen. That is, when in portrait. Can be either
* an absolute dimension or a fraction of the screen size in that
* dimension.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*
* @attr name org.nativescript.MAD2:windowMinWidthMinor
*/
public static final int AppCompatTheme_windowMinWidthMinor=119;
/**
* <p>
* @attr description
* Flag indicating whether there should be no title on this window.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:windowNoTitle
*/
public static final int AppCompatTheme_windowNoTitle=120;
/**
* Attributes that can be used with a BottomAppBar.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #BottomAppBar_backgroundTint org.nativescript.MAD2:backgroundTint}</code></td><td>Tint to apply to the background.</td></tr>
* <tr><td><code>{@link #BottomAppBar_fabAlignmentMode org.nativescript.MAD2:fabAlignmentMode}</code></td><td></td></tr>
* <tr><td><code>{@link #BottomAppBar_fabCradleMargin org.nativescript.MAD2:fabCradleMargin}</code></td><td></td></tr>
* <tr><td><code>{@link #BottomAppBar_fabCradleRoundedCornerRadius org.nativescript.MAD2:fabCradleRoundedCornerRadius}</code></td><td></td></tr>
* <tr><td><code>{@link #BottomAppBar_fabCradleVerticalOffset org.nativescript.MAD2:fabCradleVerticalOffset}</code></td><td></td></tr>
* <tr><td><code>{@link #BottomAppBar_hideOnScroll org.nativescript.MAD2:hideOnScroll}</code></td><td></td></tr>
* </table>
* @see #BottomAppBar_backgroundTint
* @see #BottomAppBar_fabAlignmentMode
* @see #BottomAppBar_fabCradleMargin
* @see #BottomAppBar_fabCradleRoundedCornerRadius
* @see #BottomAppBar_fabCradleVerticalOffset
* @see #BottomAppBar_hideOnScroll
*/
public static final int[] BottomAppBar={
0x7f030034, 0x7f0300c3, 0x7f0300c4, 0x7f0300c5,
0x7f0300c6, 0x7f0300e6
};
/**
* <p>
* @attr description
* Tint to apply to the background.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:backgroundTint
*/
public static final int BottomAppBar_backgroundTint=0;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#fabAlignmentMode}
* attribute's value can be found in the {@link #BottomAppBar} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>center</td><td>0</td><td></td></tr>
* <tr><td>end</td><td>1</td><td></td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:fabAlignmentMode
*/
public static final int BottomAppBar_fabAlignmentMode=1;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#fabCradleMargin}
* attribute's value can be found in the {@link #BottomAppBar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:fabCradleMargin
*/
public static final int BottomAppBar_fabCradleMargin=2;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#fabCradleRoundedCornerRadius}
* attribute's value can be found in the {@link #BottomAppBar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:fabCradleRoundedCornerRadius
*/
public static final int BottomAppBar_fabCradleRoundedCornerRadius=3;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#fabCradleVerticalOffset}
* attribute's value can be found in the {@link #BottomAppBar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:fabCradleVerticalOffset
*/
public static final int BottomAppBar_fabCradleVerticalOffset=4;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#hideOnScroll}
* attribute's value can be found in the {@link #BottomAppBar} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:hideOnScroll
*/
public static final int BottomAppBar_hideOnScroll=5;
/**
* Attributes that can be used with a BottomNavigationView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #BottomNavigationView_elevation org.nativescript.MAD2:elevation}</code></td><td>Elevation for the action bar itself</td></tr>
* <tr><td><code>{@link #BottomNavigationView_itemBackground org.nativescript.MAD2:itemBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #BottomNavigationView_itemHorizontalTranslationEnabled org.nativescript.MAD2:itemHorizontalTranslationEnabled}</code></td><td></td></tr>
* <tr><td><code>{@link #BottomNavigationView_itemIconSize org.nativescript.MAD2:itemIconSize}</code></td><td></td></tr>
* <tr><td><code>{@link #BottomNavigationView_itemIconTint org.nativescript.MAD2:itemIconTint}</code></td><td></td></tr>
* <tr><td><code>{@link #BottomNavigationView_itemTextAppearanceActive org.nativescript.MAD2:itemTextAppearanceActive}</code></td><td></td></tr>
* <tr><td><code>{@link #BottomNavigationView_itemTextAppearanceInactive org.nativescript.MAD2:itemTextAppearanceInactive}</code></td><td></td></tr>
* <tr><td><code>{@link #BottomNavigationView_itemTextColor org.nativescript.MAD2:itemTextColor}</code></td><td></td></tr>
* <tr><td><code>{@link #BottomNavigationView_labelVisibilityMode org.nativescript.MAD2:labelVisibilityMode}</code></td><td></td></tr>
* <tr><td><code>{@link #BottomNavigationView_menu org.nativescript.MAD2:menu}</code></td><td></td></tr>
* </table>
* @see #BottomNavigationView_elevation
* @see #BottomNavigationView_itemBackground
* @see #BottomNavigationView_itemHorizontalTranslationEnabled
* @see #BottomNavigationView_itemIconSize
* @see #BottomNavigationView_itemIconTint
* @see #BottomNavigationView_itemTextAppearanceActive
* @see #BottomNavigationView_itemTextAppearanceInactive
* @see #BottomNavigationView_itemTextColor
* @see #BottomNavigationView_labelVisibilityMode
* @see #BottomNavigationView_menu
*/
public static final int[] BottomNavigationView={
0x7f0300b5, 0x7f0300fb, 0x7f0300fd, 0x7f0300ff,
0x7f030100, 0x7f030104, 0x7f030105, 0x7f030106,
0x7f030108, 0x7f03012c
};
/**
* <p>
* @attr description
* Elevation for the action bar itself
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:elevation
*/
public static final int BottomNavigationView_elevation=0;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#itemBackground}
* attribute's value can be found in the {@link #BottomNavigationView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:itemBackground
*/
public static final int BottomNavigationView_itemBackground=1;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#itemHorizontalTranslationEnabled}
* attribute's value can be found in the {@link #BottomNavigationView} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:itemHorizontalTranslationEnabled
*/
public static final int BottomNavigationView_itemHorizontalTranslationEnabled=2;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#itemIconSize}
* attribute's value can be found in the {@link #BottomNavigationView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:itemIconSize
*/
public static final int BottomNavigationView_itemIconSize=3;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#itemIconTint}
* attribute's value can be found in the {@link #BottomNavigationView} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:itemIconTint
*/
public static final int BottomNavigationView_itemIconTint=4;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#itemTextAppearanceActive}
* attribute's value can be found in the {@link #BottomNavigationView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:itemTextAppearanceActive
*/
public static final int BottomNavigationView_itemTextAppearanceActive=5;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#itemTextAppearanceInactive}
* attribute's value can be found in the {@link #BottomNavigationView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:itemTextAppearanceInactive
*/
public static final int BottomNavigationView_itemTextAppearanceInactive=6;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#itemTextColor}
* attribute's value can be found in the {@link #BottomNavigationView} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:itemTextColor
*/
public static final int BottomNavigationView_itemTextColor=7;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#labelVisibilityMode}
* attribute's value can be found in the {@link #BottomNavigationView} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>auto</td><td>ffffffff</td><td></td></tr>
* <tr><td>labeled</td><td>1</td><td></td></tr>
* <tr><td>selected</td><td>0</td><td></td></tr>
* <tr><td>unlabeled</td><td>2</td><td></td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:labelVisibilityMode
*/
public static final int BottomNavigationView_labelVisibilityMode=8;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#menu}
* attribute's value can be found in the {@link #BottomNavigationView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:menu
*/
public static final int BottomNavigationView_menu=9;
/**
* Attributes that can be used with a BottomSheetBehavior_Layout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_fitToContents org.nativescript.MAD2:behavior_fitToContents}</code></td><td></td></tr>
* <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_hideable org.nativescript.MAD2:behavior_hideable}</code></td><td></td></tr>
* <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_peekHeight org.nativescript.MAD2:behavior_peekHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #BottomSheetBehavior_Layout_behavior_skipCollapsed org.nativescript.MAD2:behavior_skipCollapsed}</code></td><td></td></tr>
* </table>
* @see #BottomSheetBehavior_Layout_behavior_fitToContents
* @see #BottomSheetBehavior_Layout_behavior_hideable
* @see #BottomSheetBehavior_Layout_behavior_peekHeight
* @see #BottomSheetBehavior_Layout_behavior_skipCollapsed
*/
public static final int[] BottomSheetBehavior_Layout={
0x7f030038, 0x7f030039, 0x7f03003b, 0x7f03003c
};
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#behavior_fitToContents}
* attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:behavior_fitToContents
*/
public static final int BottomSheetBehavior_Layout_behavior_fitToContents=0;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#behavior_hideable}
* attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:behavior_hideable
*/
public static final int BottomSheetBehavior_Layout_behavior_hideable=1;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#behavior_peekHeight}
* attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>auto</td><td>ffffffff</td><td></td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:behavior_peekHeight
*/
public static final int BottomSheetBehavior_Layout_behavior_peekHeight=2;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#behavior_skipCollapsed}
* attribute's value can be found in the {@link #BottomSheetBehavior_Layout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:behavior_skipCollapsed
*/
public static final int BottomSheetBehavior_Layout_behavior_skipCollapsed=3;
/**
* Attributes that can be used with a ButtonBarLayout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ButtonBarLayout_allowStacking org.nativescript.MAD2:allowStacking}</code></td><td>Whether to automatically stack the buttons when there is not
* enough space to lay them out side-by-side.</td></tr>
* </table>
* @see #ButtonBarLayout_allowStacking
*/
public static final int[] ButtonBarLayout={
0x7f030026
};
/**
* <p>
* @attr description
* Whether to automatically stack the buttons when there is not
* enough space to lay them out side-by-side.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:allowStacking
*/
public static final int ButtonBarLayout_allowStacking=0;
/**
* Attributes that can be used with a CardView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #CardView_android_minWidth android:minWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #CardView_android_minHeight android:minHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #CardView_cardBackgroundColor org.nativescript.MAD2:cardBackgroundColor}</code></td><td>Background color for CardView.</td></tr>
* <tr><td><code>{@link #CardView_cardCornerRadius org.nativescript.MAD2:cardCornerRadius}</code></td><td>Corner radius for CardView.</td></tr>
* <tr><td><code>{@link #CardView_cardElevation org.nativescript.MAD2:cardElevation}</code></td><td>Elevation for CardView.</td></tr>
* <tr><td><code>{@link #CardView_cardMaxElevation org.nativescript.MAD2:cardMaxElevation}</code></td><td>Maximum Elevation for CardView.</td></tr>
* <tr><td><code>{@link #CardView_cardPreventCornerOverlap org.nativescript.MAD2:cardPreventCornerOverlap}</code></td><td>Add padding to CardView on v20 and before to prevent intersections between the Card content and rounded corners.</td></tr>
* <tr><td><code>{@link #CardView_cardUseCompatPadding org.nativescript.MAD2:cardUseCompatPadding}</code></td><td>Add padding in API v21+ as well to have the same measurements with previous versions.</td></tr>
* <tr><td><code>{@link #CardView_contentPadding org.nativescript.MAD2:contentPadding}</code></td><td>Inner padding between the edges of the Card and children of the CardView.</td></tr>
* <tr><td><code>{@link #CardView_contentPaddingBottom org.nativescript.MAD2:contentPaddingBottom}</code></td><td>Inner padding between the bottom edge of the Card and children of the CardView.</td></tr>
* <tr><td><code>{@link #CardView_contentPaddingLeft org.nativescript.MAD2:contentPaddingLeft}</code></td><td>Inner padding between the left edge of the Card and children of the CardView.</td></tr>
* <tr><td><code>{@link #CardView_contentPaddingRight org.nativescript.MAD2:contentPaddingRight}</code></td><td>Inner padding between the right edge of the Card and children of the CardView.</td></tr>
* <tr><td><code>{@link #CardView_contentPaddingTop org.nativescript.MAD2:contentPaddingTop}</code></td><td>Inner padding between the top edge of the Card and children of the CardView.</td></tr>
* </table>
* @see #CardView_android_minWidth
* @see #CardView_android_minHeight
* @see #CardView_cardBackgroundColor
* @see #CardView_cardCornerRadius
* @see #CardView_cardElevation
* @see #CardView_cardMaxElevation
* @see #CardView_cardPreventCornerOverlap
* @see #CardView_cardUseCompatPadding
* @see #CardView_contentPadding
* @see #CardView_contentPaddingBottom
* @see #CardView_contentPaddingLeft
* @see #CardView_contentPaddingRight
* @see #CardView_contentPaddingTop
*/
public static final int[] CardView={
0x0101013f, 0x01010140, 0x7f030058, 0x7f030059,
0x7f03005a, 0x7f03005b, 0x7f03005c, 0x7f03005d,
0x7f030097, 0x7f030098, 0x7f030099, 0x7f03009a,
0x7f03009b
};
/**
* <p>
* @attr description
* Workaround to read user defined minimum width
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:minWidth
*/
public static final int CardView_android_minWidth=0;
/**
* <p>
* @attr description
* Workaround to read user defined minimum height
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:minHeight
*/
public static final int CardView_android_minHeight=1;
/**
* <p>
* @attr description
* Background color for CardView.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:cardBackgroundColor
*/
public static final int CardView_cardBackgroundColor=2;
/**
* <p>
* @attr description
* Corner radius for CardView.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:cardCornerRadius
*/
public static final int CardView_cardCornerRadius=3;
/**
* <p>
* @attr description
* Elevation for CardView.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:cardElevation
*/
public static final int CardView_cardElevation=4;
/**
* <p>
* @attr description
* Maximum Elevation for CardView.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:cardMaxElevation
*/
public static final int CardView_cardMaxElevation=5;
/**
* <p>
* @attr description
* Add padding to CardView on v20 and before to prevent intersections between the Card content and rounded corners.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:cardPreventCornerOverlap
*/
public static final int CardView_cardPreventCornerOverlap=6;
/**
* <p>
* @attr description
* Add padding in API v21+ as well to have the same measurements with previous versions.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:cardUseCompatPadding
*/
public static final int CardView_cardUseCompatPadding=7;
/**
* <p>
* @attr description
* Inner padding between the edges of the Card and children of the CardView.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:contentPadding
*/
public static final int CardView_contentPadding=8;
/**
* <p>
* @attr description
* Inner padding between the bottom edge of the Card and children of the CardView.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:contentPaddingBottom
*/
public static final int CardView_contentPaddingBottom=9;
/**
* <p>
* @attr description
* Inner padding between the left edge of the Card and children of the CardView.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:contentPaddingLeft
*/
public static final int CardView_contentPaddingLeft=10;
/**
* <p>
* @attr description
* Inner padding between the right edge of the Card and children of the CardView.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:contentPaddingRight
*/
public static final int CardView_contentPaddingRight=11;
/**
* <p>
* @attr description
* Inner padding between the top edge of the Card and children of the CardView.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:contentPaddingTop
*/
public static final int CardView_contentPaddingTop=12;
/**
* Attributes that can be used with a Chip.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #Chip_android_textAppearance android:textAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #Chip_android_ellipsize android:ellipsize}</code></td><td></td></tr>
* <tr><td><code>{@link #Chip_android_maxWidth android:maxWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #Chip_android_text android:text}</code></td><td></td></tr>
* <tr><td><code>{@link #Chip_android_checkable android:checkable}</code></td><td></td></tr>
* <tr><td><code>{@link #Chip_checkedIcon org.nativescript.MAD2:checkedIcon}</code></td><td></td></tr>
* <tr><td><code>{@link #Chip_checkedIconEnabled org.nativescript.MAD2:checkedIconEnabled}</code></td><td></td></tr>
* <tr><td><code>{@link #Chip_checkedIconVisible org.nativescript.MAD2:checkedIconVisible}</code></td><td></td></tr>
* <tr><td><code>{@link #Chip_chipBackgroundColor org.nativescript.MAD2:chipBackgroundColor}</code></td><td></td></tr>
* <tr><td><code>{@link #Chip_chipCornerRadius org.nativescript.MAD2:chipCornerRadius}</code></td><td></td></tr>
* <tr><td><code>{@link #Chip_chipEndPadding org.nativescript.MAD2:chipEndPadding}</code></td><td></td></tr>
* <tr><td><code>{@link #Chip_chipIcon org.nativescript.MAD2:chipIcon}</code></td><td></td></tr>
* <tr><td><code>{@link #Chip_chipIconEnabled org.nativescript.MAD2:chipIconEnabled}</code></td><td></td></tr>
* <tr><td><code>{@link #Chip_chipIconSize org.nativescript.MAD2:chipIconSize}</code></td><td></td></tr>
* <tr><td><code>{@link #Chip_chipIconTint org.nativescript.MAD2:chipIconTint}</code></td><td></td></tr>
* <tr><td><code>{@link #Chip_chipIconVisible org.nativescript.MAD2:chipIconVisible}</code></td><td></td></tr>
* <tr><td><code>{@link #Chip_chipMinHeight org.nativescript.MAD2:chipMinHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #Chip_chipStartPadding org.nativescript.MAD2:chipStartPadding}</code></td><td></td></tr>
* <tr><td><code>{@link #Chip_chipStrokeColor org.nativescript.MAD2:chipStrokeColor}</code></td><td></td></tr>
* <tr><td><code>{@link #Chip_chipStrokeWidth org.nativescript.MAD2:chipStrokeWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #Chip_closeIcon org.nativescript.MAD2:closeIcon}</code></td><td>Close button icon</td></tr>
* <tr><td><code>{@link #Chip_closeIconEnabled org.nativescript.MAD2:closeIconEnabled}</code></td><td></td></tr>
* <tr><td><code>{@link #Chip_closeIconEndPadding org.nativescript.MAD2:closeIconEndPadding}</code></td><td></td></tr>
* <tr><td><code>{@link #Chip_closeIconSize org.nativescript.MAD2:closeIconSize}</code></td><td></td></tr>
* <tr><td><code>{@link #Chip_closeIconStartPadding org.nativescript.MAD2:closeIconStartPadding}</code></td><td></td></tr>
* <tr><td><code>{@link #Chip_closeIconTint org.nativescript.MAD2:closeIconTint}</code></td><td></td></tr>
* <tr><td><code>{@link #Chip_closeIconVisible org.nativescript.MAD2:closeIconVisible}</code></td><td></td></tr>
* <tr><td><code>{@link #Chip_hideMotionSpec org.nativescript.MAD2:hideMotionSpec}</code></td><td></td></tr>
* <tr><td><code>{@link #Chip_iconEndPadding org.nativescript.MAD2:iconEndPadding}</code></td><td></td></tr>
* <tr><td><code>{@link #Chip_iconStartPadding org.nativescript.MAD2:iconStartPadding}</code></td><td></td></tr>
* <tr><td><code>{@link #Chip_rippleColor org.nativescript.MAD2:rippleColor}</code></td><td></td></tr>
* <tr><td><code>{@link #Chip_showMotionSpec org.nativescript.MAD2:showMotionSpec}</code></td><td></td></tr>
* <tr><td><code>{@link #Chip_textEndPadding org.nativescript.MAD2:textEndPadding}</code></td><td></td></tr>
* <tr><td><code>{@link #Chip_textStartPadding org.nativescript.MAD2:textStartPadding}</code></td><td></td></tr>
* </table>
* @see #Chip_android_textAppearance
* @see #Chip_android_ellipsize
* @see #Chip_android_maxWidth
* @see #Chip_android_text
* @see #Chip_android_checkable
* @see #Chip_checkedIcon
* @see #Chip_checkedIconEnabled
* @see #Chip_checkedIconVisible
* @see #Chip_chipBackgroundColor
* @see #Chip_chipCornerRadius
* @see #Chip_chipEndPadding
* @see #Chip_chipIcon
* @see #Chip_chipIconEnabled
* @see #Chip_chipIconSize
* @see #Chip_chipIconTint
* @see #Chip_chipIconVisible
* @see #Chip_chipMinHeight
* @see #Chip_chipStartPadding
* @see #Chip_chipStrokeColor
* @see #Chip_chipStrokeWidth
* @see #Chip_closeIcon
* @see #Chip_closeIconEnabled
* @see #Chip_closeIconEndPadding
* @see #Chip_closeIconSize
* @see #Chip_closeIconStartPadding
* @see #Chip_closeIconTint
* @see #Chip_closeIconVisible
* @see #Chip_hideMotionSpec
* @see #Chip_iconEndPadding
* @see #Chip_iconStartPadding
* @see #Chip_rippleColor
* @see #Chip_showMotionSpec
* @see #Chip_textEndPadding
* @see #Chip_textStartPadding
*/
public static final int[] Chip={
0x01010034, 0x010100ab, 0x0101011f, 0x0101014f,
0x010101e5, 0x7f030061, 0x7f030062, 0x7f030063,
0x7f030065, 0x7f030066, 0x7f030067, 0x7f030069,
0x7f03006a, 0x7f03006b, 0x7f03006c, 0x7f03006d,
0x7f03006e, 0x7f030073, 0x7f030074, 0x7f030075,
0x7f030077, 0x7f030078, 0x7f030079, 0x7f03007a,
0x7f03007b, 0x7f03007c, 0x7f03007d, 0x7f0300e4,
0x7f0300ee, 0x7f0300f2, 0x7f03014f, 0x7f03015c,
0x7f0301b1, 0x7f0301b3
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#textAppearance}
* attribute's value can be found in the {@link #Chip} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:textAppearance
*/
public static final int Chip_android_textAppearance=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#ellipsize}
* attribute's value can be found in the {@link #Chip} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>end</td><td>3</td><td></td></tr>
* <tr><td>marquee</td><td>4</td><td></td></tr>
* <tr><td>middle</td><td>2</td><td></td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>start</td><td>1</td><td></td></tr>
* </table>
*
* @attr name android:ellipsize
*/
public static final int Chip_android_ellipsize=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#maxWidth}
* attribute's value can be found in the {@link #Chip} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:maxWidth
*/
public static final int Chip_android_maxWidth=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#text}
* attribute's value can be found in the {@link #Chip} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:text
*/
public static final int Chip_android_text=3;
/**
* <p>This symbol is the offset where the {@link android.R.attr#checkable}
* attribute's value can be found in the {@link #Chip} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:checkable
*/
public static final int Chip_android_checkable=4;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#checkedIcon}
* attribute's value can be found in the {@link #Chip} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:checkedIcon
*/
public static final int Chip_checkedIcon=5;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#checkedIconEnabled}
* attribute's value can be found in the {@link #Chip} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:checkedIconEnabled
*/
public static final int Chip_checkedIconEnabled=6;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#checkedIconVisible}
* attribute's value can be found in the {@link #Chip} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:checkedIconVisible
*/
public static final int Chip_checkedIconVisible=7;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#chipBackgroundColor}
* attribute's value can be found in the {@link #Chip} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:chipBackgroundColor
*/
public static final int Chip_chipBackgroundColor=8;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#chipCornerRadius}
* attribute's value can be found in the {@link #Chip} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:chipCornerRadius
*/
public static final int Chip_chipCornerRadius=9;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#chipEndPadding}
* attribute's value can be found in the {@link #Chip} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:chipEndPadding
*/
public static final int Chip_chipEndPadding=10;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#chipIcon}
* attribute's value can be found in the {@link #Chip} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:chipIcon
*/
public static final int Chip_chipIcon=11;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#chipIconEnabled}
* attribute's value can be found in the {@link #Chip} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:chipIconEnabled
*/
public static final int Chip_chipIconEnabled=12;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#chipIconSize}
* attribute's value can be found in the {@link #Chip} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:chipIconSize
*/
public static final int Chip_chipIconSize=13;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#chipIconTint}
* attribute's value can be found in the {@link #Chip} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:chipIconTint
*/
public static final int Chip_chipIconTint=14;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#chipIconVisible}
* attribute's value can be found in the {@link #Chip} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:chipIconVisible
*/
public static final int Chip_chipIconVisible=15;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#chipMinHeight}
* attribute's value can be found in the {@link #Chip} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:chipMinHeight
*/
public static final int Chip_chipMinHeight=16;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#chipStartPadding}
* attribute's value can be found in the {@link #Chip} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:chipStartPadding
*/
public static final int Chip_chipStartPadding=17;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#chipStrokeColor}
* attribute's value can be found in the {@link #Chip} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:chipStrokeColor
*/
public static final int Chip_chipStrokeColor=18;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#chipStrokeWidth}
* attribute's value can be found in the {@link #Chip} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:chipStrokeWidth
*/
public static final int Chip_chipStrokeWidth=19;
/**
* <p>
* @attr description
* Close button icon
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:closeIcon
*/
public static final int Chip_closeIcon=20;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#closeIconEnabled}
* attribute's value can be found in the {@link #Chip} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:closeIconEnabled
*/
public static final int Chip_closeIconEnabled=21;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#closeIconEndPadding}
* attribute's value can be found in the {@link #Chip} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:closeIconEndPadding
*/
public static final int Chip_closeIconEndPadding=22;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#closeIconSize}
* attribute's value can be found in the {@link #Chip} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:closeIconSize
*/
public static final int Chip_closeIconSize=23;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#closeIconStartPadding}
* attribute's value can be found in the {@link #Chip} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:closeIconStartPadding
*/
public static final int Chip_closeIconStartPadding=24;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#closeIconTint}
* attribute's value can be found in the {@link #Chip} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:closeIconTint
*/
public static final int Chip_closeIconTint=25;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#closeIconVisible}
* attribute's value can be found in the {@link #Chip} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:closeIconVisible
*/
public static final int Chip_closeIconVisible=26;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#hideMotionSpec}
* attribute's value can be found in the {@link #Chip} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:hideMotionSpec
*/
public static final int Chip_hideMotionSpec=27;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#iconEndPadding}
* attribute's value can be found in the {@link #Chip} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:iconEndPadding
*/
public static final int Chip_iconEndPadding=28;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#iconStartPadding}
* attribute's value can be found in the {@link #Chip} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:iconStartPadding
*/
public static final int Chip_iconStartPadding=29;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#rippleColor}
* attribute's value can be found in the {@link #Chip} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:rippleColor
*/
public static final int Chip_rippleColor=30;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#showMotionSpec}
* attribute's value can be found in the {@link #Chip} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:showMotionSpec
*/
public static final int Chip_showMotionSpec=31;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#textEndPadding}
* attribute's value can be found in the {@link #Chip} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:textEndPadding
*/
public static final int Chip_textEndPadding=32;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#textStartPadding}
* attribute's value can be found in the {@link #Chip} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:textStartPadding
*/
public static final int Chip_textStartPadding=33;
/**
* Attributes that can be used with a ChipGroup.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ChipGroup_checkedChip org.nativescript.MAD2:checkedChip}</code></td><td></td></tr>
* <tr><td><code>{@link #ChipGroup_chipSpacing org.nativescript.MAD2:chipSpacing}</code></td><td></td></tr>
* <tr><td><code>{@link #ChipGroup_chipSpacingHorizontal org.nativescript.MAD2:chipSpacingHorizontal}</code></td><td></td></tr>
* <tr><td><code>{@link #ChipGroup_chipSpacingVertical org.nativescript.MAD2:chipSpacingVertical}</code></td><td></td></tr>
* <tr><td><code>{@link #ChipGroup_singleLine org.nativescript.MAD2:singleLine}</code></td><td></td></tr>
* <tr><td><code>{@link #ChipGroup_singleSelection org.nativescript.MAD2:singleSelection}</code></td><td></td></tr>
* </table>
* @see #ChipGroup_checkedChip
* @see #ChipGroup_chipSpacing
* @see #ChipGroup_chipSpacingHorizontal
* @see #ChipGroup_chipSpacingVertical
* @see #ChipGroup_singleLine
* @see #ChipGroup_singleSelection
*/
public static final int[] ChipGroup={
0x7f030060, 0x7f03006f, 0x7f030070, 0x7f030071,
0x7f030160, 0x7f030161
};
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#checkedChip}
* attribute's value can be found in the {@link #ChipGroup} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:checkedChip
*/
public static final int ChipGroup_checkedChip=0;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#chipSpacing}
* attribute's value can be found in the {@link #ChipGroup} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:chipSpacing
*/
public static final int ChipGroup_chipSpacing=1;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#chipSpacingHorizontal}
* attribute's value can be found in the {@link #ChipGroup} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:chipSpacingHorizontal
*/
public static final int ChipGroup_chipSpacingHorizontal=2;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#chipSpacingVertical}
* attribute's value can be found in the {@link #ChipGroup} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:chipSpacingVertical
*/
public static final int ChipGroup_chipSpacingVertical=3;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#singleLine}
* attribute's value can be found in the {@link #ChipGroup} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:singleLine
*/
public static final int ChipGroup_singleLine=4;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#singleSelection}
* attribute's value can be found in the {@link #ChipGroup} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:singleSelection
*/
public static final int ChipGroup_singleSelection=5;
/**
* Attributes that can be used with a CollapsingToolbarLayout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleGravity org.nativescript.MAD2:collapsedTitleGravity}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_collapsedTitleTextAppearance org.nativescript.MAD2:collapsedTitleTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_contentScrim org.nativescript.MAD2:contentScrim}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleGravity org.nativescript.MAD2:expandedTitleGravity}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMargin org.nativescript.MAD2:expandedTitleMargin}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginBottom org.nativescript.MAD2:expandedTitleMarginBottom}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginEnd org.nativescript.MAD2:expandedTitleMarginEnd}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginStart org.nativescript.MAD2:expandedTitleMarginStart}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleMarginTop org.nativescript.MAD2:expandedTitleMarginTop}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_expandedTitleTextAppearance org.nativescript.MAD2:expandedTitleTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_scrimAnimationDuration org.nativescript.MAD2:scrimAnimationDuration}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_scrimVisibleHeightTrigger org.nativescript.MAD2:scrimVisibleHeightTrigger}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_statusBarScrim org.nativescript.MAD2:statusBarScrim}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_title org.nativescript.MAD2:title}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_titleEnabled org.nativescript.MAD2:titleEnabled}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_toolbarId org.nativescript.MAD2:toolbarId}</code></td><td></td></tr>
* </table>
* @see #CollapsingToolbarLayout_collapsedTitleGravity
* @see #CollapsingToolbarLayout_collapsedTitleTextAppearance
* @see #CollapsingToolbarLayout_contentScrim
* @see #CollapsingToolbarLayout_expandedTitleGravity
* @see #CollapsingToolbarLayout_expandedTitleMargin
* @see #CollapsingToolbarLayout_expandedTitleMarginBottom
* @see #CollapsingToolbarLayout_expandedTitleMarginEnd
* @see #CollapsingToolbarLayout_expandedTitleMarginStart
* @see #CollapsingToolbarLayout_expandedTitleMarginTop
* @see #CollapsingToolbarLayout_expandedTitleTextAppearance
* @see #CollapsingToolbarLayout_scrimAnimationDuration
* @see #CollapsingToolbarLayout_scrimVisibleHeightTrigger
* @see #CollapsingToolbarLayout_statusBarScrim
* @see #CollapsingToolbarLayout_title
* @see #CollapsingToolbarLayout_titleEnabled
* @see #CollapsingToolbarLayout_toolbarId
*/
public static final int[] CollapsingToolbarLayout={
0x7f030081, 0x7f030082, 0x7f03009c, 0x7f0300bc,
0x7f0300bd, 0x7f0300be, 0x7f0300bf, 0x7f0300c0,
0x7f0300c1, 0x7f0300c2, 0x7f030150, 0x7f030152,
0x7f030171, 0x7f0301be, 0x7f0301bf, 0x7f0301c9
};
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#collapsedTitleGravity}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:collapsedTitleGravity
*/
public static final int CollapsingToolbarLayout_collapsedTitleGravity=0;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#collapsedTitleTextAppearance}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:collapsedTitleTextAppearance
*/
public static final int CollapsingToolbarLayout_collapsedTitleTextAppearance=1;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#contentScrim}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:contentScrim
*/
public static final int CollapsingToolbarLayout_contentScrim=2;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#expandedTitleGravity}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:expandedTitleGravity
*/
public static final int CollapsingToolbarLayout_expandedTitleGravity=3;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#expandedTitleMargin}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:expandedTitleMargin
*/
public static final int CollapsingToolbarLayout_expandedTitleMargin=4;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#expandedTitleMarginBottom}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:expandedTitleMarginBottom
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginBottom=5;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#expandedTitleMarginEnd}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:expandedTitleMarginEnd
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginEnd=6;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#expandedTitleMarginStart}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:expandedTitleMarginStart
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginStart=7;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#expandedTitleMarginTop}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:expandedTitleMarginTop
*/
public static final int CollapsingToolbarLayout_expandedTitleMarginTop=8;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#expandedTitleTextAppearance}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:expandedTitleTextAppearance
*/
public static final int CollapsingToolbarLayout_expandedTitleTextAppearance=9;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#scrimAnimationDuration}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name org.nativescript.MAD2:scrimAnimationDuration
*/
public static final int CollapsingToolbarLayout_scrimAnimationDuration=10;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#scrimVisibleHeightTrigger}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:scrimVisibleHeightTrigger
*/
public static final int CollapsingToolbarLayout_scrimVisibleHeightTrigger=11;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#statusBarScrim}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:statusBarScrim
*/
public static final int CollapsingToolbarLayout_statusBarScrim=12;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#title}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name org.nativescript.MAD2:title
*/
public static final int CollapsingToolbarLayout_title=13;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#titleEnabled}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:titleEnabled
*/
public static final int CollapsingToolbarLayout_titleEnabled=14;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#toolbarId}
* attribute's value can be found in the {@link #CollapsingToolbarLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:toolbarId
*/
public static final int CollapsingToolbarLayout_toolbarId=15;
/**
* Attributes that can be used with a CollapsingToolbarLayout_Layout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseMode org.nativescript.MAD2:layout_collapseMode}</code></td><td></td></tr>
* <tr><td><code>{@link #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier org.nativescript.MAD2:layout_collapseParallaxMultiplier}</code></td><td></td></tr>
* </table>
* @see #CollapsingToolbarLayout_Layout_layout_collapseMode
* @see #CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier
*/
public static final int[] CollapsingToolbarLayout_Layout={
0x7f03010f, 0x7f030110
};
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#layout_collapseMode}
* attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>parallax</td><td>2</td><td></td></tr>
* <tr><td>pin</td><td>1</td><td></td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:layout_collapseMode
*/
public static final int CollapsingToolbarLayout_Layout_layout_collapseMode=0;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#layout_collapseParallaxMultiplier}
* attribute's value can be found in the {@link #CollapsingToolbarLayout_Layout} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name org.nativescript.MAD2:layout_collapseParallaxMultiplier
*/
public static final int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier=1;
/**
* Attributes that can be used with a ColorStateListItem.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ColorStateListItem_android_color android:color}</code></td><td></td></tr>
* <tr><td><code>{@link #ColorStateListItem_android_alpha android:alpha}</code></td><td></td></tr>
* <tr><td><code>{@link #ColorStateListItem_alpha org.nativescript.MAD2:alpha}</code></td><td>Alpha multiplier applied to the base color.</td></tr>
* </table>
* @see #ColorStateListItem_android_color
* @see #ColorStateListItem_android_alpha
* @see #ColorStateListItem_alpha
*/
public static final int[] ColorStateListItem={
0x010101a5, 0x0101031f, 0x7f030027
};
/**
* <p>
* @attr description
* Base color for this state.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:color
*/
public static final int ColorStateListItem_android_color=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#alpha}
* attribute's value can be found in the {@link #ColorStateListItem} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:alpha
*/
public static final int ColorStateListItem_android_alpha=1;
/**
* <p>
* @attr description
* Alpha multiplier applied to the base color.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name org.nativescript.MAD2:alpha
*/
public static final int ColorStateListItem_alpha=2;
/**
* Attributes that can be used with a CompoundButton.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #CompoundButton_android_button android:button}</code></td><td></td></tr>
* <tr><td><code>{@link #CompoundButton_buttonTint org.nativescript.MAD2:buttonTint}</code></td><td>Tint to apply to the button drawable.</td></tr>
* <tr><td><code>{@link #CompoundButton_buttonTintMode org.nativescript.MAD2:buttonTintMode}</code></td><td>Blending mode used to apply the button tint.</td></tr>
* </table>
* @see #CompoundButton_android_button
* @see #CompoundButton_buttonTint
* @see #CompoundButton_buttonTintMode
*/
public static final int[] CompoundButton={
0x01010107, 0x7f030056, 0x7f030057
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#button}
* attribute's value can be found in the {@link #CompoundButton} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:button
*/
public static final int CompoundButton_android_button=0;
/**
* <p>
* @attr description
* Tint to apply to the button drawable.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:buttonTint
*/
public static final int CompoundButton_buttonTint=1;
/**
* <p>
* @attr description
* Blending mode used to apply the button tint.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the
* result to valid color values. Saturate(S + D)</td></tr>
* <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of
* the tint. [Sa * Da, Sc * Dc]</td></tr>
* <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr>
* <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha
* channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr>
* <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s
* color channels are thrown out. [Sa * Da, Sc * Da]</td></tr>
* <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable.
* [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:buttonTintMode
*/
public static final int CompoundButton_buttonTintMode=2;
/**
* Attributes that can be used with a CoordinatorLayout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #CoordinatorLayout_keylines org.nativescript.MAD2:keylines}</code></td><td>A reference to an array of integers representing the
* locations of horizontal keylines in dp from the starting edge.</td></tr>
* <tr><td><code>{@link #CoordinatorLayout_statusBarBackground org.nativescript.MAD2:statusBarBackground}</code></td><td>Drawable to display behind the status bar when the view is set to draw behind it.</td></tr>
* </table>
* @see #CoordinatorLayout_keylines
* @see #CoordinatorLayout_statusBarBackground
*/
public static final int[] CoordinatorLayout={
0x7f030107, 0x7f030170
};
/**
* <p>
* @attr description
* A reference to an array of integers representing the
* locations of horizontal keylines in dp from the starting edge.
* Child views can refer to these keylines for alignment using
* layout_keyline="index" where index is a 0-based index into
* this array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:keylines
*/
public static final int CoordinatorLayout_keylines=0;
/**
* <p>
* @attr description
* Drawable to display behind the status bar when the view is set to draw behind it.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:statusBarBackground
*/
public static final int CoordinatorLayout_statusBarBackground=1;
/**
* Attributes that can be used with a CoordinatorLayout_Layout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #CoordinatorLayout_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
* <tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchor org.nativescript.MAD2:layout_anchor}</code></td><td>The id of an anchor view that this view should position relative to.</td></tr>
* <tr><td><code>{@link #CoordinatorLayout_Layout_layout_anchorGravity org.nativescript.MAD2:layout_anchorGravity}</code></td><td>Specifies how an object should position relative to an anchor, on both the X and Y axes,
* within its parent's bounds.</td></tr>
* <tr><td><code>{@link #CoordinatorLayout_Layout_layout_behavior org.nativescript.MAD2:layout_behavior}</code></td><td>The class name of a Behavior class defining special runtime behavior
* for this child view.</td></tr>
* <tr><td><code>{@link #CoordinatorLayout_Layout_layout_dodgeInsetEdges org.nativescript.MAD2:layout_dodgeInsetEdges}</code></td><td>Specifies how this view dodges the inset edges of the CoordinatorLayout.</td></tr>
* <tr><td><code>{@link #CoordinatorLayout_Layout_layout_insetEdge org.nativescript.MAD2:layout_insetEdge}</code></td><td>Specifies how this view insets the CoordinatorLayout and make some other views
* dodge it.</td></tr>
* <tr><td><code>{@link #CoordinatorLayout_Layout_layout_keyline org.nativescript.MAD2:layout_keyline}</code></td><td>The index of a keyline this view should position relative to.</td></tr>
* </table>
* @see #CoordinatorLayout_Layout_android_layout_gravity
* @see #CoordinatorLayout_Layout_layout_anchor
* @see #CoordinatorLayout_Layout_layout_anchorGravity
* @see #CoordinatorLayout_Layout_layout_behavior
* @see #CoordinatorLayout_Layout_layout_dodgeInsetEdges
* @see #CoordinatorLayout_Layout_layout_insetEdge
* @see #CoordinatorLayout_Layout_layout_keyline
*/
public static final int[] CoordinatorLayout_Layout={
0x010100b3, 0x7f03010c, 0x7f03010d, 0x7f03010e,
0x7f030111, 0x7f030112, 0x7f030113
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
* attribute's value can be found in the {@link #CoordinatorLayout_Layout} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>clip_horizontal</td><td>8</td><td></td></tr>
* <tr><td>clip_vertical</td><td>80</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>fill</td><td>77</td><td></td></tr>
* <tr><td>fill_horizontal</td><td>7</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name android:layout_gravity
*/
public static final int CoordinatorLayout_Layout_android_layout_gravity=0;
/**
* <p>
* @attr description
* The id of an anchor view that this view should position relative to.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:layout_anchor
*/
public static final int CoordinatorLayout_Layout_layout_anchor=1;
/**
* <p>
* @attr description
* Specifies how an object should position relative to an anchor, on both the X and Y axes,
* within its parent's bounds.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td>Push object to the bottom of its container, not changing its size.</td></tr>
* <tr><td>center</td><td>11</td><td>Place the object in the center of its container in both the vertical and horizontal axis, not changing its size.</td></tr>
* <tr><td>center_horizontal</td><td>1</td><td>Place object in the horizontal center of its container, not changing its size.</td></tr>
* <tr><td>center_vertical</td><td>10</td><td>Place object in the vertical center of its container, not changing its size.</td></tr>
* <tr><td>clip_horizontal</td><td>8</td><td>Additional option that can be set to have the left and/or right edges of
* the child clipped to its container's bounds.
* The clip will be based on the horizontal gravity: a left gravity will clip the right
* edge, a right gravity will clip the left edge, and neither will clip both edges.</td></tr>
* <tr><td>clip_vertical</td><td>80</td><td>Additional option that can be set to have the top and/or bottom edges of
* the child clipped to its container's bounds.
* The clip will be based on the vertical gravity: a top gravity will clip the bottom
* edge, a bottom gravity will clip the top edge, and neither will clip both edges.</td></tr>
* <tr><td>end</td><td>800005</td><td>Push object to the end of its container, not changing its size.</td></tr>
* <tr><td>fill</td><td>77</td><td>Grow the horizontal and vertical size of the object if needed so it completely fills its container.</td></tr>
* <tr><td>fill_horizontal</td><td>7</td><td>Grow the horizontal size of the object if needed so it completely fills its container.</td></tr>
* <tr><td>fill_vertical</td><td>70</td><td>Grow the vertical size of the object if needed so it completely fills its container.</td></tr>
* <tr><td>left</td><td>3</td><td>Push object to the left of its container, not changing its size.</td></tr>
* <tr><td>right</td><td>5</td><td>Push object to the right of its container, not changing its size.</td></tr>
* <tr><td>start</td><td>800003</td><td>Push object to the beginning of its container, not changing its size.</td></tr>
* <tr><td>top</td><td>30</td><td>Push object to the top of its container, not changing its size.</td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:layout_anchorGravity
*/
public static final int CoordinatorLayout_Layout_layout_anchorGravity=2;
/**
* <p>
* @attr description
* The class name of a Behavior class defining special runtime behavior
* for this child view.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name org.nativescript.MAD2:layout_behavior
*/
public static final int CoordinatorLayout_Layout_layout_behavior=3;
/**
* <p>
* @attr description
* Specifies how this view dodges the inset edges of the CoordinatorLayout.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>all</td><td>77</td><td>Dodge all the inset edges.</td></tr>
* <tr><td>bottom</td><td>50</td><td>Dodge the bottom inset edge.</td></tr>
* <tr><td>end</td><td>800005</td><td>Dodge the end inset edge.</td></tr>
* <tr><td>left</td><td>3</td><td>Dodge the left inset edge.</td></tr>
* <tr><td>none</td><td>0</td><td>Don't dodge any edges</td></tr>
* <tr><td>right</td><td>5</td><td>Dodge the right inset edge.</td></tr>
* <tr><td>start</td><td>800003</td><td>Dodge the start inset edge.</td></tr>
* <tr><td>top</td><td>30</td><td>Dodge the top inset edge.</td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:layout_dodgeInsetEdges
*/
public static final int CoordinatorLayout_Layout_layout_dodgeInsetEdges=4;
/**
* <p>
* @attr description
* Specifies how this view insets the CoordinatorLayout and make some other views
* dodge it.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td>Inset the bottom edge.</td></tr>
* <tr><td>end</td><td>800005</td><td>Inset the end edge.</td></tr>
* <tr><td>left</td><td>3</td><td>Inset the left edge.</td></tr>
* <tr><td>none</td><td>0</td><td>Don't inset.</td></tr>
* <tr><td>right</td><td>5</td><td>Inset the right edge.</td></tr>
* <tr><td>start</td><td>800003</td><td>Inset the start edge.</td></tr>
* <tr><td>top</td><td>30</td><td>Inset the top edge.</td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:layout_insetEdge
*/
public static final int CoordinatorLayout_Layout_layout_insetEdge=5;
/**
* <p>
* @attr description
* The index of a keyline this view should position relative to.
* android:layout_gravity will affect how the view aligns to the
* specified keyline.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name org.nativescript.MAD2:layout_keyline
*/
public static final int CoordinatorLayout_Layout_layout_keyline=6;
/**
* Attributes that can be used with a DesignTheme.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #DesignTheme_bottomSheetDialogTheme org.nativescript.MAD2:bottomSheetDialogTheme}</code></td><td></td></tr>
* <tr><td><code>{@link #DesignTheme_bottomSheetStyle org.nativescript.MAD2:bottomSheetStyle}</code></td><td></td></tr>
* </table>
* @see #DesignTheme_bottomSheetDialogTheme
* @see #DesignTheme_bottomSheetStyle
*/
public static final int[] DesignTheme={
0x7f030041, 0x7f030042
};
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#bottomSheetDialogTheme}
* attribute's value can be found in the {@link #DesignTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:bottomSheetDialogTheme
*/
public static final int DesignTheme_bottomSheetDialogTheme=0;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#bottomSheetStyle}
* attribute's value can be found in the {@link #DesignTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:bottomSheetStyle
*/
public static final int DesignTheme_bottomSheetStyle=1;
/**
* Attributes that can be used with a DrawerArrowToggle.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #DrawerArrowToggle_arrowHeadLength org.nativescript.MAD2:arrowHeadLength}</code></td><td>The length of the arrow head when formed to make an arrow</td></tr>
* <tr><td><code>{@link #DrawerArrowToggle_arrowShaftLength org.nativescript.MAD2:arrowShaftLength}</code></td><td>The length of the shaft when formed to make an arrow</td></tr>
* <tr><td><code>{@link #DrawerArrowToggle_barLength org.nativescript.MAD2:barLength}</code></td><td>The length of the bars when they are parallel to each other</td></tr>
* <tr><td><code>{@link #DrawerArrowToggle_color org.nativescript.MAD2:color}</code></td><td>The drawing color for the bars</td></tr>
* <tr><td><code>{@link #DrawerArrowToggle_drawableSize org.nativescript.MAD2:drawableSize}</code></td><td>The total size of the drawable</td></tr>
* <tr><td><code>{@link #DrawerArrowToggle_gapBetweenBars org.nativescript.MAD2:gapBetweenBars}</code></td><td>The max gap between the bars when they are parallel to each other</td></tr>
* <tr><td><code>{@link #DrawerArrowToggle_spinBars org.nativescript.MAD2:spinBars}</code></td><td>Whether bars should rotate or not during transition</td></tr>
* <tr><td><code>{@link #DrawerArrowToggle_thickness org.nativescript.MAD2:thickness}</code></td><td>The thickness (stroke size) for the bar paint</td></tr>
* </table>
* @see #DrawerArrowToggle_arrowHeadLength
* @see #DrawerArrowToggle_arrowShaftLength
* @see #DrawerArrowToggle_barLength
* @see #DrawerArrowToggle_color
* @see #DrawerArrowToggle_drawableSize
* @see #DrawerArrowToggle_gapBetweenBars
* @see #DrawerArrowToggle_spinBars
* @see #DrawerArrowToggle_thickness
*/
public static final int[] DrawerArrowToggle={
0x7f030029, 0x7f03002a, 0x7f030036, 0x7f030083,
0x7f0300ae, 0x7f0300dd, 0x7f030165, 0x7f0301b5
};
/**
* <p>
* @attr description
* The length of the arrow head when formed to make an arrow
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:arrowHeadLength
*/
public static final int DrawerArrowToggle_arrowHeadLength=0;
/**
* <p>
* @attr description
* The length of the shaft when formed to make an arrow
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:arrowShaftLength
*/
public static final int DrawerArrowToggle_arrowShaftLength=1;
/**
* <p>
* @attr description
* The length of the bars when they are parallel to each other
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:barLength
*/
public static final int DrawerArrowToggle_barLength=2;
/**
* <p>
* @attr description
* The drawing color for the bars
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:color
*/
public static final int DrawerArrowToggle_color=3;
/**
* <p>
* @attr description
* The total size of the drawable
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:drawableSize
*/
public static final int DrawerArrowToggle_drawableSize=4;
/**
* <p>
* @attr description
* The max gap between the bars when they are parallel to each other
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:gapBetweenBars
*/
public static final int DrawerArrowToggle_gapBetweenBars=5;
/**
* <p>
* @attr description
* Whether bars should rotate or not during transition
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:spinBars
*/
public static final int DrawerArrowToggle_spinBars=6;
/**
* <p>
* @attr description
* The thickness (stroke size) for the bar paint
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:thickness
*/
public static final int DrawerArrowToggle_thickness=7;
/**
* Attributes that can be used with a FloatingActionButton.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #FloatingActionButton_backgroundTint org.nativescript.MAD2:backgroundTint}</code></td><td>Tint to apply to the background.</td></tr>
* <tr><td><code>{@link #FloatingActionButton_backgroundTintMode org.nativescript.MAD2:backgroundTintMode}</code></td><td>Blending mode used to apply the background tint.</td></tr>
* <tr><td><code>{@link #FloatingActionButton_borderWidth org.nativescript.MAD2:borderWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #FloatingActionButton_elevation org.nativescript.MAD2:elevation}</code></td><td>Elevation for the action bar itself</td></tr>
* <tr><td><code>{@link #FloatingActionButton_fabCustomSize org.nativescript.MAD2:fabCustomSize}</code></td><td></td></tr>
* <tr><td><code>{@link #FloatingActionButton_fabSize org.nativescript.MAD2:fabSize}</code></td><td></td></tr>
* <tr><td><code>{@link #FloatingActionButton_hideMotionSpec org.nativescript.MAD2:hideMotionSpec}</code></td><td></td></tr>
* <tr><td><code>{@link #FloatingActionButton_hoveredFocusedTranslationZ org.nativescript.MAD2:hoveredFocusedTranslationZ}</code></td><td></td></tr>
* <tr><td><code>{@link #FloatingActionButton_maxImageSize org.nativescript.MAD2:maxImageSize}</code></td><td></td></tr>
* <tr><td><code>{@link #FloatingActionButton_pressedTranslationZ org.nativescript.MAD2:pressedTranslationZ}</code></td><td></td></tr>
* <tr><td><code>{@link #FloatingActionButton_rippleColor org.nativescript.MAD2:rippleColor}</code></td><td></td></tr>
* <tr><td><code>{@link #FloatingActionButton_showMotionSpec org.nativescript.MAD2:showMotionSpec}</code></td><td></td></tr>
* <tr><td><code>{@link #FloatingActionButton_useCompatPadding org.nativescript.MAD2:useCompatPadding}</code></td><td></td></tr>
* </table>
* @see #FloatingActionButton_backgroundTint
* @see #FloatingActionButton_backgroundTintMode
* @see #FloatingActionButton_borderWidth
* @see #FloatingActionButton_elevation
* @see #FloatingActionButton_fabCustomSize
* @see #FloatingActionButton_fabSize
* @see #FloatingActionButton_hideMotionSpec
* @see #FloatingActionButton_hoveredFocusedTranslationZ
* @see #FloatingActionButton_maxImageSize
* @see #FloatingActionButton_pressedTranslationZ
* @see #FloatingActionButton_rippleColor
* @see #FloatingActionButton_showMotionSpec
* @see #FloatingActionButton_useCompatPadding
*/
public static final int[] FloatingActionButton={
0x7f030034, 0x7f030035, 0x7f03003d, 0x7f0300b5,
0x7f0300c7, 0x7f0300c8, 0x7f0300e4, 0x7f0300ec,
0x7f03012a, 0x7f030144, 0x7f03014f, 0x7f03015c,
0x7f0301d3
};
/**
* <p>
* @attr description
* Tint to apply to the background.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:backgroundTint
*/
public static final int FloatingActionButton_backgroundTint=0;
/**
* <p>
* @attr description
* Blending mode used to apply the background tint.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the
* result to valid color values. Saturate(S + D)</td></tr>
* <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of
* the tint. [Sa * Da, Sc * Dc]</td></tr>
* <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr>
* <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha
* channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr>
* <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s
* color channels are thrown out. [Sa * Da, Sc * Da]</td></tr>
* <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable.
* [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:backgroundTintMode
*/
public static final int FloatingActionButton_backgroundTintMode=1;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#borderWidth}
* attribute's value can be found in the {@link #FloatingActionButton} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:borderWidth
*/
public static final int FloatingActionButton_borderWidth=2;
/**
* <p>
* @attr description
* Elevation for the action bar itself
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:elevation
*/
public static final int FloatingActionButton_elevation=3;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#fabCustomSize}
* attribute's value can be found in the {@link #FloatingActionButton} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:fabCustomSize
*/
public static final int FloatingActionButton_fabCustomSize=4;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#fabSize}
* attribute's value can be found in the {@link #FloatingActionButton} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>auto</td><td>ffffffff</td><td></td></tr>
* <tr><td>mini</td><td>1</td><td></td></tr>
* <tr><td>normal</td><td>0</td><td></td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:fabSize
*/
public static final int FloatingActionButton_fabSize=5;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#hideMotionSpec}
* attribute's value can be found in the {@link #FloatingActionButton} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:hideMotionSpec
*/
public static final int FloatingActionButton_hideMotionSpec=6;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#hoveredFocusedTranslationZ}
* attribute's value can be found in the {@link #FloatingActionButton} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:hoveredFocusedTranslationZ
*/
public static final int FloatingActionButton_hoveredFocusedTranslationZ=7;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#maxImageSize}
* attribute's value can be found in the {@link #FloatingActionButton} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:maxImageSize
*/
public static final int FloatingActionButton_maxImageSize=8;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#pressedTranslationZ}
* attribute's value can be found in the {@link #FloatingActionButton} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:pressedTranslationZ
*/
public static final int FloatingActionButton_pressedTranslationZ=9;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#rippleColor}
* attribute's value can be found in the {@link #FloatingActionButton} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:rippleColor
*/
public static final int FloatingActionButton_rippleColor=10;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#showMotionSpec}
* attribute's value can be found in the {@link #FloatingActionButton} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:showMotionSpec
*/
public static final int FloatingActionButton_showMotionSpec=11;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#useCompatPadding}
* attribute's value can be found in the {@link #FloatingActionButton} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:useCompatPadding
*/
public static final int FloatingActionButton_useCompatPadding=12;
/**
* Attributes that can be used with a FloatingActionButton_Behavior_Layout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #FloatingActionButton_Behavior_Layout_behavior_autoHide org.nativescript.MAD2:behavior_autoHide}</code></td><td></td></tr>
* </table>
* @see #FloatingActionButton_Behavior_Layout_behavior_autoHide
*/
public static final int[] FloatingActionButton_Behavior_Layout={
0x7f030037
};
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#behavior_autoHide}
* attribute's value can be found in the {@link #FloatingActionButton_Behavior_Layout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:behavior_autoHide
*/
public static final int FloatingActionButton_Behavior_Layout_behavior_autoHide=0;
/**
* Attributes that can be used with a FlowLayout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #FlowLayout_itemSpacing org.nativescript.MAD2:itemSpacing}</code></td><td></td></tr>
* <tr><td><code>{@link #FlowLayout_lineSpacing org.nativescript.MAD2:lineSpacing}</code></td><td></td></tr>
* </table>
* @see #FlowLayout_itemSpacing
* @see #FlowLayout_lineSpacing
*/
public static final int[] FlowLayout={
0x7f030102, 0x7f030118
};
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#itemSpacing}
* attribute's value can be found in the {@link #FlowLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:itemSpacing
*/
public static final int FlowLayout_itemSpacing=0;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#lineSpacing}
* attribute's value can be found in the {@link #FlowLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:lineSpacing
*/
public static final int FlowLayout_lineSpacing=1;
/**
* Attributes that can be used with a FontFamily.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #FontFamily_fontProviderAuthority org.nativescript.MAD2:fontProviderAuthority}</code></td><td>The authority of the Font Provider to be used for the request.</td></tr>
* <tr><td><code>{@link #FontFamily_fontProviderCerts org.nativescript.MAD2:fontProviderCerts}</code></td><td>The sets of hashes for the certificates the provider should be signed with.</td></tr>
* <tr><td><code>{@link #FontFamily_fontProviderFetchStrategy org.nativescript.MAD2:fontProviderFetchStrategy}</code></td><td>The strategy to be used when fetching font data from a font provider in XML layouts.</td></tr>
* <tr><td><code>{@link #FontFamily_fontProviderFetchTimeout org.nativescript.MAD2:fontProviderFetchTimeout}</code></td><td>The length of the timeout during fetching.</td></tr>
* <tr><td><code>{@link #FontFamily_fontProviderPackage org.nativescript.MAD2:fontProviderPackage}</code></td><td>The package for the Font Provider to be used for the request.</td></tr>
* <tr><td><code>{@link #FontFamily_fontProviderQuery org.nativescript.MAD2:fontProviderQuery}</code></td><td>The query to be sent over to the provider.</td></tr>
* </table>
* @see #FontFamily_fontProviderAuthority
* @see #FontFamily_fontProviderCerts
* @see #FontFamily_fontProviderFetchStrategy
* @see #FontFamily_fontProviderFetchTimeout
* @see #FontFamily_fontProviderPackage
* @see #FontFamily_fontProviderQuery
*/
public static final int[] FontFamily={
0x7f0300d3, 0x7f0300d4, 0x7f0300d5, 0x7f0300d6,
0x7f0300d7, 0x7f0300d8
};
/**
* <p>
* @attr description
* The authority of the Font Provider to be used for the request.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name org.nativescript.MAD2:fontProviderAuthority
*/
public static final int FontFamily_fontProviderAuthority=0;
/**
* <p>
* @attr description
* The sets of hashes for the certificates the provider should be signed with. This is
* used to verify the identity of the provider, and is only required if the provider is not
* part of the system image. This value may point to one list or a list of lists, where each
* individual list represents one collection of signature hashes. Refer to your font provider's
* documentation for these values.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:fontProviderCerts
*/
public static final int FontFamily_fontProviderCerts=1;
/**
* <p>
* @attr description
* The strategy to be used when fetching font data from a font provider in XML layouts.
* This attribute is ignored when the resource is loaded from code, as it is equivalent to the
* choice of API between {@link
* androidx.core.content.res.ResourcesCompat#getFont(Context, int)} (blocking) and
* {@link
* androidx.core.content.res.ResourcesCompat#getFont(Context, int, FontCallback, Handler)}
* (async).
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>async</td><td>1</td><td>The async font fetch works as follows.
* First, check the local cache, then if the requeted font is not cached, trigger a
* request the font and continue with layout inflation. Once the font fetch succeeds, the
* target text view will be refreshed with the downloaded font data. The
* fontProviderFetchTimeout will be ignored if async loading is specified.</td></tr>
* <tr><td>blocking</td><td>0</td><td>The blocking font fetch works as follows.
* First, check the local cache, then if the requested font is not cached, request the
* font from the provider and wait until it is finished. You can change the length of
* the timeout by modifying fontProviderFetchTimeout. If the timeout happens, the
* default typeface will be used instead.</td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:fontProviderFetchStrategy
*/
public static final int FontFamily_fontProviderFetchStrategy=2;
/**
* <p>
* @attr description
* The length of the timeout during fetching.
*
* <p>May be an integer value, such as "<code>100</code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>forever</td><td>ffffffff</td><td>A special value for the timeout. In this case, the blocking font fetching will not
* timeout and wait until a reply is received from the font provider.</td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:fontProviderFetchTimeout
*/
public static final int FontFamily_fontProviderFetchTimeout=3;
/**
* <p>
* @attr description
* The package for the Font Provider to be used for the request. This is used to verify
* the identity of the provider.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name org.nativescript.MAD2:fontProviderPackage
*/
public static final int FontFamily_fontProviderPackage=4;
/**
* <p>
* @attr description
* The query to be sent over to the provider. Refer to your font provider's documentation
* on the format of this string.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name org.nativescript.MAD2:fontProviderQuery
*/
public static final int FontFamily_fontProviderQuery=5;
/**
* Attributes that can be used with a FontFamilyFont.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #FontFamilyFont_android_font android:font}</code></td><td></td></tr>
* <tr><td><code>{@link #FontFamilyFont_android_fontWeight android:fontWeight}</code></td><td></td></tr>
* <tr><td><code>{@link #FontFamilyFont_android_fontStyle android:fontStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #FontFamilyFont_android_ttcIndex android:ttcIndex}</code></td><td></td></tr>
* <tr><td><code>{@link #FontFamilyFont_android_fontVariationSettings android:fontVariationSettings}</code></td><td></td></tr>
* <tr><td><code>{@link #FontFamilyFont_font org.nativescript.MAD2:font}</code></td><td>The reference to the font file to be used.</td></tr>
* <tr><td><code>{@link #FontFamilyFont_fontStyle org.nativescript.MAD2:fontStyle}</code></td><td>The style of the given font file.</td></tr>
* <tr><td><code>{@link #FontFamilyFont_fontVariationSettings org.nativescript.MAD2:fontVariationSettings}</code></td><td>The variation settings to be applied to the font.</td></tr>
* <tr><td><code>{@link #FontFamilyFont_fontWeight org.nativescript.MAD2:fontWeight}</code></td><td>The weight of the given font file.</td></tr>
* <tr><td><code>{@link #FontFamilyFont_ttcIndex org.nativescript.MAD2:ttcIndex}</code></td><td>The index of the font in the tcc font file.</td></tr>
* </table>
* @see #FontFamilyFont_android_font
* @see #FontFamilyFont_android_fontWeight
* @see #FontFamilyFont_android_fontStyle
* @see #FontFamilyFont_android_ttcIndex
* @see #FontFamilyFont_android_fontVariationSettings
* @see #FontFamilyFont_font
* @see #FontFamilyFont_fontStyle
* @see #FontFamilyFont_fontVariationSettings
* @see #FontFamilyFont_fontWeight
* @see #FontFamilyFont_ttcIndex
*/
public static final int[] FontFamilyFont={
0x01010532, 0x01010533, 0x0101053f, 0x0101056f,
0x01010570, 0x7f0300d1, 0x7f0300d9, 0x7f0300da,
0x7f0300db, 0x7f0301d2
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#font}
* attribute's value can be found in the {@link #FontFamilyFont} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:font
*/
public static final int FontFamilyFont_android_font=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#fontWeight}
* attribute's value can be found in the {@link #FontFamilyFont} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name android:fontWeight
*/
public static final int FontFamilyFont_android_fontWeight=1;
/**
* <p>
* @attr description
* References to the framework attrs
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>italic</td><td>1</td><td></td></tr>
* <tr><td>normal</td><td>0</td><td></td></tr>
* </table>
*
* @attr name android:fontStyle
*/
public static final int FontFamilyFont_android_fontStyle=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#ttcIndex}
* attribute's value can be found in the {@link #FontFamilyFont} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name android:ttcIndex
*/
public static final int FontFamilyFont_android_ttcIndex=3;
/**
* <p>This symbol is the offset where the {@link android.R.attr#fontVariationSettings}
* attribute's value can be found in the {@link #FontFamilyFont} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:fontVariationSettings
*/
public static final int FontFamilyFont_android_fontVariationSettings=4;
/**
* <p>
* @attr description
* The reference to the font file to be used. This should be a file in the res/font folder
* and should therefore have an R reference value. E.g. @font/myfont
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:font
*/
public static final int FontFamilyFont_font=5;
/**
* <p>
* @attr description
* The style of the given font file. This will be used when the font is being loaded into
* the font stack and will override any style information in the font's header tables. If
* unspecified, the value in the font's header tables will be used.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>italic</td><td>1</td><td></td></tr>
* <tr><td>normal</td><td>0</td><td></td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:fontStyle
*/
public static final int FontFamilyFont_fontStyle=6;
/**
* <p>
* @attr description
* The variation settings to be applied to the font. The string should be in the following
* format: "'tag1' value1, 'tag2' value2, ...". If the default variation settings should be
* used, or the font used does not support variation settings, this attribute needs not be
* specified.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name org.nativescript.MAD2:fontVariationSettings
*/
public static final int FontFamilyFont_fontVariationSettings=7;
/**
* <p>
* @attr description
* The weight of the given font file. This will be used when the font is being loaded into
* the font stack and will override any weight information in the font's header tables. Must
* be a positive number, a multiple of 100, and between 100 and 900, inclusive. The most
* common values are 400 for regular weight and 700 for bold weight. If unspecified, the value
* in the font's header tables will be used.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name org.nativescript.MAD2:fontWeight
*/
public static final int FontFamilyFont_fontWeight=8;
/**
* <p>
* @attr description
* The index of the font in the tcc font file. If the font file referenced is not in the
* tcc format, this attribute needs not be specified.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name org.nativescript.MAD2:ttcIndex
*/
public static final int FontFamilyFont_ttcIndex=9;
/**
* Attributes that can be used with a ForegroundLinearLayout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ForegroundLinearLayout_android_foreground android:foreground}</code></td><td></td></tr>
* <tr><td><code>{@link #ForegroundLinearLayout_android_foregroundGravity android:foregroundGravity}</code></td><td></td></tr>
* <tr><td><code>{@link #ForegroundLinearLayout_foregroundInsidePadding org.nativescript.MAD2:foregroundInsidePadding}</code></td><td></td></tr>
* </table>
* @see #ForegroundLinearLayout_android_foreground
* @see #ForegroundLinearLayout_android_foregroundGravity
* @see #ForegroundLinearLayout_foregroundInsidePadding
*/
public static final int[] ForegroundLinearLayout={
0x01010109, 0x01010200, 0x7f0300dc
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#foreground}
* attribute's value can be found in the {@link #ForegroundLinearLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:foreground
*/
public static final int ForegroundLinearLayout_android_foreground=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#foregroundGravity}
* attribute's value can be found in the {@link #ForegroundLinearLayout} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>clip_horizontal</td><td>8</td><td></td></tr>
* <tr><td>clip_vertical</td><td>80</td><td></td></tr>
* <tr><td>fill</td><td>77</td><td></td></tr>
* <tr><td>fill_horizontal</td><td>7</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name android:foregroundGravity
*/
public static final int ForegroundLinearLayout_android_foregroundGravity=1;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#foregroundInsidePadding}
* attribute's value can be found in the {@link #ForegroundLinearLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:foregroundInsidePadding
*/
public static final int ForegroundLinearLayout_foregroundInsidePadding=2;
/**
* Attributes that can be used with a GradientColor.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #GradientColor_android_startColor android:startColor}</code></td><td></td></tr>
* <tr><td><code>{@link #GradientColor_android_endColor android:endColor}</code></td><td></td></tr>
* <tr><td><code>{@link #GradientColor_android_type android:type}</code></td><td></td></tr>
* <tr><td><code>{@link #GradientColor_android_centerX android:centerX}</code></td><td></td></tr>
* <tr><td><code>{@link #GradientColor_android_centerY android:centerY}</code></td><td></td></tr>
* <tr><td><code>{@link #GradientColor_android_gradientRadius android:gradientRadius}</code></td><td></td></tr>
* <tr><td><code>{@link #GradientColor_android_tileMode android:tileMode}</code></td><td></td></tr>
* <tr><td><code>{@link #GradientColor_android_centerColor android:centerColor}</code></td><td></td></tr>
* <tr><td><code>{@link #GradientColor_android_startX android:startX}</code></td><td></td></tr>
* <tr><td><code>{@link #GradientColor_android_startY android:startY}</code></td><td></td></tr>
* <tr><td><code>{@link #GradientColor_android_endX android:endX}</code></td><td></td></tr>
* <tr><td><code>{@link #GradientColor_android_endY android:endY}</code></td><td></td></tr>
* </table>
* @see #GradientColor_android_startColor
* @see #GradientColor_android_endColor
* @see #GradientColor_android_type
* @see #GradientColor_android_centerX
* @see #GradientColor_android_centerY
* @see #GradientColor_android_gradientRadius
* @see #GradientColor_android_tileMode
* @see #GradientColor_android_centerColor
* @see #GradientColor_android_startX
* @see #GradientColor_android_startY
* @see #GradientColor_android_endX
* @see #GradientColor_android_endY
*/
public static final int[] GradientColor={
0x0101019d, 0x0101019e, 0x010101a1, 0x010101a2,
0x010101a3, 0x010101a4, 0x01010201, 0x0101020b,
0x01010510, 0x01010511, 0x01010512, 0x01010513
};
/**
* <p>
* @attr description
* Start color of the gradient.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:startColor
*/
public static final int GradientColor_android_startColor=0;
/**
* <p>
* @attr description
* End color of the gradient.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:endColor
*/
public static final int GradientColor_android_endColor=1;
/**
* <p>
* @attr description
* Type of gradient. The default type is linear.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>linear</td><td>0</td><td></td></tr>
* <tr><td>radial</td><td>1</td><td></td></tr>
* <tr><td>sweep</td><td>2</td><td></td></tr>
* </table>
*
* @attr name android:type
*/
public static final int GradientColor_android_type=2;
/**
* <p>
* @attr description
* X coordinate of the center of the gradient within the path.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*
* @attr name android:centerX
*/
public static final int GradientColor_android_centerX=3;
/**
* <p>
* @attr description
* Y coordinate of the center of the gradient within the path.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*
* @attr name android:centerY
*/
public static final int GradientColor_android_centerY=4;
/**
* <p>
* @attr description
* Radius of the gradient, used only with radial gradient.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*
* @attr name android:gradientRadius
*/
public static final int GradientColor_android_gradientRadius=5;
/**
* <p>
* @attr description
* Defines the tile mode of the gradient. SweepGradient doesn't support tiling.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>clamp</td><td>0</td><td></td></tr>
* <tr><td>disabled</td><td>ffffffff</td><td></td></tr>
* <tr><td>mirror</td><td>2</td><td></td></tr>
* <tr><td>repeat</td><td>1</td><td></td></tr>
* </table>
*
* @attr name android:tileMode
*/
public static final int GradientColor_android_tileMode=6;
/**
* <p>
* @attr description
* Optional center color.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:centerColor
*/
public static final int GradientColor_android_centerColor=7;
/**
* <p>
* @attr description
* X coordinate of the start point origin of the gradient.
* Defined in same coordinates as the path itself
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:startX
*/
public static final int GradientColor_android_startX=8;
/**
* <p>
* @attr description
* Y coordinate of the start point of the gradient within the shape.
* Defined in same coordinates as the path itself
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:startY
*/
public static final int GradientColor_android_startY=9;
/**
* <p>
* @attr description
* X coordinate of the end point origin of the gradient.
* Defined in same coordinates as the path itself
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:endX
*/
public static final int GradientColor_android_endX=10;
/**
* <p>
* @attr description
* Y coordinate of the end point of the gradient within the shape.
* Defined in same coordinates as the path itself
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:endY
*/
public static final int GradientColor_android_endY=11;
/**
* Attributes that can be used with a GradientColorItem.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #GradientColorItem_android_color android:color}</code></td><td></td></tr>
* <tr><td><code>{@link #GradientColorItem_android_offset android:offset}</code></td><td></td></tr>
* </table>
* @see #GradientColorItem_android_color
* @see #GradientColorItem_android_offset
*/
public static final int[] GradientColorItem={
0x010101a5, 0x01010514
};
/**
* <p>
* @attr description
* The current color for the offset inside the gradient.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:color
*/
public static final int GradientColorItem_android_color=0;
/**
* <p>
* @attr description
* The offset (or ratio) of this current color item inside the gradient.
* The value is only meaningful when it is between 0 and 1.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:offset
*/
public static final int GradientColorItem_android_offset=1;
/**
* Attributes that can be used with a LinearLayoutCompat.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #LinearLayoutCompat_android_gravity android:gravity}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_android_orientation android:orientation}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_android_baselineAligned android:baselineAligned}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_android_baselineAlignedChildIndex android:baselineAlignedChildIndex}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_android_weightSum android:weightSum}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_divider org.nativescript.MAD2:divider}</code></td><td>Specifies the drawable used for item dividers.</td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_dividerPadding org.nativescript.MAD2:dividerPadding}</code></td><td>Size of padding on either end of a divider.</td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_measureWithLargestChild org.nativescript.MAD2:measureWithLargestChild}</code></td><td>When set to true, all children with a weight will be considered having
* the minimum size of the largest child.</td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_showDividers org.nativescript.MAD2:showDividers}</code></td><td>Setting for which dividers to show.</td></tr>
* </table>
* @see #LinearLayoutCompat_android_gravity
* @see #LinearLayoutCompat_android_orientation
* @see #LinearLayoutCompat_android_baselineAligned
* @see #LinearLayoutCompat_android_baselineAlignedChildIndex
* @see #LinearLayoutCompat_android_weightSum
* @see #LinearLayoutCompat_divider
* @see #LinearLayoutCompat_dividerPadding
* @see #LinearLayoutCompat_measureWithLargestChild
* @see #LinearLayoutCompat_showDividers
*/
public static final int[] LinearLayoutCompat={
0x010100af, 0x010100c4, 0x01010126, 0x01010127,
0x01010128, 0x7f0300aa, 0x7f0300ac, 0x7f03012b,
0x7f03015b
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#gravity}
* attribute's value can be found in the {@link #LinearLayoutCompat} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>clip_horizontal</td><td>8</td><td></td></tr>
* <tr><td>clip_vertical</td><td>80</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>fill</td><td>77</td><td></td></tr>
* <tr><td>fill_horizontal</td><td>7</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name android:gravity
*/
public static final int LinearLayoutCompat_android_gravity=0;
/**
* <p>
* @attr description
* Should the layout be a column or a row? Use "horizontal"
* for a row, "vertical" for a column. The default is
* horizontal.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>horizontal</td><td>0</td><td></td></tr>
* <tr><td>vertical</td><td>1</td><td></td></tr>
* </table>
*
* @attr name android:orientation
*/
public static final int LinearLayoutCompat_android_orientation=1;
/**
* <p>
* @attr description
* When set to false, prevents the layout from aligning its children's
* baselines. This attribute is particularly useful when the children
* use different values for gravity. The default value is true.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:baselineAligned
*/
public static final int LinearLayoutCompat_android_baselineAligned=2;
/**
* <p>
* @attr description
* When a linear layout is part of another layout that is baseline
* aligned, it can specify which of its children to baseline align to
* (that is, which child TextView).
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name android:baselineAlignedChildIndex
*/
public static final int LinearLayoutCompat_android_baselineAlignedChildIndex=3;
/**
* <p>
* @attr description
* Defines the maximum weight sum. If unspecified, the sum is computed
* by adding the layout_weight of all of the children. This can be
* used for instance to give a single child 50% of the total available
* space by giving it a layout_weight of 0.5 and setting the weightSum
* to 1.0.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:weightSum
*/
public static final int LinearLayoutCompat_android_weightSum=4;
/**
* <p>
* @attr description
* Drawable to use as a vertical divider between buttons.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:divider
*/
public static final int LinearLayoutCompat_divider=5;
/**
* <p>
* @attr description
* Size of padding on either end of a divider.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:dividerPadding
*/
public static final int LinearLayoutCompat_dividerPadding=6;
/**
* <p>
* @attr description
* When set to true, all children with a weight will be considered having
* the minimum size of the largest child. If false, all children are
* measured normally.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:measureWithLargestChild
*/
public static final int LinearLayoutCompat_measureWithLargestChild=7;
/**
* <p>
* @attr description
* Setting for which dividers to show.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>beginning</td><td>1</td><td></td></tr>
* <tr><td>end</td><td>4</td><td></td></tr>
* <tr><td>middle</td><td>2</td><td></td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:showDividers
*/
public static final int LinearLayoutCompat_showDividers=8;
/**
* Attributes that can be used with a LinearLayoutCompat_Layout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_width android:layout_width}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_height android:layout_height}</code></td><td></td></tr>
* <tr><td><code>{@link #LinearLayoutCompat_Layout_android_layout_weight android:layout_weight}</code></td><td></td></tr>
* </table>
* @see #LinearLayoutCompat_Layout_android_layout_gravity
* @see #LinearLayoutCompat_Layout_android_layout_width
* @see #LinearLayoutCompat_Layout_android_layout_height
* @see #LinearLayoutCompat_Layout_android_layout_weight
*/
public static final int[] LinearLayoutCompat_Layout={
0x010100b3, 0x010100f4, 0x010100f5, 0x01010181
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
* attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>clip_horizontal</td><td>8</td><td></td></tr>
* <tr><td>clip_vertical</td><td>80</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>fill</td><td>77</td><td></td></tr>
* <tr><td>fill_horizontal</td><td>7</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name android:layout_gravity
*/
public static final int LinearLayoutCompat_Layout_android_layout_gravity=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_width}
* attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>fill_parent</td><td>ffffffff</td><td></td></tr>
* <tr><td>match_parent</td><td>ffffffff</td><td></td></tr>
* <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr>
* </table>
*
* @attr name android:layout_width
*/
public static final int LinearLayoutCompat_Layout_android_layout_width=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_height}
* attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>fill_parent</td><td>ffffffff</td><td></td></tr>
* <tr><td>match_parent</td><td>ffffffff</td><td></td></tr>
* <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr>
* </table>
*
* @attr name android:layout_height
*/
public static final int LinearLayoutCompat_Layout_android_layout_height=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout_weight}
* attribute's value can be found in the {@link #LinearLayoutCompat_Layout} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:layout_weight
*/
public static final int LinearLayoutCompat_Layout_android_layout_weight=3;
/**
* Attributes that can be used with a ListPopupWindow.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ListPopupWindow_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr>
* <tr><td><code>{@link #ListPopupWindow_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr>
* </table>
* @see #ListPopupWindow_android_dropDownHorizontalOffset
* @see #ListPopupWindow_android_dropDownVerticalOffset
*/
public static final int[] ListPopupWindow={
0x010102ac, 0x010102ad
};
/**
* <p>
* @attr description
* Amount of pixels by which the drop down should be offset horizontally.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:dropDownHorizontalOffset
*/
public static final int ListPopupWindow_android_dropDownHorizontalOffset=0;
/**
* <p>
* @attr description
* Amount of pixels by which the drop down should be offset vertically.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:dropDownVerticalOffset
*/
public static final int ListPopupWindow_android_dropDownVerticalOffset=1;
/**
* Attributes that can be used with a MaterialButton.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #MaterialButton_android_insetLeft android:insetLeft}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialButton_android_insetRight android:insetRight}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialButton_android_insetTop android:insetTop}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialButton_android_insetBottom android:insetBottom}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialButton_backgroundTint org.nativescript.MAD2:backgroundTint}</code></td><td>Tint to apply to the background.</td></tr>
* <tr><td><code>{@link #MaterialButton_backgroundTintMode org.nativescript.MAD2:backgroundTintMode}</code></td><td>Blending mode used to apply the background tint.</td></tr>
* <tr><td><code>{@link #MaterialButton_cornerRadius org.nativescript.MAD2:cornerRadius}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialButton_icon org.nativescript.MAD2:icon}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialButton_iconGravity org.nativescript.MAD2:iconGravity}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialButton_iconPadding org.nativescript.MAD2:iconPadding}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialButton_iconSize org.nativescript.MAD2:iconSize}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialButton_iconTint org.nativescript.MAD2:iconTint}</code></td><td>Tint to apply to the icon.</td></tr>
* <tr><td><code>{@link #MaterialButton_iconTintMode org.nativescript.MAD2:iconTintMode}</code></td><td>Blending mode used to apply the icon tint.</td></tr>
* <tr><td><code>{@link #MaterialButton_rippleColor org.nativescript.MAD2:rippleColor}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialButton_strokeColor org.nativescript.MAD2:strokeColor}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialButton_strokeWidth org.nativescript.MAD2:strokeWidth}</code></td><td></td></tr>
* </table>
* @see #MaterialButton_android_insetLeft
* @see #MaterialButton_android_insetRight
* @see #MaterialButton_android_insetTop
* @see #MaterialButton_android_insetBottom
* @see #MaterialButton_backgroundTint
* @see #MaterialButton_backgroundTintMode
* @see #MaterialButton_cornerRadius
* @see #MaterialButton_icon
* @see #MaterialButton_iconGravity
* @see #MaterialButton_iconPadding
* @see #MaterialButton_iconSize
* @see #MaterialButton_iconTint
* @see #MaterialButton_iconTintMode
* @see #MaterialButton_rippleColor
* @see #MaterialButton_strokeColor
* @see #MaterialButton_strokeWidth
*/
public static final int[] MaterialButton={
0x010101b7, 0x010101b8, 0x010101b9, 0x010101ba,
0x7f030034, 0x7f030035, 0x7f03009f, 0x7f0300ed,
0x7f0300ef, 0x7f0300f0, 0x7f0300f1, 0x7f0300f3,
0x7f0300f4, 0x7f03014f, 0x7f030172, 0x7f030173
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#insetLeft}
* attribute's value can be found in the {@link #MaterialButton} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*
* @attr name android:insetLeft
*/
public static final int MaterialButton_android_insetLeft=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#insetRight}
* attribute's value can be found in the {@link #MaterialButton} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*
* @attr name android:insetRight
*/
public static final int MaterialButton_android_insetRight=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#insetTop}
* attribute's value can be found in the {@link #MaterialButton} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*
* @attr name android:insetTop
*/
public static final int MaterialButton_android_insetTop=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#insetBottom}
* attribute's value can be found in the {@link #MaterialButton} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*
* @attr name android:insetBottom
*/
public static final int MaterialButton_android_insetBottom=3;
/**
* <p>
* @attr description
* Tint to apply to the background.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:backgroundTint
*/
public static final int MaterialButton_backgroundTint=4;
/**
* <p>
* @attr description
* Blending mode used to apply the background tint.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the
* result to valid color values. Saturate(S + D)</td></tr>
* <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of
* the tint. [Sa * Da, Sc * Dc]</td></tr>
* <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr>
* <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha
* channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr>
* <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s
* color channels are thrown out. [Sa * Da, Sc * Da]</td></tr>
* <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable.
* [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:backgroundTintMode
*/
public static final int MaterialButton_backgroundTintMode=5;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#cornerRadius}
* attribute's value can be found in the {@link #MaterialButton} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:cornerRadius
*/
public static final int MaterialButton_cornerRadius=6;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#icon}
* attribute's value can be found in the {@link #MaterialButton} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:icon
*/
public static final int MaterialButton_icon=7;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#iconGravity}
* attribute's value can be found in the {@link #MaterialButton} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>start</td><td>1</td><td></td></tr>
* <tr><td>textStart</td><td>2</td><td></td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:iconGravity
*/
public static final int MaterialButton_iconGravity=8;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#iconPadding}
* attribute's value can be found in the {@link #MaterialButton} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:iconPadding
*/
public static final int MaterialButton_iconPadding=9;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#iconSize}
* attribute's value can be found in the {@link #MaterialButton} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:iconSize
*/
public static final int MaterialButton_iconSize=10;
/**
* <p>
* @attr description
* Tint to apply to the icon.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:iconTint
*/
public static final int MaterialButton_iconTint=11;
/**
* <p>
* @attr description
* Blending mode used to apply the icon tint.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the
* result to valid color values. Saturate(S + D)</td></tr>
* <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the icon with those of
* the tint. [Sa * Da, Sc * Dc]</td></tr>
* <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr>
* <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the icon, but with the icon’s alpha
* channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr>
* <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the icon. The icon’s
* color channels are thrown out. [Sa * Da, Sc * Da]</td></tr>
* <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the icon.
* [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:iconTintMode
*/
public static final int MaterialButton_iconTintMode=12;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#rippleColor}
* attribute's value can be found in the {@link #MaterialButton} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:rippleColor
*/
public static final int MaterialButton_rippleColor=13;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#strokeColor}
* attribute's value can be found in the {@link #MaterialButton} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:strokeColor
*/
public static final int MaterialButton_strokeColor=14;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#strokeWidth}
* attribute's value can be found in the {@link #MaterialButton} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:strokeWidth
*/
public static final int MaterialButton_strokeWidth=15;
/**
* Attributes that can be used with a MaterialCardView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #MaterialCardView_strokeColor org.nativescript.MAD2:strokeColor}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialCardView_strokeWidth org.nativescript.MAD2:strokeWidth}</code></td><td></td></tr>
* </table>
* @see #MaterialCardView_strokeColor
* @see #MaterialCardView_strokeWidth
*/
public static final int[] MaterialCardView={
0x7f030172, 0x7f030173
};
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#strokeColor}
* attribute's value can be found in the {@link #MaterialCardView} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:strokeColor
*/
public static final int MaterialCardView_strokeColor=0;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#strokeWidth}
* attribute's value can be found in the {@link #MaterialCardView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:strokeWidth
*/
public static final int MaterialCardView_strokeWidth=1;
/**
* Attributes that can be used with a MaterialComponentsTheme.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #MaterialComponentsTheme_bottomSheetDialogTheme org.nativescript.MAD2:bottomSheetDialogTheme}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialComponentsTheme_bottomSheetStyle org.nativescript.MAD2:bottomSheetStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialComponentsTheme_chipGroupStyle org.nativescript.MAD2:chipGroupStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialComponentsTheme_chipStandaloneStyle org.nativescript.MAD2:chipStandaloneStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialComponentsTheme_chipStyle org.nativescript.MAD2:chipStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialComponentsTheme_colorAccent org.nativescript.MAD2:colorAccent}</code></td><td>Bright complement to the primary branding color.</td></tr>
* <tr><td><code>{@link #MaterialComponentsTheme_colorBackgroundFloating org.nativescript.MAD2:colorBackgroundFloating}</code></td><td>Default color of background imagery for floating components, ex.</td></tr>
* <tr><td><code>{@link #MaterialComponentsTheme_colorPrimary org.nativescript.MAD2:colorPrimary}</code></td><td>The primary branding color for the app.</td></tr>
* <tr><td><code>{@link #MaterialComponentsTheme_colorPrimaryDark org.nativescript.MAD2:colorPrimaryDark}</code></td><td>Dark variant of the primary branding color.</td></tr>
* <tr><td><code>{@link #MaterialComponentsTheme_colorSecondary org.nativescript.MAD2:colorSecondary}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialComponentsTheme_editTextStyle org.nativescript.MAD2:editTextStyle}</code></td><td>Default EditText style.</td></tr>
* <tr><td><code>{@link #MaterialComponentsTheme_floatingActionButtonStyle org.nativescript.MAD2:floatingActionButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialComponentsTheme_materialButtonStyle org.nativescript.MAD2:materialButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialComponentsTheme_materialCardViewStyle org.nativescript.MAD2:materialCardViewStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialComponentsTheme_navigationViewStyle org.nativescript.MAD2:navigationViewStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialComponentsTheme_scrimBackground org.nativescript.MAD2:scrimBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialComponentsTheme_snackbarButtonStyle org.nativescript.MAD2:snackbarButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialComponentsTheme_tabStyle org.nativescript.MAD2:tabStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceBody1 org.nativescript.MAD2:textAppearanceBody1}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceBody2 org.nativescript.MAD2:textAppearanceBody2}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceButton org.nativescript.MAD2:textAppearanceButton}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceCaption org.nativescript.MAD2:textAppearanceCaption}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceHeadline1 org.nativescript.MAD2:textAppearanceHeadline1}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceHeadline2 org.nativescript.MAD2:textAppearanceHeadline2}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceHeadline3 org.nativescript.MAD2:textAppearanceHeadline3}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceHeadline4 org.nativescript.MAD2:textAppearanceHeadline4}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceHeadline5 org.nativescript.MAD2:textAppearanceHeadline5}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceHeadline6 org.nativescript.MAD2:textAppearanceHeadline6}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceOverline org.nativescript.MAD2:textAppearanceOverline}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceSubtitle1 org.nativescript.MAD2:textAppearanceSubtitle1}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialComponentsTheme_textAppearanceSubtitle2 org.nativescript.MAD2:textAppearanceSubtitle2}</code></td><td></td></tr>
* <tr><td><code>{@link #MaterialComponentsTheme_textInputStyle org.nativescript.MAD2:textInputStyle}</code></td><td></td></tr>
* </table>
* @see #MaterialComponentsTheme_bottomSheetDialogTheme
* @see #MaterialComponentsTheme_bottomSheetStyle
* @see #MaterialComponentsTheme_chipGroupStyle
* @see #MaterialComponentsTheme_chipStandaloneStyle
* @see #MaterialComponentsTheme_chipStyle
* @see #MaterialComponentsTheme_colorAccent
* @see #MaterialComponentsTheme_colorBackgroundFloating
* @see #MaterialComponentsTheme_colorPrimary
* @see #MaterialComponentsTheme_colorPrimaryDark
* @see #MaterialComponentsTheme_colorSecondary
* @see #MaterialComponentsTheme_editTextStyle
* @see #MaterialComponentsTheme_floatingActionButtonStyle
* @see #MaterialComponentsTheme_materialButtonStyle
* @see #MaterialComponentsTheme_materialCardViewStyle
* @see #MaterialComponentsTheme_navigationViewStyle
* @see #MaterialComponentsTheme_scrimBackground
* @see #MaterialComponentsTheme_snackbarButtonStyle
* @see #MaterialComponentsTheme_tabStyle
* @see #MaterialComponentsTheme_textAppearanceBody1
* @see #MaterialComponentsTheme_textAppearanceBody2
* @see #MaterialComponentsTheme_textAppearanceButton
* @see #MaterialComponentsTheme_textAppearanceCaption
* @see #MaterialComponentsTheme_textAppearanceHeadline1
* @see #MaterialComponentsTheme_textAppearanceHeadline2
* @see #MaterialComponentsTheme_textAppearanceHeadline3
* @see #MaterialComponentsTheme_textAppearanceHeadline4
* @see #MaterialComponentsTheme_textAppearanceHeadline5
* @see #MaterialComponentsTheme_textAppearanceHeadline6
* @see #MaterialComponentsTheme_textAppearanceOverline
* @see #MaterialComponentsTheme_textAppearanceSubtitle1
* @see #MaterialComponentsTheme_textAppearanceSubtitle2
* @see #MaterialComponentsTheme_textInputStyle
*/
public static final int[] MaterialComponentsTheme={
0x7f030041, 0x7f030042, 0x7f030068, 0x7f030072,
0x7f030076, 0x7f030084, 0x7f030085, 0x7f03008b,
0x7f03008c, 0x7f03008d, 0x7f0300b4, 0x7f0300d0,
0x7f030126, 0x7f030127, 0x7f030131, 0x7f030151,
0x7f030162, 0x7f030195, 0x7f03019a, 0x7f03019b,
0x7f03019c, 0x7f03019d, 0x7f03019e, 0x7f03019f,
0x7f0301a0, 0x7f0301a1, 0x7f0301a2, 0x7f0301a3,
0x7f0301a8, 0x7f0301ad, 0x7f0301ae, 0x7f0301b2
};
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#bottomSheetDialogTheme}
* attribute's value can be found in the {@link #MaterialComponentsTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:bottomSheetDialogTheme
*/
public static final int MaterialComponentsTheme_bottomSheetDialogTheme=0;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#bottomSheetStyle}
* attribute's value can be found in the {@link #MaterialComponentsTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:bottomSheetStyle
*/
public static final int MaterialComponentsTheme_bottomSheetStyle=1;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#chipGroupStyle}
* attribute's value can be found in the {@link #MaterialComponentsTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:chipGroupStyle
*/
public static final int MaterialComponentsTheme_chipGroupStyle=2;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#chipStandaloneStyle}
* attribute's value can be found in the {@link #MaterialComponentsTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:chipStandaloneStyle
*/
public static final int MaterialComponentsTheme_chipStandaloneStyle=3;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#chipStyle}
* attribute's value can be found in the {@link #MaterialComponentsTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:chipStyle
*/
public static final int MaterialComponentsTheme_chipStyle=4;
/**
* <p>
* @attr description
* Bright complement to the primary branding color. By default, this is the color applied
* to framework controls (via colorControlActivated).
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:colorAccent
*/
public static final int MaterialComponentsTheme_colorAccent=5;
/**
* <p>
* @attr description
* Default color of background imagery for floating components, ex. dialogs, popups, and cards.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:colorBackgroundFloating
*/
public static final int MaterialComponentsTheme_colorBackgroundFloating=6;
/**
* <p>
* @attr description
* The primary branding color for the app. By default, this is the color applied to the
* action bar background.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:colorPrimary
*/
public static final int MaterialComponentsTheme_colorPrimary=7;
/**
* <p>
* @attr description
* Dark variant of the primary branding color. By default, this is the color applied to
* the status bar (via statusBarColor) and navigation bar (via navigationBarColor).
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:colorPrimaryDark
*/
public static final int MaterialComponentsTheme_colorPrimaryDark=8;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#colorSecondary}
* attribute's value can be found in the {@link #MaterialComponentsTheme} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:colorSecondary
*/
public static final int MaterialComponentsTheme_colorSecondary=9;
/**
* <p>
* @attr description
* Default EditText style.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:editTextStyle
*/
public static final int MaterialComponentsTheme_editTextStyle=10;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#floatingActionButtonStyle}
* attribute's value can be found in the {@link #MaterialComponentsTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
* <p>May be an integer value, such as "<code>100</code>".
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
* <p>May be a floating point value, such as "<code>1.2</code>".
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>May be a fractional value, which is a floating point number appended with
* either % or %p, such as "<code>14.5%</code>".
* The % suffix always means a percentage of the base size;
* the optional %p suffix provides a size relative to some parent container.
*
* @attr name org.nativescript.MAD2:floatingActionButtonStyle
*/
public static final int MaterialComponentsTheme_floatingActionButtonStyle=11;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#materialButtonStyle}
* attribute's value can be found in the {@link #MaterialComponentsTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:materialButtonStyle
*/
public static final int MaterialComponentsTheme_materialButtonStyle=12;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#materialCardViewStyle}
* attribute's value can be found in the {@link #MaterialComponentsTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:materialCardViewStyle
*/
public static final int MaterialComponentsTheme_materialCardViewStyle=13;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#navigationViewStyle}
* attribute's value can be found in the {@link #MaterialComponentsTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:navigationViewStyle
*/
public static final int MaterialComponentsTheme_navigationViewStyle=14;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#scrimBackground}
* attribute's value can be found in the {@link #MaterialComponentsTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:scrimBackground
*/
public static final int MaterialComponentsTheme_scrimBackground=15;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#snackbarButtonStyle}
* attribute's value can be found in the {@link #MaterialComponentsTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:snackbarButtonStyle
*/
public static final int MaterialComponentsTheme_snackbarButtonStyle=16;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#tabStyle}
* attribute's value can be found in the {@link #MaterialComponentsTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:tabStyle
*/
public static final int MaterialComponentsTheme_tabStyle=17;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#textAppearanceBody1}
* attribute's value can be found in the {@link #MaterialComponentsTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:textAppearanceBody1
*/
public static final int MaterialComponentsTheme_textAppearanceBody1=18;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#textAppearanceBody2}
* attribute's value can be found in the {@link #MaterialComponentsTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:textAppearanceBody2
*/
public static final int MaterialComponentsTheme_textAppearanceBody2=19;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#textAppearanceButton}
* attribute's value can be found in the {@link #MaterialComponentsTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:textAppearanceButton
*/
public static final int MaterialComponentsTheme_textAppearanceButton=20;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#textAppearanceCaption}
* attribute's value can be found in the {@link #MaterialComponentsTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:textAppearanceCaption
*/
public static final int MaterialComponentsTheme_textAppearanceCaption=21;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#textAppearanceHeadline1}
* attribute's value can be found in the {@link #MaterialComponentsTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:textAppearanceHeadline1
*/
public static final int MaterialComponentsTheme_textAppearanceHeadline1=22;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#textAppearanceHeadline2}
* attribute's value can be found in the {@link #MaterialComponentsTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:textAppearanceHeadline2
*/
public static final int MaterialComponentsTheme_textAppearanceHeadline2=23;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#textAppearanceHeadline3}
* attribute's value can be found in the {@link #MaterialComponentsTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:textAppearanceHeadline3
*/
public static final int MaterialComponentsTheme_textAppearanceHeadline3=24;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#textAppearanceHeadline4}
* attribute's value can be found in the {@link #MaterialComponentsTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:textAppearanceHeadline4
*/
public static final int MaterialComponentsTheme_textAppearanceHeadline4=25;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#textAppearanceHeadline5}
* attribute's value can be found in the {@link #MaterialComponentsTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:textAppearanceHeadline5
*/
public static final int MaterialComponentsTheme_textAppearanceHeadline5=26;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#textAppearanceHeadline6}
* attribute's value can be found in the {@link #MaterialComponentsTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:textAppearanceHeadline6
*/
public static final int MaterialComponentsTheme_textAppearanceHeadline6=27;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#textAppearanceOverline}
* attribute's value can be found in the {@link #MaterialComponentsTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:textAppearanceOverline
*/
public static final int MaterialComponentsTheme_textAppearanceOverline=28;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#textAppearanceSubtitle1}
* attribute's value can be found in the {@link #MaterialComponentsTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:textAppearanceSubtitle1
*/
public static final int MaterialComponentsTheme_textAppearanceSubtitle1=29;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#textAppearanceSubtitle2}
* attribute's value can be found in the {@link #MaterialComponentsTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:textAppearanceSubtitle2
*/
public static final int MaterialComponentsTheme_textAppearanceSubtitle2=30;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#textInputStyle}
* attribute's value can be found in the {@link #MaterialComponentsTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:textInputStyle
*/
public static final int MaterialComponentsTheme_textInputStyle=31;
/**
* Attributes that can be used with a MenuGroup.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td></td></tr>
* </table>
* @see #MenuGroup_android_enabled
* @see #MenuGroup_android_id
* @see #MenuGroup_android_visible
* @see #MenuGroup_android_menuCategory
* @see #MenuGroup_android_orderInCategory
* @see #MenuGroup_android_checkableBehavior
*/
public static final int[] MenuGroup={
0x0101000e, 0x010100d0, 0x01010194, 0x010101de,
0x010101df, 0x010101e0
};
/**
* <p>
* @attr description
* Whether the items are enabled.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:enabled
*/
public static final int MenuGroup_android_enabled=0;
/**
* <p>
* @attr description
* The ID of the group.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:id
*/
public static final int MenuGroup_android_id=1;
/**
* <p>
* @attr description
* Whether the items are shown/visible.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:visible
*/
public static final int MenuGroup_android_visible=2;
/**
* <p>
* @attr description
* The category applied to all items within this group.
* (This will be or'ed with the orderInCategory attribute.)
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>alternative</td><td>40000</td><td></td></tr>
* <tr><td>container</td><td>10000</td><td></td></tr>
* <tr><td>secondary</td><td>30000</td><td></td></tr>
* <tr><td>system</td><td>20000</td><td></td></tr>
* </table>
*
* @attr name android:menuCategory
*/
public static final int MenuGroup_android_menuCategory=3;
/**
* <p>
* @attr description
* The order within the category applied to all items within this group.
* (This will be or'ed with the category attribute.)
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name android:orderInCategory
*/
public static final int MenuGroup_android_orderInCategory=4;
/**
* <p>
* @attr description
* Whether the items are capable of displaying a check mark.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>all</td><td>1</td><td></td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>single</td><td>2</td><td></td></tr>
* </table>
*
* @attr name android:checkableBehavior
*/
public static final int MenuGroup_android_checkableBehavior=5;
/**
* Attributes that can be used with a MenuItem.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuItem_actionLayout org.nativescript.MAD2:actionLayout}</code></td><td>An optional layout to be used as an action view.</td></tr>
* <tr><td><code>{@link #MenuItem_actionProviderClass org.nativescript.MAD2:actionProviderClass}</code></td><td>The name of an optional ActionProvider class to instantiate an action view
* and perform operations such as default action for that menu item.</td></tr>
* <tr><td><code>{@link #MenuItem_actionViewClass org.nativescript.MAD2:actionViewClass}</code></td><td>The name of an optional View class to instantiate and use as an
* action view.</td></tr>
* <tr><td><code>{@link #MenuItem_alphabeticModifiers org.nativescript.MAD2:alphabeticModifiers}</code></td><td>The alphabetic modifier key.</td></tr>
* <tr><td><code>{@link #MenuItem_contentDescription org.nativescript.MAD2:contentDescription}</code></td><td>The content description associated with the item.</td></tr>
* <tr><td><code>{@link #MenuItem_iconTint org.nativescript.MAD2:iconTint}</code></td><td>Tint to apply to the icon.</td></tr>
* <tr><td><code>{@link #MenuItem_iconTintMode org.nativescript.MAD2:iconTintMode}</code></td><td>Blending mode used to apply the icon tint.</td></tr>
* <tr><td><code>{@link #MenuItem_numericModifiers org.nativescript.MAD2:numericModifiers}</code></td><td>The numeric modifier key.</td></tr>
* <tr><td><code>{@link #MenuItem_showAsAction org.nativescript.MAD2:showAsAction}</code></td><td>How this item should display in the Action Bar, if present.</td></tr>
* <tr><td><code>{@link #MenuItem_tooltipText org.nativescript.MAD2:tooltipText}</code></td><td>The tooltip text associated with the item.</td></tr>
* </table>
* @see #MenuItem_android_icon
* @see #MenuItem_android_enabled
* @see #MenuItem_android_id
* @see #MenuItem_android_checked
* @see #MenuItem_android_visible
* @see #MenuItem_android_menuCategory
* @see #MenuItem_android_orderInCategory
* @see #MenuItem_android_title
* @see #MenuItem_android_titleCondensed
* @see #MenuItem_android_alphabeticShortcut
* @see #MenuItem_android_numericShortcut
* @see #MenuItem_android_checkable
* @see #MenuItem_android_onClick
* @see #MenuItem_actionLayout
* @see #MenuItem_actionProviderClass
* @see #MenuItem_actionViewClass
* @see #MenuItem_alphabeticModifiers
* @see #MenuItem_contentDescription
* @see #MenuItem_iconTint
* @see #MenuItem_iconTintMode
* @see #MenuItem_numericModifiers
* @see #MenuItem_showAsAction
* @see #MenuItem_tooltipText
*/
public static final int[] MenuItem={
0x01010002, 0x0101000e, 0x010100d0, 0x01010106,
0x01010194, 0x010101de, 0x010101df, 0x010101e1,
0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5,
0x0101026f, 0x7f03000d, 0x7f03001f, 0x7f030020,
0x7f030028, 0x7f030090, 0x7f0300f3, 0x7f0300f4,
0x7f030132, 0x7f03015a, 0x7f0301ce
};
/**
* <p>
* @attr description
* The icon associated with this item. This icon will not always be shown, so
* the title should be sufficient in describing this item.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:icon
*/
public static final int MenuItem_android_icon=0;
/**
* <p>
* @attr description
* Whether the item is enabled.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:enabled
*/
public static final int MenuItem_android_enabled=1;
/**
* <p>
* @attr description
* The ID of the item.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:id
*/
public static final int MenuItem_android_id=2;
/**
* <p>
* @attr description
* Whether the item is checked. Note that you must first have enabled checking with
* the checkable attribute or else the check mark will not appear.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:checked
*/
public static final int MenuItem_android_checked=3;
/**
* <p>
* @attr description
* Whether the item is shown/visible.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:visible
*/
public static final int MenuItem_android_visible=4;
/**
* <p>
* @attr description
* The category applied to the item.
* (This will be or'ed with the orderInCategory attribute.)
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>alternative</td><td>40000</td><td></td></tr>
* <tr><td>container</td><td>10000</td><td></td></tr>
* <tr><td>secondary</td><td>30000</td><td></td></tr>
* <tr><td>system</td><td>20000</td><td></td></tr>
* </table>
*
* @attr name android:menuCategory
*/
public static final int MenuItem_android_menuCategory=5;
/**
* <p>
* @attr description
* The order within the category applied to the item.
* (This will be or'ed with the category attribute.)
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name android:orderInCategory
*/
public static final int MenuItem_android_orderInCategory=6;
/**
* <p>
* @attr description
* The title associated with the item.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:title
*/
public static final int MenuItem_android_title=7;
/**
* <p>
* @attr description
* The condensed title associated with the item. This is used in situations where the
* normal title may be too long to be displayed.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:titleCondensed
*/
public static final int MenuItem_android_titleCondensed=8;
/**
* <p>
* @attr description
* The alphabetic shortcut key. This is the shortcut when using a keyboard
* with alphabetic keys.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:alphabeticShortcut
*/
public static final int MenuItem_android_alphabeticShortcut=9;
/**
* <p>
* @attr description
* The numeric shortcut key. This is the shortcut when using a numeric (e.g., 12-key)
* keyboard.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:numericShortcut
*/
public static final int MenuItem_android_numericShortcut=10;
/**
* <p>
* @attr description
* Whether the item is capable of displaying a check mark.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:checkable
*/
public static final int MenuItem_android_checkable=11;
/**
* <p>
* @attr description
* Name of a method on the Context used to inflate the menu that will be
* called when the item is clicked.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:onClick
*/
public static final int MenuItem_android_onClick=12;
/**
* <p>
* @attr description
* An optional layout to be used as an action view.
* See {@link android.view.MenuItem#setActionView(android.view.View)}
* for more info.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:actionLayout
*/
public static final int MenuItem_actionLayout=13;
/**
* <p>
* @attr description
* The name of an optional ActionProvider class to instantiate an action view
* and perform operations such as default action for that menu item.
* See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)}
* for more info.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name org.nativescript.MAD2:actionProviderClass
*/
public static final int MenuItem_actionProviderClass=14;
/**
* <p>
* @attr description
* The name of an optional View class to instantiate and use as an
* action view. See {@link android.view.MenuItem#setActionView(android.view.View)}
* for more info.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name org.nativescript.MAD2:actionViewClass
*/
public static final int MenuItem_actionViewClass=15;
/**
* <p>
* @attr description
* The alphabetic modifier key. This is the modifier when using a keyboard
* with alphabetic keys. The values should be kept in sync with KeyEvent
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>ALT</td><td>2</td><td></td></tr>
* <tr><td>CTRL</td><td>1000</td><td></td></tr>
* <tr><td>FUNCTION</td><td>8</td><td></td></tr>
* <tr><td>META</td><td>10000</td><td></td></tr>
* <tr><td>SHIFT</td><td>1</td><td></td></tr>
* <tr><td>SYM</td><td>4</td><td></td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:alphabeticModifiers
*/
public static final int MenuItem_alphabeticModifiers=16;
/**
* <p>
* @attr description
* The content description associated with the item.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name org.nativescript.MAD2:contentDescription
*/
public static final int MenuItem_contentDescription=17;
/**
* <p>
* @attr description
* Tint to apply to the icon.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:iconTint
*/
public static final int MenuItem_iconTint=18;
/**
* <p>
* @attr description
* Blending mode used to apply the icon tint.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the
* result to valid color values. Saturate(S + D)</td></tr>
* <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the icon with those of
* the tint. [Sa * Da, Sc * Dc]</td></tr>
* <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr>
* <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the icon, but with the icon’s alpha
* channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr>
* <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the icon. The icon’s
* color channels are thrown out. [Sa * Da, Sc * Da]</td></tr>
* <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the icon.
* [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:iconTintMode
*/
public static final int MenuItem_iconTintMode=19;
/**
* <p>
* @attr description
* The numeric modifier key. This is the modifier when using a numeric (e.g., 12-key)
* keyboard. The values should be kept in sync with KeyEvent
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>ALT</td><td>2</td><td></td></tr>
* <tr><td>CTRL</td><td>1000</td><td></td></tr>
* <tr><td>FUNCTION</td><td>8</td><td></td></tr>
* <tr><td>META</td><td>10000</td><td></td></tr>
* <tr><td>SHIFT</td><td>1</td><td></td></tr>
* <tr><td>SYM</td><td>4</td><td></td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:numericModifiers
*/
public static final int MenuItem_numericModifiers=20;
/**
* <p>
* @attr description
* How this item should display in the Action Bar, if present.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>always</td><td>2</td><td>Always show this item in an actionbar, even if it would override
* the system's limits of how much stuff to put there. This may make
* your action bar look bad on some screens. In most cases you should
* use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never".</td></tr>
* <tr><td>collapseActionView</td><td>8</td><td>This item's action view collapses to a normal menu
* item. When expanded, the action view takes over a
* larger segment of its container.</td></tr>
* <tr><td>ifRoom</td><td>1</td><td>Show this item in an action bar if there is room for it as determined
* by the system. Favor this option over "always" where possible.
* Mutually exclusive with "never" and "always".</td></tr>
* <tr><td>never</td><td>0</td><td>Never show this item in an action bar, show it in the overflow menu instead.
* Mutually exclusive with "ifRoom" and "always".</td></tr>
* <tr><td>withText</td><td>4</td><td>When this item is shown as an action in the action bar, show a text
* label with it even if it has an icon representation.</td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:showAsAction
*/
public static final int MenuItem_showAsAction=21;
/**
* <p>
* @attr description
* The tooltip text associated with the item.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name org.nativescript.MAD2:tooltipText
*/
public static final int MenuItem_tooltipText=22;
/**
* Attributes that can be used with a MenuView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr>
* <tr><td><code>{@link #MenuView_preserveIconSpacing org.nativescript.MAD2:preserveIconSpacing}</code></td><td>Whether space should be reserved in layout when an icon is missing.</td></tr>
* <tr><td><code>{@link #MenuView_subMenuArrow org.nativescript.MAD2:subMenuArrow}</code></td><td>Drawable for the arrow icon indicating a particular item is a submenu.</td></tr>
* </table>
* @see #MenuView_android_windowAnimationStyle
* @see #MenuView_android_itemTextAppearance
* @see #MenuView_android_horizontalDivider
* @see #MenuView_android_verticalDivider
* @see #MenuView_android_headerBackground
* @see #MenuView_android_itemBackground
* @see #MenuView_android_itemIconDisabledAlpha
* @see #MenuView_preserveIconSpacing
* @see #MenuView_subMenuArrow
*/
public static final int[] MenuView={
0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e,
0x0101012f, 0x01010130, 0x01010131, 0x7f030143,
0x7f030174
};
/**
* <p>
* @attr description
* Default animations for the menu.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:windowAnimationStyle
*/
public static final int MenuView_android_windowAnimationStyle=0;
/**
* <p>
* @attr description
* Default appearance of menu item text.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:itemTextAppearance
*/
public static final int MenuView_android_itemTextAppearance=1;
/**
* <p>
* @attr description
* Default horizontal divider between rows of menu items.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:horizontalDivider
*/
public static final int MenuView_android_horizontalDivider=2;
/**
* <p>
* @attr description
* Default vertical divider between menu items.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:verticalDivider
*/
public static final int MenuView_android_verticalDivider=3;
/**
* <p>
* @attr description
* Default background for the menu header.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:headerBackground
*/
public static final int MenuView_android_headerBackground=4;
/**
* <p>
* @attr description
* Default background for each menu item.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:itemBackground
*/
public static final int MenuView_android_itemBackground=5;
/**
* <p>
* @attr description
* Default disabled icon alpha for each menu item that shows an icon.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:itemIconDisabledAlpha
*/
public static final int MenuView_android_itemIconDisabledAlpha=6;
/**
* <p>
* @attr description
* Whether space should be reserved in layout when an icon is missing.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:preserveIconSpacing
*/
public static final int MenuView_preserveIconSpacing=7;
/**
* <p>
* @attr description
* Drawable for the arrow icon indicating a particular item is a submenu.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:subMenuArrow
*/
public static final int MenuView_subMenuArrow=8;
/**
* Attributes that can be used with a NavigationView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #NavigationView_android_background android:background}</code></td><td></td></tr>
* <tr><td><code>{@link #NavigationView_android_fitsSystemWindows android:fitsSystemWindows}</code></td><td></td></tr>
* <tr><td><code>{@link #NavigationView_android_maxWidth android:maxWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #NavigationView_elevation org.nativescript.MAD2:elevation}</code></td><td>Elevation for the action bar itself</td></tr>
* <tr><td><code>{@link #NavigationView_headerLayout org.nativescript.MAD2:headerLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #NavigationView_itemBackground org.nativescript.MAD2:itemBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #NavigationView_itemHorizontalPadding org.nativescript.MAD2:itemHorizontalPadding}</code></td><td></td></tr>
* <tr><td><code>{@link #NavigationView_itemIconPadding org.nativescript.MAD2:itemIconPadding}</code></td><td></td></tr>
* <tr><td><code>{@link #NavigationView_itemIconTint org.nativescript.MAD2:itemIconTint}</code></td><td></td></tr>
* <tr><td><code>{@link #NavigationView_itemTextAppearance org.nativescript.MAD2:itemTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #NavigationView_itemTextColor org.nativescript.MAD2:itemTextColor}</code></td><td></td></tr>
* <tr><td><code>{@link #NavigationView_menu org.nativescript.MAD2:menu}</code></td><td></td></tr>
* </table>
* @see #NavigationView_android_background
* @see #NavigationView_android_fitsSystemWindows
* @see #NavigationView_android_maxWidth
* @see #NavigationView_elevation
* @see #NavigationView_headerLayout
* @see #NavigationView_itemBackground
* @see #NavigationView_itemHorizontalPadding
* @see #NavigationView_itemIconPadding
* @see #NavigationView_itemIconTint
* @see #NavigationView_itemTextAppearance
* @see #NavigationView_itemTextColor
* @see #NavigationView_menu
*/
public static final int[] NavigationView={
0x010100d4, 0x010100dd, 0x0101011f, 0x7f0300b5,
0x7f0300df, 0x7f0300fb, 0x7f0300fc, 0x7f0300fe,
0x7f030100, 0x7f030103, 0x7f030106, 0x7f03012c
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#background}
* attribute's value can be found in the {@link #NavigationView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:background
*/
public static final int NavigationView_android_background=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#fitsSystemWindows}
* attribute's value can be found in the {@link #NavigationView} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:fitsSystemWindows
*/
public static final int NavigationView_android_fitsSystemWindows=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#maxWidth}
* attribute's value can be found in the {@link #NavigationView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:maxWidth
*/
public static final int NavigationView_android_maxWidth=2;
/**
* <p>
* @attr description
* Elevation for the action bar itself
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:elevation
*/
public static final int NavigationView_elevation=3;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#headerLayout}
* attribute's value can be found in the {@link #NavigationView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:headerLayout
*/
public static final int NavigationView_headerLayout=4;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#itemBackground}
* attribute's value can be found in the {@link #NavigationView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:itemBackground
*/
public static final int NavigationView_itemBackground=5;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#itemHorizontalPadding}
* attribute's value can be found in the {@link #NavigationView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:itemHorizontalPadding
*/
public static final int NavigationView_itemHorizontalPadding=6;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#itemIconPadding}
* attribute's value can be found in the {@link #NavigationView} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:itemIconPadding
*/
public static final int NavigationView_itemIconPadding=7;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#itemIconTint}
* attribute's value can be found in the {@link #NavigationView} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:itemIconTint
*/
public static final int NavigationView_itemIconTint=8;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#itemTextAppearance}
* attribute's value can be found in the {@link #NavigationView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:itemTextAppearance
*/
public static final int NavigationView_itemTextAppearance=9;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#itemTextColor}
* attribute's value can be found in the {@link #NavigationView} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:itemTextColor
*/
public static final int NavigationView_itemTextColor=10;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#menu}
* attribute's value can be found in the {@link #NavigationView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:menu
*/
public static final int NavigationView_menu=11;
/**
* Attributes that can be used with a PopupWindow.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #PopupWindow_android_popupBackground android:popupBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #PopupWindow_android_popupAnimationStyle android:popupAnimationStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #PopupWindow_overlapAnchor org.nativescript.MAD2:overlapAnchor}</code></td><td>Whether the popup window should overlap its anchor view.</td></tr>
* </table>
* @see #PopupWindow_android_popupBackground
* @see #PopupWindow_android_popupAnimationStyle
* @see #PopupWindow_overlapAnchor
*/
public static final int[] PopupWindow={
0x01010176, 0x010102c9, 0x7f030133
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#popupBackground}
* attribute's value can be found in the {@link #PopupWindow} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:popupBackground
*/
public static final int PopupWindow_android_popupBackground=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#popupAnimationStyle}
* attribute's value can be found in the {@link #PopupWindow} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:popupAnimationStyle
*/
public static final int PopupWindow_android_popupAnimationStyle=1;
/**
* <p>
* @attr description
* Whether the popup window should overlap its anchor view.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:overlapAnchor
*/
public static final int PopupWindow_overlapAnchor=2;
/**
* Attributes that can be used with a PopupWindowBackgroundState.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #PopupWindowBackgroundState_state_above_anchor org.nativescript.MAD2:state_above_anchor}</code></td><td>State identifier indicating the popup will be above the anchor.</td></tr>
* </table>
* @see #PopupWindowBackgroundState_state_above_anchor
*/
public static final int[] PopupWindowBackgroundState={
0x7f03016b
};
/**
* <p>
* @attr description
* State identifier indicating the popup will be above the anchor.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:state_above_anchor
*/
public static final int PopupWindowBackgroundState_state_above_anchor=0;
/**
* Attributes that can be used with a RadScrollView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #RadScrollView_fillViewport org.nativescript.MAD2:fillViewport}</code></td><td></td></tr>
* <tr><td><code>{@link #RadScrollView_scrollMode org.nativescript.MAD2:scrollMode}</code></td><td></td></tr>
* </table>
* @see #RadScrollView_fillViewport
* @see #RadScrollView_scrollMode
*/
public static final int[] RadScrollView={
0x7f0300ce, 0x7f030153
};
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#fillViewport}
* attribute's value can be found in the {@link #RadScrollView} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:fillViewport
*/
public static final int RadScrollView_fillViewport=0;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#scrollMode}
* attribute's value can be found in the {@link #RadScrollView} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>both</td><td>3</td><td></td></tr>
* <tr><td>horizontal</td><td>2</td><td></td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>vertical</td><td>1</td><td></td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:scrollMode
*/
public static final int RadScrollView_scrollMode=1;
/**
* Attributes that can be used with a RadScrollViewTheme.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #RadScrollViewTheme_radScrollViewStyle org.nativescript.MAD2:radScrollViewStyle}</code></td><td></td></tr>
* </table>
* @see #RadScrollViewTheme_radScrollViewStyle
*/
public static final int[] RadScrollViewTheme={
0x7f030149
};
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#radScrollViewStyle}
* attribute's value can be found in the {@link #RadScrollViewTheme} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:radScrollViewStyle
*/
public static final int RadScrollViewTheme_radScrollViewStyle=0;
/**
* Attributes that can be used with a RecycleListView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #RecycleListView_paddingBottomNoButtons org.nativescript.MAD2:paddingBottomNoButtons}</code></td><td>Bottom padding to use when no buttons are present.</td></tr>
* <tr><td><code>{@link #RecycleListView_paddingTopNoTitle org.nativescript.MAD2:paddingTopNoTitle}</code></td><td>Top padding to use when no title is present.</td></tr>
* </table>
* @see #RecycleListView_paddingBottomNoButtons
* @see #RecycleListView_paddingTopNoTitle
*/
public static final int[] RecycleListView={
0x7f030134, 0x7f030137
};
/**
* <p>
* @attr description
* Bottom padding to use when no buttons are present.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:paddingBottomNoButtons
*/
public static final int RecycleListView_paddingBottomNoButtons=0;
/**
* <p>
* @attr description
* Top padding to use when no title is present.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:paddingTopNoTitle
*/
public static final int RecycleListView_paddingTopNoTitle=1;
/**
* Attributes that can be used with a RecyclerView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #RecyclerView_android_orientation android:orientation}</code></td><td></td></tr>
* <tr><td><code>{@link #RecyclerView_android_descendantFocusability android:descendantFocusability}</code></td><td></td></tr>
* <tr><td><code>{@link #RecyclerView_fastScrollEnabled org.nativescript.MAD2:fastScrollEnabled}</code></td><td></td></tr>
* <tr><td><code>{@link #RecyclerView_fastScrollHorizontalThumbDrawable org.nativescript.MAD2:fastScrollHorizontalThumbDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #RecyclerView_fastScrollHorizontalTrackDrawable org.nativescript.MAD2:fastScrollHorizontalTrackDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #RecyclerView_fastScrollVerticalThumbDrawable org.nativescript.MAD2:fastScrollVerticalThumbDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #RecyclerView_fastScrollVerticalTrackDrawable org.nativescript.MAD2:fastScrollVerticalTrackDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #RecyclerView_layoutManager org.nativescript.MAD2:layoutManager}</code></td><td>Class name of the Layout Manager to be used.</td></tr>
* <tr><td><code>{@link #RecyclerView_reverseLayout org.nativescript.MAD2:reverseLayout}</code></td><td></td></tr>
* <tr><td><code>{@link #RecyclerView_spanCount org.nativescript.MAD2:spanCount}</code></td><td></td></tr>
* <tr><td><code>{@link #RecyclerView_stackFromEnd org.nativescript.MAD2:stackFromEnd}</code></td><td></td></tr>
* </table>
* @see #RecyclerView_android_orientation
* @see #RecyclerView_android_descendantFocusability
* @see #RecyclerView_fastScrollEnabled
* @see #RecyclerView_fastScrollHorizontalThumbDrawable
* @see #RecyclerView_fastScrollHorizontalTrackDrawable
* @see #RecyclerView_fastScrollVerticalThumbDrawable
* @see #RecyclerView_fastScrollVerticalTrackDrawable
* @see #RecyclerView_layoutManager
* @see #RecyclerView_reverseLayout
* @see #RecyclerView_spanCount
* @see #RecyclerView_stackFromEnd
*/
public static final int[] RecyclerView={
0x010100c4, 0x010100f1, 0x7f0300c9, 0x7f0300ca,
0x7f0300cb, 0x7f0300cc, 0x7f0300cd, 0x7f03010b,
0x7f03014e, 0x7f030164, 0x7f03016a
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#orientation}
* attribute's value can be found in the {@link #RecyclerView} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>horizontal</td><td>0</td><td></td></tr>
* <tr><td>vertical</td><td>1</td><td></td></tr>
* </table>
*
* @attr name android:orientation
*/
public static final int RecyclerView_android_orientation=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#descendantFocusability}
* attribute's value can be found in the {@link #RecyclerView} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>afterDescendants</td><td>1</td><td></td></tr>
* <tr><td>beforeDescendants</td><td>0</td><td></td></tr>
* <tr><td>blocksDescendants</td><td>2</td><td></td></tr>
* </table>
*
* @attr name android:descendantFocusability
*/
public static final int RecyclerView_android_descendantFocusability=1;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#fastScrollEnabled}
* attribute's value can be found in the {@link #RecyclerView} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:fastScrollEnabled
*/
public static final int RecyclerView_fastScrollEnabled=2;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#fastScrollHorizontalThumbDrawable}
* attribute's value can be found in the {@link #RecyclerView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:fastScrollHorizontalThumbDrawable
*/
public static final int RecyclerView_fastScrollHorizontalThumbDrawable=3;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#fastScrollHorizontalTrackDrawable}
* attribute's value can be found in the {@link #RecyclerView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:fastScrollHorizontalTrackDrawable
*/
public static final int RecyclerView_fastScrollHorizontalTrackDrawable=4;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#fastScrollVerticalThumbDrawable}
* attribute's value can be found in the {@link #RecyclerView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:fastScrollVerticalThumbDrawable
*/
public static final int RecyclerView_fastScrollVerticalThumbDrawable=5;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#fastScrollVerticalTrackDrawable}
* attribute's value can be found in the {@link #RecyclerView} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:fastScrollVerticalTrackDrawable
*/
public static final int RecyclerView_fastScrollVerticalTrackDrawable=6;
/**
* <p>
* @attr description
* Class name of the Layout Manager to be used.
* <p/>
* The class must extandroidx.recyclerview.widget.RecyclerViewView$LayoutManager
* and have either a default constructor or constructor with the signature
* (android.content.Context, android.util.AttributeSet, int, int).
* <p/>
* If the name starts with a '.', application package is prefixed.
* Else, if the name contains a '.', the classname is assumed to be a full class name.
* Else, the recycler view package naandroidx.appcompat.widgetdget) is prefixed.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name org.nativescript.MAD2:layoutManager
*/
public static final int RecyclerView_layoutManager=7;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#reverseLayout}
* attribute's value can be found in the {@link #RecyclerView} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:reverseLayout
*/
public static final int RecyclerView_reverseLayout=8;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#spanCount}
* attribute's value can be found in the {@link #RecyclerView} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name org.nativescript.MAD2:spanCount
*/
public static final int RecyclerView_spanCount=9;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#stackFromEnd}
* attribute's value can be found in the {@link #RecyclerView} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:stackFromEnd
*/
public static final int RecyclerView_stackFromEnd=10;
/**
* Attributes that can be used with a ScrimInsetsFrameLayout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ScrimInsetsFrameLayout_insetForeground org.nativescript.MAD2:insetForeground}</code></td><td></td></tr>
* </table>
* @see #ScrimInsetsFrameLayout_insetForeground
*/
public static final int[] ScrimInsetsFrameLayout={
0x7f0300f9
};
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#insetForeground}
* attribute's value can be found in the {@link #ScrimInsetsFrameLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:insetForeground
*/
public static final int ScrimInsetsFrameLayout_insetForeground=0;
/**
* Attributes that can be used with a ScrollingViewBehavior_Layout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ScrollingViewBehavior_Layout_behavior_overlapTop org.nativescript.MAD2:behavior_overlapTop}</code></td><td></td></tr>
* </table>
* @see #ScrollingViewBehavior_Layout_behavior_overlapTop
*/
public static final int[] ScrollingViewBehavior_Layout={
0x7f03003a
};
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#behavior_overlapTop}
* attribute's value can be found in the {@link #ScrollingViewBehavior_Layout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:behavior_overlapTop
*/
public static final int ScrollingViewBehavior_Layout_behavior_overlapTop=0;
/**
* Attributes that can be used with a SearchView.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #SearchView_android_focusable android:focusable}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr>
* <tr><td><code>{@link #SearchView_closeIcon org.nativescript.MAD2:closeIcon}</code></td><td>Close button icon</td></tr>
* <tr><td><code>{@link #SearchView_commitIcon org.nativescript.MAD2:commitIcon}</code></td><td>Commit icon shown in the query suggestion row</td></tr>
* <tr><td><code>{@link #SearchView_defaultQueryHint org.nativescript.MAD2:defaultQueryHint}</code></td><td>Default query hint used when {@code queryHint} is undefined and
* the search view's {@code SearchableInfo} does not provide a hint.</td></tr>
* <tr><td><code>{@link #SearchView_goIcon org.nativescript.MAD2:goIcon}</code></td><td>Go button icon</td></tr>
* <tr><td><code>{@link #SearchView_iconifiedByDefault org.nativescript.MAD2:iconifiedByDefault}</code></td><td>The default state of the SearchView.</td></tr>
* <tr><td><code>{@link #SearchView_layout org.nativescript.MAD2:layout}</code></td><td>The layout to use for the search view.</td></tr>
* <tr><td><code>{@link #SearchView_queryBackground org.nativescript.MAD2:queryBackground}</code></td><td>Background for the section containing the search query</td></tr>
* <tr><td><code>{@link #SearchView_queryHint org.nativescript.MAD2:queryHint}</code></td><td>An optional user-defined query hint string to be displayed in the empty query field.</td></tr>
* <tr><td><code>{@link #SearchView_searchHintIcon org.nativescript.MAD2:searchHintIcon}</code></td><td>Search icon displayed as a text field hint</td></tr>
* <tr><td><code>{@link #SearchView_searchIcon org.nativescript.MAD2:searchIcon}</code></td><td>Search icon</td></tr>
* <tr><td><code>{@link #SearchView_submitBackground org.nativescript.MAD2:submitBackground}</code></td><td>Background for the section containing the action (e.g.</td></tr>
* <tr><td><code>{@link #SearchView_suggestionRowLayout org.nativescript.MAD2:suggestionRowLayout}</code></td><td>Layout for query suggestion rows</td></tr>
* <tr><td><code>{@link #SearchView_voiceIcon org.nativescript.MAD2:voiceIcon}</code></td><td>Voice button icon</td></tr>
* </table>
* @see #SearchView_android_focusable
* @see #SearchView_android_maxWidth
* @see #SearchView_android_inputType
* @see #SearchView_android_imeOptions
* @see #SearchView_closeIcon
* @see #SearchView_commitIcon
* @see #SearchView_defaultQueryHint
* @see #SearchView_goIcon
* @see #SearchView_iconifiedByDefault
* @see #SearchView_layout
* @see #SearchView_queryBackground
* @see #SearchView_queryHint
* @see #SearchView_searchHintIcon
* @see #SearchView_searchIcon
* @see #SearchView_submitBackground
* @see #SearchView_suggestionRowLayout
* @see #SearchView_voiceIcon
*/
public static final int[] SearchView={
0x010100da, 0x0101011f, 0x01010220, 0x01010264,
0x7f030077, 0x7f03008f, 0x7f0300a5, 0x7f0300de,
0x7f0300f5, 0x7f03010a, 0x7f030147, 0x7f030148,
0x7f030154, 0x7f030155, 0x7f030175, 0x7f03017a,
0x7f0301d5
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#focusable}
* attribute's value can be found in the {@link #SearchView} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>auto</td><td>10</td><td></td></tr>
* </table>
*
* @attr name android:focusable
*/
public static final int SearchView_android_focusable=0;
/**
* <p>
* @attr description
* An optional maximum width of the SearchView.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:maxWidth
*/
public static final int SearchView_android_maxWidth=1;
/**
* <p>
* @attr description
* The input type to set on the query text field.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>date</td><td>14</td><td></td></tr>
* <tr><td>datetime</td><td>4</td><td></td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>number</td><td>2</td><td></td></tr>
* <tr><td>numberDecimal</td><td>2002</td><td></td></tr>
* <tr><td>numberPassword</td><td>12</td><td></td></tr>
* <tr><td>numberSigned</td><td>1002</td><td></td></tr>
* <tr><td>phone</td><td>3</td><td></td></tr>
* <tr><td>text</td><td>1</td><td></td></tr>
* <tr><td>textAutoComplete</td><td>10001</td><td></td></tr>
* <tr><td>textAutoCorrect</td><td>8001</td><td></td></tr>
* <tr><td>textCapCharacters</td><td>1001</td><td></td></tr>
* <tr><td>textCapSentences</td><td>4001</td><td></td></tr>
* <tr><td>textCapWords</td><td>2001</td><td></td></tr>
* <tr><td>textEmailAddress</td><td>21</td><td></td></tr>
* <tr><td>textEmailSubject</td><td>31</td><td></td></tr>
* <tr><td>textFilter</td><td>b1</td><td></td></tr>
* <tr><td>textImeMultiLine</td><td>40001</td><td></td></tr>
* <tr><td>textLongMessage</td><td>51</td><td></td></tr>
* <tr><td>textMultiLine</td><td>20001</td><td></td></tr>
* <tr><td>textNoSuggestions</td><td>80001</td><td></td></tr>
* <tr><td>textPassword</td><td>81</td><td></td></tr>
* <tr><td>textPersonName</td><td>61</td><td></td></tr>
* <tr><td>textPhonetic</td><td>c1</td><td></td></tr>
* <tr><td>textPostalAddress</td><td>71</td><td></td></tr>
* <tr><td>textShortMessage</td><td>41</td><td></td></tr>
* <tr><td>textUri</td><td>11</td><td></td></tr>
* <tr><td>textVisiblePassword</td><td>91</td><td></td></tr>
* <tr><td>textWebEditText</td><td>a1</td><td></td></tr>
* <tr><td>textWebEmailAddress</td><td>d1</td><td></td></tr>
* <tr><td>textWebPassword</td><td>e1</td><td></td></tr>
* <tr><td>time</td><td>24</td><td></td></tr>
* </table>
*
* @attr name android:inputType
*/
public static final int SearchView_android_inputType=2;
/**
* <p>
* @attr description
* The IME options to set on the query text field.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>actionDone</td><td>6</td><td></td></tr>
* <tr><td>actionGo</td><td>2</td><td></td></tr>
* <tr><td>actionNext</td><td>5</td><td></td></tr>
* <tr><td>actionNone</td><td>1</td><td></td></tr>
* <tr><td>actionPrevious</td><td>7</td><td></td></tr>
* <tr><td>actionSearch</td><td>3</td><td></td></tr>
* <tr><td>actionSend</td><td>4</td><td></td></tr>
* <tr><td>actionUnspecified</td><td>0</td><td></td></tr>
* <tr><td>flagForceAscii</td><td>80000000</td><td></td></tr>
* <tr><td>flagNavigateNext</td><td>8000000</td><td></td></tr>
* <tr><td>flagNavigatePrevious</td><td>4000000</td><td></td></tr>
* <tr><td>flagNoAccessoryAction</td><td>20000000</td><td></td></tr>
* <tr><td>flagNoEnterAction</td><td>40000000</td><td></td></tr>
* <tr><td>flagNoExtractUi</td><td>10000000</td><td></td></tr>
* <tr><td>flagNoFullscreen</td><td>2000000</td><td></td></tr>
* <tr><td>flagNoPersonalizedLearning</td><td>1000000</td><td></td></tr>
* <tr><td>normal</td><td>0</td><td></td></tr>
* </table>
*
* @attr name android:imeOptions
*/
public static final int SearchView_android_imeOptions=3;
/**
* <p>
* @attr description
* Close button icon
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:closeIcon
*/
public static final int SearchView_closeIcon=4;
/**
* <p>
* @attr description
* Commit icon shown in the query suggestion row
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:commitIcon
*/
public static final int SearchView_commitIcon=5;
/**
* <p>
* @attr description
* Default query hint used when {@code queryHint} is undefined and
* the search view's {@code SearchableInfo} does not provide a hint.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name org.nativescript.MAD2:defaultQueryHint
*/
public static final int SearchView_defaultQueryHint=6;
/**
* <p>
* @attr description
* Go button icon
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:goIcon
*/
public static final int SearchView_goIcon=7;
/**
* <p>
* @attr description
* The default state of the SearchView. If true, it will be iconified when not in
* use and expanded when clicked.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:iconifiedByDefault
*/
public static final int SearchView_iconifiedByDefault=8;
/**
* <p>
* @attr description
* The layout to use for the search view.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:layout
*/
public static final int SearchView_layout=9;
/**
* <p>
* @attr description
* Background for the section containing the search query
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:queryBackground
*/
public static final int SearchView_queryBackground=10;
/**
* <p>
* @attr description
* An optional user-defined query hint string to be displayed in the empty query field.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name org.nativescript.MAD2:queryHint
*/
public static final int SearchView_queryHint=11;
/**
* <p>
* @attr description
* Search icon displayed as a text field hint
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:searchHintIcon
*/
public static final int SearchView_searchHintIcon=12;
/**
* <p>
* @attr description
* Search icon
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:searchIcon
*/
public static final int SearchView_searchIcon=13;
/**
* <p>
* @attr description
* Background for the section containing the action (e.g. voice search)
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:submitBackground
*/
public static final int SearchView_submitBackground=14;
/**
* <p>
* @attr description
* Layout for query suggestion rows
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:suggestionRowLayout
*/
public static final int SearchView_suggestionRowLayout=15;
/**
* <p>
* @attr description
* Voice button icon
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:voiceIcon
*/
public static final int SearchView_voiceIcon=16;
/**
* Attributes that can be used with a Snackbar.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #Snackbar_snackbarButtonStyle org.nativescript.MAD2:snackbarButtonStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #Snackbar_snackbarStyle org.nativescript.MAD2:snackbarStyle}</code></td><td></td></tr>
* </table>
* @see #Snackbar_snackbarButtonStyle
* @see #Snackbar_snackbarStyle
*/
public static final int[] Snackbar={
0x7f030162, 0x7f030163
};
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#snackbarButtonStyle}
* attribute's value can be found in the {@link #Snackbar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:snackbarButtonStyle
*/
public static final int Snackbar_snackbarButtonStyle=0;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#snackbarStyle}
* attribute's value can be found in the {@link #Snackbar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:snackbarStyle
*/
public static final int Snackbar_snackbarStyle=1;
/**
* Attributes that can be used with a SnackbarLayout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #SnackbarLayout_android_maxWidth android:maxWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #SnackbarLayout_elevation org.nativescript.MAD2:elevation}</code></td><td>Elevation for the action bar itself</td></tr>
* <tr><td><code>{@link #SnackbarLayout_maxActionInlineWidth org.nativescript.MAD2:maxActionInlineWidth}</code></td><td></td></tr>
* </table>
* @see #SnackbarLayout_android_maxWidth
* @see #SnackbarLayout_elevation
* @see #SnackbarLayout_maxActionInlineWidth
*/
public static final int[] SnackbarLayout={
0x0101011f, 0x7f0300b5, 0x7f030128
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#maxWidth}
* attribute's value can be found in the {@link #SnackbarLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:maxWidth
*/
public static final int SnackbarLayout_android_maxWidth=0;
/**
* <p>
* @attr description
* Elevation for the action bar itself
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:elevation
*/
public static final int SnackbarLayout_elevation=1;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#maxActionInlineWidth}
* attribute's value can be found in the {@link #SnackbarLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:maxActionInlineWidth
*/
public static final int SnackbarLayout_maxActionInlineWidth=2;
/**
* Attributes that can be used with a Spinner.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #Spinner_android_entries android:entries}</code></td><td></td></tr>
* <tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #Spinner_android_prompt android:prompt}</code></td><td></td></tr>
* <tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #Spinner_popupTheme org.nativescript.MAD2:popupTheme}</code></td><td>Reference to a theme that should be used to inflate popups
* shown by widgets in the action bar.</td></tr>
* </table>
* @see #Spinner_android_entries
* @see #Spinner_android_popupBackground
* @see #Spinner_android_prompt
* @see #Spinner_android_dropDownWidth
* @see #Spinner_popupTheme
*/
public static final int[] Spinner={
0x010100b2, 0x01010176, 0x0101017b, 0x01010262,
0x7f030141
};
/**
* <p>
* @attr description
* Reference to an array resource that will populate the Spinner.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:entries
*/
public static final int Spinner_android_entries=0;
/**
* <p>
* @attr description
* Background drawable to use for the dropdown in spinnerMode="dropdown".
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:popupBackground
*/
public static final int Spinner_android_popupBackground=1;
/**
* <p>
* @attr description
* The prompt to display when the spinner's dialog is shown.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:prompt
*/
public static final int Spinner_android_prompt=2;
/**
* <p>
* @attr description
* Width of the dropdown in spinnerMode="dropdown".
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>fill_parent</td><td>ffffffff</td><td></td></tr>
* <tr><td>match_parent</td><td>ffffffff</td><td></td></tr>
* <tr><td>wrap_content</td><td>fffffffe</td><td></td></tr>
* </table>
*
* @attr name android:dropDownWidth
*/
public static final int Spinner_android_dropDownWidth=3;
/**
* <p>
* @attr description
* Theme to use for the drop-down or dialog popup window.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:popupTheme
*/
public static final int Spinner_popupTheme=4;
/**
* Attributes that can be used with a StateListDrawable.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #StateListDrawable_android_dither android:dither}</code></td><td></td></tr>
* <tr><td><code>{@link #StateListDrawable_android_visible android:visible}</code></td><td></td></tr>
* <tr><td><code>{@link #StateListDrawable_android_variablePadding android:variablePadding}</code></td><td></td></tr>
* <tr><td><code>{@link #StateListDrawable_android_constantSize android:constantSize}</code></td><td></td></tr>
* <tr><td><code>{@link #StateListDrawable_android_enterFadeDuration android:enterFadeDuration}</code></td><td></td></tr>
* <tr><td><code>{@link #StateListDrawable_android_exitFadeDuration android:exitFadeDuration}</code></td><td></td></tr>
* </table>
* @see #StateListDrawable_android_dither
* @see #StateListDrawable_android_visible
* @see #StateListDrawable_android_variablePadding
* @see #StateListDrawable_android_constantSize
* @see #StateListDrawable_android_enterFadeDuration
* @see #StateListDrawable_android_exitFadeDuration
*/
public static final int[] StateListDrawable={
0x0101011c, 0x01010194, 0x01010195, 0x01010196,
0x0101030c, 0x0101030d
};
/**
* <p>
* @attr description
* Enables or disables dithering of the bitmap if the bitmap does not have the
* same pixel configuration as the screen (for instance: a ARGB 8888 bitmap with
* an RGB 565 screen).
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:dither
*/
public static final int StateListDrawable_android_dither=0;
/**
* <p>
* @attr description
* Indicates whether the drawable should be initially visible.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:visible
*/
public static final int StateListDrawable_android_visible=1;
/**
* <p>
* @attr description
* If true, allows the drawable's padding to change based on the
* current state that is selected. If false, the padding will
* stay the same (based on the maximum padding of all the states).
* Enabling this feature requires that the owner of the drawable
* deal with performing layout when the state changes, which is
* often not supported.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:variablePadding
*/
public static final int StateListDrawable_android_variablePadding=2;
/**
* <p>
* @attr description
* If true, the drawable's reported internal size will remain
* constant as the state changes; the size is the maximum of all
* of the states. If false, the size will vary based on the
* current state.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name android:constantSize
*/
public static final int StateListDrawable_android_constantSize=3;
/**
* <p>
* @attr description
* Amount of time (in milliseconds) to fade in a new state drawable.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name android:enterFadeDuration
*/
public static final int StateListDrawable_android_enterFadeDuration=4;
/**
* <p>
* @attr description
* Amount of time (in milliseconds) to fade out an old state drawable.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name android:exitFadeDuration
*/
public static final int StateListDrawable_android_exitFadeDuration=5;
/**
* Attributes that can be used with a StateListDrawableItem.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #StateListDrawableItem_android_drawable android:drawable}</code></td><td></td></tr>
* </table>
* @see #StateListDrawableItem_android_drawable
*/
public static final int[] StateListDrawableItem={
0x01010199
};
/**
* <p>
* @attr description
* Reference to a drawable resource to use for the state. If not
* given, the drawable must be defined by the first child tag.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:drawable
*/
public static final int StateListDrawableItem_android_drawable=0;
/**
* Attributes that can be used with a SwitchCompat.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #SwitchCompat_android_textOn android:textOn}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_android_textOff android:textOff}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_android_thumb android:thumb}</code></td><td></td></tr>
* <tr><td><code>{@link #SwitchCompat_showText org.nativescript.MAD2:showText}</code></td><td>Whether to draw on/off text.</td></tr>
* <tr><td><code>{@link #SwitchCompat_splitTrack org.nativescript.MAD2:splitTrack}</code></td><td>Whether to split the track and leave a gap for the thumb drawable.</td></tr>
* <tr><td><code>{@link #SwitchCompat_switchMinWidth org.nativescript.MAD2:switchMinWidth}</code></td><td>Minimum width for the switch component</td></tr>
* <tr><td><code>{@link #SwitchCompat_switchPadding org.nativescript.MAD2:switchPadding}</code></td><td>Minimum space between the switch and caption text</td></tr>
* <tr><td><code>{@link #SwitchCompat_switchTextAppearance org.nativescript.MAD2:switchTextAppearance}</code></td><td>TextAppearance style for text displayed on the switch thumb.</td></tr>
* <tr><td><code>{@link #SwitchCompat_thumbTextPadding org.nativescript.MAD2:thumbTextPadding}</code></td><td>Amount of padding on either side of text within the switch thumb.</td></tr>
* <tr><td><code>{@link #SwitchCompat_thumbTint org.nativescript.MAD2:thumbTint}</code></td><td>Tint to apply to the thumb drawable.</td></tr>
* <tr><td><code>{@link #SwitchCompat_thumbTintMode org.nativescript.MAD2:thumbTintMode}</code></td><td>Blending mode used to apply the thumb tint.</td></tr>
* <tr><td><code>{@link #SwitchCompat_track org.nativescript.MAD2:track}</code></td><td>Drawable to use as the "track" that the switch thumb slides within.</td></tr>
* <tr><td><code>{@link #SwitchCompat_trackTint org.nativescript.MAD2:trackTint}</code></td><td>Tint to apply to the track.</td></tr>
* <tr><td><code>{@link #SwitchCompat_trackTintMode org.nativescript.MAD2:trackTintMode}</code></td><td>Blending mode used to apply the track tint.</td></tr>
* </table>
* @see #SwitchCompat_android_textOn
* @see #SwitchCompat_android_textOff
* @see #SwitchCompat_android_thumb
* @see #SwitchCompat_showText
* @see #SwitchCompat_splitTrack
* @see #SwitchCompat_switchMinWidth
* @see #SwitchCompat_switchPadding
* @see #SwitchCompat_switchTextAppearance
* @see #SwitchCompat_thumbTextPadding
* @see #SwitchCompat_thumbTint
* @see #SwitchCompat_thumbTintMode
* @see #SwitchCompat_track
* @see #SwitchCompat_trackTint
* @see #SwitchCompat_trackTintMode
*/
public static final int[] SwitchCompat={
0x01010124, 0x01010125, 0x01010142, 0x7f03015d,
0x7f030168, 0x7f03017b, 0x7f03017c, 0x7f03017e,
0x7f0301b6, 0x7f0301b7, 0x7f0301b8, 0x7f0301cf,
0x7f0301d0, 0x7f0301d1
};
/**
* <p>
* @attr description
* Text to use when the switch is in the checked/"on" state.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:textOn
*/
public static final int SwitchCompat_android_textOn=0;
/**
* <p>
* @attr description
* Text to use when the switch is in the unchecked/"off" state.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:textOff
*/
public static final int SwitchCompat_android_textOff=1;
/**
* <p>
* @attr description
* Drawable to use as the "thumb" that switches back and forth.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:thumb
*/
public static final int SwitchCompat_android_thumb=2;
/**
* <p>
* @attr description
* Whether to draw on/off text.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:showText
*/
public static final int SwitchCompat_showText=3;
/**
* <p>
* @attr description
* Whether to split the track and leave a gap for the thumb drawable.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:splitTrack
*/
public static final int SwitchCompat_splitTrack=4;
/**
* <p>
* @attr description
* Minimum width for the switch component
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:switchMinWidth
*/
public static final int SwitchCompat_switchMinWidth=5;
/**
* <p>
* @attr description
* Minimum space between the switch and caption text
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:switchPadding
*/
public static final int SwitchCompat_switchPadding=6;
/**
* <p>
* @attr description
* TextAppearance style for text displayed on the switch thumb.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:switchTextAppearance
*/
public static final int SwitchCompat_switchTextAppearance=7;
/**
* <p>
* @attr description
* Amount of padding on either side of text within the switch thumb.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:thumbTextPadding
*/
public static final int SwitchCompat_thumbTextPadding=8;
/**
* <p>
* @attr description
* Tint to apply to the thumb drawable.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:thumbTint
*/
public static final int SwitchCompat_thumbTint=9;
/**
* <p>
* @attr description
* Blending mode used to apply the thumb tint.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td>Combines the tint and drawable color and alpha channels, clamping the
* result to valid color values. Saturate(S + D)</td></tr>
* <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of
* the tint. [Sa * Da, Sc * Dc]</td></tr>
* <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr>
* <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha
* channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr>
* <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s
* color channels are thrown out. [Sa * Da, Sc * Da]</td></tr>
* <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable.
* [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:thumbTintMode
*/
public static final int SwitchCompat_thumbTintMode=10;
/**
* <p>
* @attr description
* Drawable to use as the "track" that the switch thumb slides within.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:track
*/
public static final int SwitchCompat_track=11;
/**
* <p>
* @attr description
* Tint to apply to the track.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:trackTint
*/
public static final int SwitchCompat_trackTint=12;
/**
* <p>
* @attr description
* Blending mode used to apply the track tint.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td>Combines the tint and drawable color and alpha channels, clamping the
* result to valid color values. Saturate(S + D)</td></tr>
* <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of
* the tint. [Sa * Da, Sc * Dc]</td></tr>
* <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr>
* <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha
* channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr>
* <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s
* color channels are thrown out. [Sa * Da, Sc * Da]</td></tr>
* <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable.
* [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:trackTintMode
*/
public static final int SwitchCompat_trackTintMode=13;
/**
* Attributes that can be used with a TabItem.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #TabItem_android_icon android:icon}</code></td><td></td></tr>
* <tr><td><code>{@link #TabItem_android_layout android:layout}</code></td><td></td></tr>
* <tr><td><code>{@link #TabItem_android_text android:text}</code></td><td></td></tr>
* </table>
* @see #TabItem_android_icon
* @see #TabItem_android_layout
* @see #TabItem_android_text
*/
public static final int[] TabItem={
0x01010002, 0x010100f2, 0x0101014f
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#icon}
* attribute's value can be found in the {@link #TabItem} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:icon
*/
public static final int TabItem_android_icon=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#layout}
* attribute's value can be found in the {@link #TabItem} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:layout
*/
public static final int TabItem_android_layout=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#text}
* attribute's value can be found in the {@link #TabItem} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:text
*/
public static final int TabItem_android_text=2;
/**
* Attributes that can be used with a TabLayout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #TabLayout_tabBackground org.nativescript.MAD2:tabBackground}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabContentStart org.nativescript.MAD2:tabContentStart}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabGravity org.nativescript.MAD2:tabGravity}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabIconTint org.nativescript.MAD2:tabIconTint}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabIconTintMode org.nativescript.MAD2:tabIconTintMode}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabIndicator org.nativescript.MAD2:tabIndicator}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabIndicatorAnimationDuration org.nativescript.MAD2:tabIndicatorAnimationDuration}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabIndicatorColor org.nativescript.MAD2:tabIndicatorColor}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabIndicatorFullWidth org.nativescript.MAD2:tabIndicatorFullWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabIndicatorGravity org.nativescript.MAD2:tabIndicatorGravity}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabIndicatorHeight org.nativescript.MAD2:tabIndicatorHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabInlineLabel org.nativescript.MAD2:tabInlineLabel}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabMaxWidth org.nativescript.MAD2:tabMaxWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabMinWidth org.nativescript.MAD2:tabMinWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabMode org.nativescript.MAD2:tabMode}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabPadding org.nativescript.MAD2:tabPadding}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabPaddingBottom org.nativescript.MAD2:tabPaddingBottom}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabPaddingEnd org.nativescript.MAD2:tabPaddingEnd}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabPaddingStart org.nativescript.MAD2:tabPaddingStart}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabPaddingTop org.nativescript.MAD2:tabPaddingTop}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabRippleColor org.nativescript.MAD2:tabRippleColor}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabSelectedTextColor org.nativescript.MAD2:tabSelectedTextColor}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabTextAppearance org.nativescript.MAD2:tabTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabTextColor org.nativescript.MAD2:tabTextColor}</code></td><td></td></tr>
* <tr><td><code>{@link #TabLayout_tabUnboundedRipple org.nativescript.MAD2:tabUnboundedRipple}</code></td><td></td></tr>
* </table>
* @see #TabLayout_tabBackground
* @see #TabLayout_tabContentStart
* @see #TabLayout_tabGravity
* @see #TabLayout_tabIconTint
* @see #TabLayout_tabIconTintMode
* @see #TabLayout_tabIndicator
* @see #TabLayout_tabIndicatorAnimationDuration
* @see #TabLayout_tabIndicatorColor
* @see #TabLayout_tabIndicatorFullWidth
* @see #TabLayout_tabIndicatorGravity
* @see #TabLayout_tabIndicatorHeight
* @see #TabLayout_tabInlineLabel
* @see #TabLayout_tabMaxWidth
* @see #TabLayout_tabMinWidth
* @see #TabLayout_tabMode
* @see #TabLayout_tabPadding
* @see #TabLayout_tabPaddingBottom
* @see #TabLayout_tabPaddingEnd
* @see #TabLayout_tabPaddingStart
* @see #TabLayout_tabPaddingTop
* @see #TabLayout_tabRippleColor
* @see #TabLayout_tabSelectedTextColor
* @see #TabLayout_tabTextAppearance
* @see #TabLayout_tabTextColor
* @see #TabLayout_tabUnboundedRipple
*/
public static final int[] TabLayout={
0x7f03017f, 0x7f030180, 0x7f030181, 0x7f030182,
0x7f030183, 0x7f030184, 0x7f030185, 0x7f030186,
0x7f030187, 0x7f030188, 0x7f030189, 0x7f03018a,
0x7f03018b, 0x7f03018c, 0x7f03018d, 0x7f03018e,
0x7f03018f, 0x7f030190, 0x7f030191, 0x7f030192,
0x7f030193, 0x7f030194, 0x7f030196, 0x7f030197,
0x7f030198
};
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#tabBackground}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:tabBackground
*/
public static final int TabLayout_tabBackground=0;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#tabContentStart}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:tabContentStart
*/
public static final int TabLayout_tabContentStart=1;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#tabGravity}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>center</td><td>1</td><td></td></tr>
* <tr><td>fill</td><td>0</td><td></td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:tabGravity
*/
public static final int TabLayout_tabGravity=2;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#tabIconTint}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:tabIconTint
*/
public static final int TabLayout_tabIconTint=3;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#tabIconTintMode}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td></td></tr>
* <tr><td>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:tabIconTintMode
*/
public static final int TabLayout_tabIconTintMode=4;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#tabIndicator}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:tabIndicator
*/
public static final int TabLayout_tabIndicator=5;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#tabIndicatorAnimationDuration}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name org.nativescript.MAD2:tabIndicatorAnimationDuration
*/
public static final int TabLayout_tabIndicatorAnimationDuration=6;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#tabIndicatorColor}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:tabIndicatorColor
*/
public static final int TabLayout_tabIndicatorColor=7;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#tabIndicatorFullWidth}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:tabIndicatorFullWidth
*/
public static final int TabLayout_tabIndicatorFullWidth=8;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#tabIndicatorGravity}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>0</td><td></td></tr>
* <tr><td>center</td><td>1</td><td></td></tr>
* <tr><td>stretch</td><td>3</td><td></td></tr>
* <tr><td>top</td><td>2</td><td></td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:tabIndicatorGravity
*/
public static final int TabLayout_tabIndicatorGravity=9;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#tabIndicatorHeight}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:tabIndicatorHeight
*/
public static final int TabLayout_tabIndicatorHeight=10;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#tabInlineLabel}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:tabInlineLabel
*/
public static final int TabLayout_tabInlineLabel=11;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#tabMaxWidth}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:tabMaxWidth
*/
public static final int TabLayout_tabMaxWidth=12;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#tabMinWidth}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:tabMinWidth
*/
public static final int TabLayout_tabMinWidth=13;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#tabMode}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>fixed</td><td>1</td><td></td></tr>
* <tr><td>scrollable</td><td>0</td><td></td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:tabMode
*/
public static final int TabLayout_tabMode=14;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#tabPadding}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:tabPadding
*/
public static final int TabLayout_tabPadding=15;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#tabPaddingBottom}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:tabPaddingBottom
*/
public static final int TabLayout_tabPaddingBottom=16;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#tabPaddingEnd}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:tabPaddingEnd
*/
public static final int TabLayout_tabPaddingEnd=17;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#tabPaddingStart}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:tabPaddingStart
*/
public static final int TabLayout_tabPaddingStart=18;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#tabPaddingTop}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:tabPaddingTop
*/
public static final int TabLayout_tabPaddingTop=19;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#tabRippleColor}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:tabRippleColor
*/
public static final int TabLayout_tabRippleColor=20;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#tabSelectedTextColor}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:tabSelectedTextColor
*/
public static final int TabLayout_tabSelectedTextColor=21;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#tabTextAppearance}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:tabTextAppearance
*/
public static final int TabLayout_tabTextAppearance=22;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#tabTextColor}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:tabTextColor
*/
public static final int TabLayout_tabTextColor=23;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#tabUnboundedRipple}
* attribute's value can be found in the {@link #TabLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:tabUnboundedRipple
*/
public static final int TabLayout_tabUnboundedRipple=24;
/**
* Attributes that can be used with a TextAppearance.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #TextAppearance_android_textSize android:textSize}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_typeface android:typeface}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_textStyle android:textStyle}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_textColor android:textColor}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_textColorHint android:textColorHint}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_textColorLink android:textColorLink}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_shadowColor android:shadowColor}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_shadowDx android:shadowDx}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_shadowDy android:shadowDy}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_shadowRadius android:shadowRadius}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_android_fontFamily android:fontFamily}</code></td><td></td></tr>
* <tr><td><code>{@link #TextAppearance_fontFamily org.nativescript.MAD2:fontFamily}</code></td><td>The attribute for the font family.</td></tr>
* <tr><td><code>{@link #TextAppearance_textAllCaps org.nativescript.MAD2:textAllCaps}</code></td><td>Present the text in ALL CAPS.</td></tr>
* </table>
* @see #TextAppearance_android_textSize
* @see #TextAppearance_android_typeface
* @see #TextAppearance_android_textStyle
* @see #TextAppearance_android_textColor
* @see #TextAppearance_android_textColorHint
* @see #TextAppearance_android_textColorLink
* @see #TextAppearance_android_shadowColor
* @see #TextAppearance_android_shadowDx
* @see #TextAppearance_android_shadowDy
* @see #TextAppearance_android_shadowRadius
* @see #TextAppearance_android_fontFamily
* @see #TextAppearance_fontFamily
* @see #TextAppearance_textAllCaps
*/
public static final int[] TextAppearance={
0x01010095, 0x01010096, 0x01010097, 0x01010098,
0x0101009a, 0x0101009b, 0x01010161, 0x01010162,
0x01010163, 0x01010164, 0x010103ac, 0x7f0300d2,
0x7f030199
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#textSize}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:textSize
*/
public static final int TextAppearance_android_textSize=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#typeface}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>monospace</td><td>3</td><td></td></tr>
* <tr><td>normal</td><td>0</td><td></td></tr>
* <tr><td>sans</td><td>1</td><td></td></tr>
* <tr><td>serif</td><td>2</td><td></td></tr>
* </table>
*
* @attr name android:typeface
*/
public static final int TextAppearance_android_typeface=1;
/**
* <p>This symbol is the offset where the {@link android.R.attr#textStyle}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bold</td><td>1</td><td></td></tr>
* <tr><td>italic</td><td>2</td><td></td></tr>
* <tr><td>normal</td><td>0</td><td></td></tr>
* </table>
*
* @attr name android:textStyle
*/
public static final int TextAppearance_android_textStyle=2;
/**
* <p>This symbol is the offset where the {@link android.R.attr#textColor}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:textColor
*/
public static final int TextAppearance_android_textColor=3;
/**
* <p>This symbol is the offset where the {@link android.R.attr#textColorHint}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:textColorHint
*/
public static final int TextAppearance_android_textColorHint=4;
/**
* <p>This symbol is the offset where the {@link android.R.attr#textColorLink}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:textColorLink
*/
public static final int TextAppearance_android_textColorLink=5;
/**
* <p>This symbol is the offset where the {@link android.R.attr#shadowColor}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:shadowColor
*/
public static final int TextAppearance_android_shadowColor=6;
/**
* <p>This symbol is the offset where the {@link android.R.attr#shadowDx}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:shadowDx
*/
public static final int TextAppearance_android_shadowDx=7;
/**
* <p>This symbol is the offset where the {@link android.R.attr#shadowDy}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:shadowDy
*/
public static final int TextAppearance_android_shadowDy=8;
/**
* <p>This symbol is the offset where the {@link android.R.attr#shadowRadius}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a floating point value, such as "<code>1.2</code>".
*
* @attr name android:shadowRadius
*/
public static final int TextAppearance_android_shadowRadius=9;
/**
* <p>This symbol is the offset where the {@link android.R.attr#fontFamily}
* attribute's value can be found in the {@link #TextAppearance} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:fontFamily
*/
public static final int TextAppearance_android_fontFamily=10;
/**
* <p>
* @attr description
* The attribute for the font family.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name org.nativescript.MAD2:fontFamily
*/
public static final int TextAppearance_fontFamily=11;
/**
* <p>
* @attr description
* Present the text in ALL CAPS. This may use a small-caps form when available.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:textAllCaps
*/
public static final int TextAppearance_textAllCaps=12;
/**
* Attributes that can be used with a TextInputLayout.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #TextInputLayout_android_textColorHint android:textColorHint}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_android_hint android:hint}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_boxBackgroundColor org.nativescript.MAD2:boxBackgroundColor}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_boxBackgroundMode org.nativescript.MAD2:boxBackgroundMode}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_boxCollapsedPaddingTop org.nativescript.MAD2:boxCollapsedPaddingTop}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_boxCornerRadiusBottomEnd org.nativescript.MAD2:boxCornerRadiusBottomEnd}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_boxCornerRadiusBottomStart org.nativescript.MAD2:boxCornerRadiusBottomStart}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_boxCornerRadiusTopEnd org.nativescript.MAD2:boxCornerRadiusTopEnd}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_boxCornerRadiusTopStart org.nativescript.MAD2:boxCornerRadiusTopStart}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_boxStrokeColor org.nativescript.MAD2:boxStrokeColor}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_boxStrokeWidth org.nativescript.MAD2:boxStrokeWidth}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_counterEnabled org.nativescript.MAD2:counterEnabled}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_counterMaxLength org.nativescript.MAD2:counterMaxLength}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_counterOverflowTextAppearance org.nativescript.MAD2:counterOverflowTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_counterTextAppearance org.nativescript.MAD2:counterTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_errorEnabled org.nativescript.MAD2:errorEnabled}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_errorTextAppearance org.nativescript.MAD2:errorTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_helperText org.nativescript.MAD2:helperText}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_helperTextEnabled org.nativescript.MAD2:helperTextEnabled}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_helperTextTextAppearance org.nativescript.MAD2:helperTextTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_hintAnimationEnabled org.nativescript.MAD2:hintAnimationEnabled}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_hintEnabled org.nativescript.MAD2:hintEnabled}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_hintTextAppearance org.nativescript.MAD2:hintTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_passwordToggleContentDescription org.nativescript.MAD2:passwordToggleContentDescription}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_passwordToggleDrawable org.nativescript.MAD2:passwordToggleDrawable}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_passwordToggleEnabled org.nativescript.MAD2:passwordToggleEnabled}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_passwordToggleTint org.nativescript.MAD2:passwordToggleTint}</code></td><td></td></tr>
* <tr><td><code>{@link #TextInputLayout_passwordToggleTintMode org.nativescript.MAD2:passwordToggleTintMode}</code></td><td></td></tr>
* </table>
* @see #TextInputLayout_android_textColorHint
* @see #TextInputLayout_android_hint
* @see #TextInputLayout_boxBackgroundColor
* @see #TextInputLayout_boxBackgroundMode
* @see #TextInputLayout_boxCollapsedPaddingTop
* @see #TextInputLayout_boxCornerRadiusBottomEnd
* @see #TextInputLayout_boxCornerRadiusBottomStart
* @see #TextInputLayout_boxCornerRadiusTopEnd
* @see #TextInputLayout_boxCornerRadiusTopStart
* @see #TextInputLayout_boxStrokeColor
* @see #TextInputLayout_boxStrokeWidth
* @see #TextInputLayout_counterEnabled
* @see #TextInputLayout_counterMaxLength
* @see #TextInputLayout_counterOverflowTextAppearance
* @see #TextInputLayout_counterTextAppearance
* @see #TextInputLayout_errorEnabled
* @see #TextInputLayout_errorTextAppearance
* @see #TextInputLayout_helperText
* @see #TextInputLayout_helperTextEnabled
* @see #TextInputLayout_helperTextTextAppearance
* @see #TextInputLayout_hintAnimationEnabled
* @see #TextInputLayout_hintEnabled
* @see #TextInputLayout_hintTextAppearance
* @see #TextInputLayout_passwordToggleContentDescription
* @see #TextInputLayout_passwordToggleDrawable
* @see #TextInputLayout_passwordToggleEnabled
* @see #TextInputLayout_passwordToggleTint
* @see #TextInputLayout_passwordToggleTintMode
*/
public static final int[] TextInputLayout={
0x0101009a, 0x01010150, 0x7f030043, 0x7f030044,
0x7f030045, 0x7f030046, 0x7f030047, 0x7f030048,
0x7f030049, 0x7f03004a, 0x7f03004b, 0x7f0300a0,
0x7f0300a1, 0x7f0300a2, 0x7f0300a3, 0x7f0300b8,
0x7f0300b9, 0x7f0300e1, 0x7f0300e2, 0x7f0300e3,
0x7f0300e7, 0x7f0300e8, 0x7f0300e9, 0x7f03013b,
0x7f03013c, 0x7f03013d, 0x7f03013e, 0x7f03013f
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#textColorHint}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:textColorHint
*/
public static final int TextInputLayout_android_textColorHint=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#hint}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name android:hint
*/
public static final int TextInputLayout_android_hint=1;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#boxBackgroundColor}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:boxBackgroundColor
*/
public static final int TextInputLayout_boxBackgroundColor=2;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#boxBackgroundMode}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>filled</td><td>1</td><td></td></tr>
* <tr><td>none</td><td>0</td><td></td></tr>
* <tr><td>outline</td><td>2</td><td></td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:boxBackgroundMode
*/
public static final int TextInputLayout_boxBackgroundMode=3;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#boxCollapsedPaddingTop}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:boxCollapsedPaddingTop
*/
public static final int TextInputLayout_boxCollapsedPaddingTop=4;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#boxCornerRadiusBottomEnd}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:boxCornerRadiusBottomEnd
*/
public static final int TextInputLayout_boxCornerRadiusBottomEnd=5;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#boxCornerRadiusBottomStart}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:boxCornerRadiusBottomStart
*/
public static final int TextInputLayout_boxCornerRadiusBottomStart=6;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#boxCornerRadiusTopEnd}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:boxCornerRadiusTopEnd
*/
public static final int TextInputLayout_boxCornerRadiusTopEnd=7;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#boxCornerRadiusTopStart}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:boxCornerRadiusTopStart
*/
public static final int TextInputLayout_boxCornerRadiusTopStart=8;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#boxStrokeColor}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:boxStrokeColor
*/
public static final int TextInputLayout_boxStrokeColor=9;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#boxStrokeWidth}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:boxStrokeWidth
*/
public static final int TextInputLayout_boxStrokeWidth=10;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#counterEnabled}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:counterEnabled
*/
public static final int TextInputLayout_counterEnabled=11;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#counterMaxLength}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be an integer value, such as "<code>100</code>".
*
* @attr name org.nativescript.MAD2:counterMaxLength
*/
public static final int TextInputLayout_counterMaxLength=12;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#counterOverflowTextAppearance}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:counterOverflowTextAppearance
*/
public static final int TextInputLayout_counterOverflowTextAppearance=13;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#counterTextAppearance}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:counterTextAppearance
*/
public static final int TextInputLayout_counterTextAppearance=14;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#errorEnabled}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:errorEnabled
*/
public static final int TextInputLayout_errorEnabled=15;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#errorTextAppearance}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:errorTextAppearance
*/
public static final int TextInputLayout_errorTextAppearance=16;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#helperText}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name org.nativescript.MAD2:helperText
*/
public static final int TextInputLayout_helperText=17;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#helperTextEnabled}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:helperTextEnabled
*/
public static final int TextInputLayout_helperTextEnabled=18;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#helperTextTextAppearance}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:helperTextTextAppearance
*/
public static final int TextInputLayout_helperTextTextAppearance=19;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#hintAnimationEnabled}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:hintAnimationEnabled
*/
public static final int TextInputLayout_hintAnimationEnabled=20;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#hintEnabled}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:hintEnabled
*/
public static final int TextInputLayout_hintEnabled=21;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#hintTextAppearance}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:hintTextAppearance
*/
public static final int TextInputLayout_hintTextAppearance=22;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#passwordToggleContentDescription}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name org.nativescript.MAD2:passwordToggleContentDescription
*/
public static final int TextInputLayout_passwordToggleContentDescription=23;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#passwordToggleDrawable}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:passwordToggleDrawable
*/
public static final int TextInputLayout_passwordToggleDrawable=24;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#passwordToggleEnabled}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:passwordToggleEnabled
*/
public static final int TextInputLayout_passwordToggleEnabled=25;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#passwordToggleTint}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:passwordToggleTint
*/
public static final int TextInputLayout_passwordToggleTint=26;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#passwordToggleTintMode}
* attribute's value can be found in the {@link #TextInputLayout} array.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>multiply</td><td>e</td><td></td></tr>
* <tr><td>screen</td><td>f</td><td></td></tr>
* <tr><td>src_atop</td><td>9</td><td></td></tr>
* <tr><td>src_in</td><td>5</td><td></td></tr>
* <tr><td>src_over</td><td>3</td><td></td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:passwordToggleTintMode
*/
public static final int TextInputLayout_passwordToggleTintMode=27;
/**
* Attributes that can be used with a ThemeEnforcement.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ThemeEnforcement_android_textAppearance android:textAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #ThemeEnforcement_enforceMaterialTheme org.nativescript.MAD2:enforceMaterialTheme}</code></td><td></td></tr>
* <tr><td><code>{@link #ThemeEnforcement_enforceTextAppearance org.nativescript.MAD2:enforceTextAppearance}</code></td><td></td></tr>
* </table>
* @see #ThemeEnforcement_android_textAppearance
* @see #ThemeEnforcement_enforceMaterialTheme
* @see #ThemeEnforcement_enforceTextAppearance
*/
public static final int[] ThemeEnforcement={
0x01010034, 0x7f0300b6, 0x7f0300b7
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#textAppearance}
* attribute's value can be found in the {@link #ThemeEnforcement} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:textAppearance
*/
public static final int ThemeEnforcement_android_textAppearance=0;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#enforceMaterialTheme}
* attribute's value can be found in the {@link #ThemeEnforcement} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:enforceMaterialTheme
*/
public static final int ThemeEnforcement_enforceMaterialTheme=1;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#enforceTextAppearance}
* attribute's value can be found in the {@link #ThemeEnforcement} array.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
*
* @attr name org.nativescript.MAD2:enforceTextAppearance
*/
public static final int ThemeEnforcement_enforceTextAppearance=2;
/**
* Attributes that can be used with a Toolbar.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #Toolbar_android_gravity android:gravity}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_android_minHeight android:minHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_buttonGravity org.nativescript.MAD2:buttonGravity}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_collapseContentDescription org.nativescript.MAD2:collapseContentDescription}</code></td><td>Text to set as the content description for the collapse button.</td></tr>
* <tr><td><code>{@link #Toolbar_collapseIcon org.nativescript.MAD2:collapseIcon}</code></td><td>Icon drawable to use for the collapse button.</td></tr>
* <tr><td><code>{@link #Toolbar_contentInsetEnd org.nativescript.MAD2:contentInsetEnd}</code></td><td>Minimum inset for content views within a bar.</td></tr>
* <tr><td><code>{@link #Toolbar_contentInsetEndWithActions org.nativescript.MAD2:contentInsetEndWithActions}</code></td><td>Minimum inset for content views within a bar when actions from a menu
* are present.</td></tr>
* <tr><td><code>{@link #Toolbar_contentInsetLeft org.nativescript.MAD2:contentInsetLeft}</code></td><td>Minimum inset for content views within a bar.</td></tr>
* <tr><td><code>{@link #Toolbar_contentInsetRight org.nativescript.MAD2:contentInsetRight}</code></td><td>Minimum inset for content views within a bar.</td></tr>
* <tr><td><code>{@link #Toolbar_contentInsetStart org.nativescript.MAD2:contentInsetStart}</code></td><td>Minimum inset for content views within a bar.</td></tr>
* <tr><td><code>{@link #Toolbar_contentInsetStartWithNavigation org.nativescript.MAD2:contentInsetStartWithNavigation}</code></td><td>Minimum inset for content views within a bar when a navigation button
* is present, such as the Up button.</td></tr>
* <tr><td><code>{@link #Toolbar_logo org.nativescript.MAD2:logo}</code></td><td>Specifies the drawable used for the application logo.</td></tr>
* <tr><td><code>{@link #Toolbar_logoDescription org.nativescript.MAD2:logoDescription}</code></td><td>A content description string to describe the appearance of the
* associated logo image.</td></tr>
* <tr><td><code>{@link #Toolbar_maxButtonHeight org.nativescript.MAD2:maxButtonHeight}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_navigationContentDescription org.nativescript.MAD2:navigationContentDescription}</code></td><td>Text to set as the content description for the navigation button
* located at the start of the toolbar.</td></tr>
* <tr><td><code>{@link #Toolbar_navigationIcon org.nativescript.MAD2:navigationIcon}</code></td><td>Icon drawable to use for the navigation button located at
* the start of the toolbar.</td></tr>
* <tr><td><code>{@link #Toolbar_popupTheme org.nativescript.MAD2:popupTheme}</code></td><td>Reference to a theme that should be used to inflate popups
* shown by widgets in the action bar.</td></tr>
* <tr><td><code>{@link #Toolbar_subtitle org.nativescript.MAD2:subtitle}</code></td><td>Specifies subtitle text used for navigationMode="normal"</td></tr>
* <tr><td><code>{@link #Toolbar_subtitleTextAppearance org.nativescript.MAD2:subtitleTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_subtitleTextColor org.nativescript.MAD2:subtitleTextColor}</code></td><td>A color to apply to the subtitle string.</td></tr>
* <tr><td><code>{@link #Toolbar_title org.nativescript.MAD2:title}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_titleMargin org.nativescript.MAD2:titleMargin}</code></td><td>Specifies extra space on the left, start, right and end sides
* of the toolbar's title.</td></tr>
* <tr><td><code>{@link #Toolbar_titleMarginBottom org.nativescript.MAD2:titleMarginBottom}</code></td><td>Specifies extra space on the bottom side of the toolbar's title.</td></tr>
* <tr><td><code>{@link #Toolbar_titleMarginEnd org.nativescript.MAD2:titleMarginEnd}</code></td><td>Specifies extra space on the end side of the toolbar's title.</td></tr>
* <tr><td><code>{@link #Toolbar_titleMarginStart org.nativescript.MAD2:titleMarginStart}</code></td><td>Specifies extra space on the start side of the toolbar's title.</td></tr>
* <tr><td><code>{@link #Toolbar_titleMarginTop org.nativescript.MAD2:titleMarginTop}</code></td><td>Specifies extra space on the top side of the toolbar's title.</td></tr>
* <tr><td><code>{@link #Toolbar_titleMargins org.nativescript.MAD2:titleMargins}</code></td><td>{@deprecated Use titleMargin}</td></tr>
* <tr><td><code>{@link #Toolbar_titleTextAppearance org.nativescript.MAD2:titleTextAppearance}</code></td><td></td></tr>
* <tr><td><code>{@link #Toolbar_titleTextColor org.nativescript.MAD2:titleTextColor}</code></td><td>A color to apply to the title string.</td></tr>
* </table>
* @see #Toolbar_android_gravity
* @see #Toolbar_android_minHeight
* @see #Toolbar_buttonGravity
* @see #Toolbar_collapseContentDescription
* @see #Toolbar_collapseIcon
* @see #Toolbar_contentInsetEnd
* @see #Toolbar_contentInsetEndWithActions
* @see #Toolbar_contentInsetLeft
* @see #Toolbar_contentInsetRight
* @see #Toolbar_contentInsetStart
* @see #Toolbar_contentInsetStartWithNavigation
* @see #Toolbar_logo
* @see #Toolbar_logoDescription
* @see #Toolbar_maxButtonHeight
* @see #Toolbar_navigationContentDescription
* @see #Toolbar_navigationIcon
* @see #Toolbar_popupTheme
* @see #Toolbar_subtitle
* @see #Toolbar_subtitleTextAppearance
* @see #Toolbar_subtitleTextColor
* @see #Toolbar_title
* @see #Toolbar_titleMargin
* @see #Toolbar_titleMarginBottom
* @see #Toolbar_titleMarginEnd
* @see #Toolbar_titleMarginStart
* @see #Toolbar_titleMarginTop
* @see #Toolbar_titleMargins
* @see #Toolbar_titleTextAppearance
* @see #Toolbar_titleTextColor
*/
@Deprecated
public static final int[] Toolbar={
0x010100af, 0x01010140, 0x7f030051, 0x7f03007f,
0x7f030080, 0x7f030091, 0x7f030092, 0x7f030093,
0x7f030094, 0x7f030095, 0x7f030096, 0x7f030124,
0x7f030125, 0x7f030129, 0x7f03012e, 0x7f03012f,
0x7f030141, 0x7f030176, 0x7f030177, 0x7f030178,
0x7f0301be, 0x7f0301c0, 0x7f0301c1, 0x7f0301c2,
0x7f0301c3, 0x7f0301c4, 0x7f0301c5, 0x7f0301c6,
0x7f0301c7
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#gravity}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td></td></tr>
* <tr><td>center</td><td>11</td><td></td></tr>
* <tr><td>center_horizontal</td><td>1</td><td></td></tr>
* <tr><td>center_vertical</td><td>10</td><td></td></tr>
* <tr><td>clip_horizontal</td><td>8</td><td></td></tr>
* <tr><td>clip_vertical</td><td>80</td><td></td></tr>
* <tr><td>end</td><td>800005</td><td></td></tr>
* <tr><td>fill</td><td>77</td><td></td></tr>
* <tr><td>fill_horizontal</td><td>7</td><td></td></tr>
* <tr><td>fill_vertical</td><td>70</td><td></td></tr>
* <tr><td>left</td><td>3</td><td></td></tr>
* <tr><td>right</td><td>5</td><td></td></tr>
* <tr><td>start</td><td>800003</td><td></td></tr>
* <tr><td>top</td><td>30</td><td></td></tr>
* </table>
*
* @attr name android:gravity
*/
public static final int Toolbar_android_gravity=0;
/**
* <p>This symbol is the offset where the {@link android.R.attr#minHeight}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name android:minHeight
*/
public static final int Toolbar_android_minHeight=1;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#buttonGravity}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>Must be one or more (separated by '|') of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>bottom</td><td>50</td><td>Push object to the bottom of its container, not changing its size.</td></tr>
* <tr><td>top</td><td>30</td><td>Push object to the top of its container, not changing its size.</td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:buttonGravity
*/
public static final int Toolbar_buttonGravity=2;
/**
* <p>
* @attr description
* Text to set as the content description for the collapse button.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name org.nativescript.MAD2:collapseContentDescription
*/
public static final int Toolbar_collapseContentDescription=3;
/**
* <p>
* @attr description
* Icon drawable to use for the collapse button.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:collapseIcon
*/
public static final int Toolbar_collapseIcon=4;
/**
* <p>
* @attr description
* Minimum inset for content views within a bar. Navigation buttons and
* menu views are excepted. Only valid for some themes and configurations.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:contentInsetEnd
*/
public static final int Toolbar_contentInsetEnd=5;
/**
* <p>
* @attr description
* Minimum inset for content views within a bar when actions from a menu
* are present. Only valid for some themes and configurations.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:contentInsetEndWithActions
*/
public static final int Toolbar_contentInsetEndWithActions=6;
/**
* <p>
* @attr description
* Minimum inset for content views within a bar. Navigation buttons and
* menu views are excepted. Only valid for some themes and configurations.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:contentInsetLeft
*/
public static final int Toolbar_contentInsetLeft=7;
/**
* <p>
* @attr description
* Minimum inset for content views within a bar. Navigation buttons and
* menu views are excepted. Only valid for some themes and configurations.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:contentInsetRight
*/
public static final int Toolbar_contentInsetRight=8;
/**
* <p>
* @attr description
* Minimum inset for content views within a bar. Navigation buttons and
* menu views are excepted. Only valid for some themes and configurations.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:contentInsetStart
*/
public static final int Toolbar_contentInsetStart=9;
/**
* <p>
* @attr description
* Minimum inset for content views within a bar when a navigation button
* is present, such as the Up button. Only valid for some themes and configurations.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:contentInsetStartWithNavigation
*/
public static final int Toolbar_contentInsetStartWithNavigation=10;
/**
* <p>
* @attr description
* Drawable to set as the logo that appears at the starting side of
* the Toolbar, just after the navigation button.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:logo
*/
public static final int Toolbar_logo=11;
/**
* <p>
* @attr description
* A content description string to describe the appearance of the
* associated logo image.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name org.nativescript.MAD2:logoDescription
*/
public static final int Toolbar_logoDescription=12;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#maxButtonHeight}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:maxButtonHeight
*/
public static final int Toolbar_maxButtonHeight=13;
/**
* <p>
* @attr description
* Text to set as the content description for the navigation button
* located at the start of the toolbar.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name org.nativescript.MAD2:navigationContentDescription
*/
public static final int Toolbar_navigationContentDescription=14;
/**
* <p>
* @attr description
* Icon drawable to use for the navigation button located at
* the start of the toolbar.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:navigationIcon
*/
public static final int Toolbar_navigationIcon=15;
/**
* <p>
* @attr description
* Reference to a theme that should be used to inflate popups
* shown by widgets in the toolbar.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:popupTheme
*/
public static final int Toolbar_popupTheme=16;
/**
* <p>
* @attr description
* Specifies subtitle text used for navigationMode="normal"
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name org.nativescript.MAD2:subtitle
*/
public static final int Toolbar_subtitle=17;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#subtitleTextAppearance}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:subtitleTextAppearance
*/
public static final int Toolbar_subtitleTextAppearance=18;
/**
* <p>
* @attr description
* A color to apply to the subtitle string.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:subtitleTextColor
*/
public static final int Toolbar_subtitleTextColor=19;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#title}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a string value, using '\\;' to escape characters such as
* '\\n' or '\\uxxxx' for a unicode character;
*
* @attr name org.nativescript.MAD2:title
*/
public static final int Toolbar_title=20;
/**
* <p>
* @attr description
* Specifies extra space on the left, start, right and end sides
* of the toolbar's title. Margin values should be positive.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:titleMargin
*/
public static final int Toolbar_titleMargin=21;
/**
* <p>
* @attr description
* Specifies extra space on the bottom side of the toolbar's title.
* If both this attribute and titleMargin are specified, then this
* attribute takes precedence. Margin values should be positive.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:titleMarginBottom
*/
public static final int Toolbar_titleMarginBottom=22;
/**
* <p>
* @attr description
* Specifies extra space on the end side of the toolbar's title.
* If both this attribute and titleMargin are specified, then this
* attribute takes precedence. Margin values should be positive.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:titleMarginEnd
*/
public static final int Toolbar_titleMarginEnd=23;
/**
* <p>
* @attr description
* Specifies extra space on the start side of the toolbar's title.
* If both this attribute and titleMargin are specified, then this
* attribute takes precedence. Margin values should be positive.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:titleMarginStart
*/
public static final int Toolbar_titleMarginStart=24;
/**
* <p>
* @attr description
* Specifies extra space on the top side of the toolbar's title.
* If both this attribute and titleMargin are specified, then this
* attribute takes precedence. Margin values should be positive.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:titleMarginTop
*/
public static final int Toolbar_titleMarginTop=25;
/**
* <p>
* @attr description
* {@deprecated Use titleMargin}
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:titleMargins
*/
@Deprecated
public static final int Toolbar_titleMargins=26;
/**
* <p>This symbol is the offset where the {@link org.nativescript.MAD2.R.attr#titleTextAppearance}
* attribute's value can be found in the {@link #Toolbar} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:titleTextAppearance
*/
public static final int Toolbar_titleTextAppearance=27;
/**
* <p>
* @attr description
* A color to apply to the title string.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:titleTextColor
*/
public static final int Toolbar_titleTextColor=28;
/**
* Attributes that can be used with a View.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #View_android_theme android:theme}</code></td><td></td></tr>
* <tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr>
* <tr><td><code>{@link #View_paddingEnd org.nativescript.MAD2:paddingEnd}</code></td><td>Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}.</td></tr>
* <tr><td><code>{@link #View_paddingStart org.nativescript.MAD2:paddingStart}</code></td><td>Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}.</td></tr>
* <tr><td><code>{@link #View_theme org.nativescript.MAD2:theme}</code></td><td>Deprecated.</td></tr>
* </table>
* @see #View_android_theme
* @see #View_android_focusable
* @see #View_paddingEnd
* @see #View_paddingStart
* @see #View_theme
*/
public static final int[] View={
0x01010000, 0x010100da, 0x7f030135, 0x7f030136,
0x7f0301b4
};
/**
* <p>
* @attr description
* Specifies a theme override for a view. When a theme override is set, the
* view will be inflated using a {@link android.content.Context} themed with
* the specified resource.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:theme
*/
public static final int View_android_theme=0;
/**
* <p>
* @attr description
* Boolean that controls whether a view can take focus. By default the user can not
* move focus to a view; by setting this attribute to true the view is
* allowed to take focus. This value does not impact the behavior of
* directly calling {@link android.view.View#requestFocus}, which will
* always request focus regardless of this view. It only impacts where
* focus navigation will try to move focus.
*
* <p>May be a boolean value, such as "<code>true</code>" or
* "<code>false</code>".
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>auto</td><td>10</td><td></td></tr>
* </table>
*
* @attr name android:focusable
*/
public static final int View_android_focusable=1;
/**
* <p>
* @attr description
* Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:paddingEnd
*/
public static final int View_paddingEnd=2;
/**
* <p>
* @attr description
* Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}.
*
* <p>May be a dimension value, which is a floating point number appended with a
* unit such as "<code>14.5sp</code>".
* Available units are: px (pixels), dp (density-independent pixels),
* sp (scaled pixels based on preferred font size), in (inches), and
* mm (millimeters).
*
* @attr name org.nativescript.MAD2:paddingStart
*/
public static final int View_paddingStart=3;
/**
* <p>
* @attr description
* Deprecated.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name org.nativescript.MAD2:theme
*/
public static final int View_theme=4;
/**
* Attributes that can be used with a ViewBackgroundHelper.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ViewBackgroundHelper_android_background android:background}</code></td><td></td></tr>
* <tr><td><code>{@link #ViewBackgroundHelper_backgroundTint org.nativescript.MAD2:backgroundTint}</code></td><td>Tint to apply to the background.</td></tr>
* <tr><td><code>{@link #ViewBackgroundHelper_backgroundTintMode org.nativescript.MAD2:backgroundTintMode}</code></td><td>Blending mode used to apply the background tint.</td></tr>
* </table>
* @see #ViewBackgroundHelper_android_background
* @see #ViewBackgroundHelper_backgroundTint
* @see #ViewBackgroundHelper_backgroundTintMode
*/
public static final int[] ViewBackgroundHelper={
0x010100d4, 0x7f030034, 0x7f030035
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#background}
* attribute's value can be found in the {@link #ViewBackgroundHelper} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name android:background
*/
public static final int ViewBackgroundHelper_android_background=0;
/**
* <p>
* @attr description
* Tint to apply to the background.
*
* <p>May be a color value, in the form of "<code>#<i>rgb</i></code>",
* "<code>#<i>argb</i></code>", "<code>#<i>rrggbb</i></code>", or
* "<code>#<i>aarrggbb</i></code>".
*
* @attr name org.nativescript.MAD2:backgroundTint
*/
public static final int ViewBackgroundHelper_backgroundTint=1;
/**
* <p>
* @attr description
* Blending mode used to apply the background tint.
*
* <p>Must be one of the following constant values.</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Constant</th><th>Value</th><th>Description</th></tr>
* <tr><td>add</td><td>10</td><td>Combines the tint and icon color and alpha channels, clamping the
* result to valid color values. Saturate(S + D)</td></tr>
* <tr><td>multiply</td><td>e</td><td>Multiplies the color and alpha channels of the drawable with those of
* the tint. [Sa * Da, Sc * Dc]</td></tr>
* <tr><td>screen</td><td>f</td><td>[Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]</td></tr>
* <tr><td>src_atop</td><td>9</td><td>The tint is drawn above the drawable, but with the drawable’s alpha
* channel masking the result. [Da, Sc * Da + (1 - Sa) * Dc]</td></tr>
* <tr><td>src_in</td><td>5</td><td>The tint is masked by the alpha channel of the drawable. The drawable’s
* color channels are thrown out. [Sa * Da, Sc * Da]</td></tr>
* <tr><td>src_over</td><td>3</td><td>The tint is drawn on top of the drawable.
* [Sa + (1 - Sa)*Da, Rc = Sc + (1 - Sa)*Dc]</td></tr>
* </table>
*
* @attr name org.nativescript.MAD2:backgroundTintMode
*/
public static final int ViewBackgroundHelper_backgroundTintMode=2;
/**
* Attributes that can be used with a ViewStubCompat.
* <p>Includes the following attributes:</p>
* <table>
* <colgroup align="left" />
* <colgroup align="left" />
* <tr><th>Attribute</th><th>Description</th></tr>
* <tr><td><code>{@link #ViewStubCompat_android_id android:id}</code></td><td></td></tr>
* <tr><td><code>{@link #ViewStubCompat_android_layout android:layout}</code></td><td></td></tr>
* <tr><td><code>{@link #ViewStubCompat_android_inflatedId android:inflatedId}</code></td><td></td></tr>
* </table>
* @see #ViewStubCompat_android_id
* @see #ViewStubCompat_android_layout
* @see #ViewStubCompat_android_inflatedId
*/
public static final int[] ViewStubCompat={
0x010100d0, 0x010100f2, 0x010100f3
};
/**
* <p>This symbol is the offset where the {@link android.R.attr#id}
* attribute's value can be found in the {@link #ViewStubCompat} array.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:id
*/
public static final int ViewStubCompat_android_id=0;
/**
* <p>
* @attr description
* Supply an identifier for the layout resource to inflate when the ViewStub
* becomes visible or when forced to do so. The layout resource must be a
* valid reference to a layout.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:layout
*/
public static final int ViewStubCompat_android_layout=1;
/**
* <p>
* @attr description
* Overrides the id of the inflated View with this value.
*
* <p>May be a reference to another resource, in the form
* "<code>@[+][<i>package</i>:]<i>type</i>/<i>name</i></code>" or a theme
* attribute in the form
* "<code>?[<i>package</i>:]<i>type</i>/<i>name</i></code>".
*
* @attr name android:inflatedId
*/
public static final int ViewStubCompat_android_inflatedId=2;
}
} | [
"[email protected]"
] | |
13d62203c184ba2e2fa77c5cc0e3301ce6d6877f | b038c301e5df4655fcfe9f576a0feb8466b1e8c4 | /src/test/java/steps/StopwatchPageSteps.java | c338f6efde1ce3914936f69ab8724e5bf3c8bdb0 | [] | no_license | polinnkin/Stopwatch_tests | 4a80e000a21fd54ef11ee474b2bdebeb084a7c08 | 3d1f2c01abfc74d8bee61b242305577858607c10 | refs/heads/master | 2023-05-14T17:29:51.352474 | 2020-03-16T22:02:11 | 2020-03-16T22:02:11 | 221,334,248 | 0 | 2 | null | 2023-05-09T18:18:29 | 2019-11-12T23:50:55 | Java | UTF-8 | Java | false | false | 3,690 | java | package steps;
import io.appium.java_client.MobileElement;
import io.appium.java_client.TouchAction;
import io.appium.java_client.android.AndroidDriver;
import io.appium.java_client.touch.LongPressOptions;
import io.appium.java_client.touch.offset.ElementOption;
import io.qameta.allure.Step;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;
import pages.StopwatchPage;
import java.time.Duration;
import static org.hamcrest.MatcherAssert.assertThat;
/**
* Steps for the main stopwatch page
*/
public class StopwatchPageSteps extends AbstractStep {
private StopwatchPage stopwatchPage = new StopwatchPage(driver);
public StopwatchPageSteps(AndroidDriver driver) {
super(driver);
}
private PermissionPageSteps permissionPageSteps = new PermissionPageSteps(driver);
private IntroductionPageSteps introductionPageSteps = new IntroductionPageSteps(driver);
@Override
@Step("The main stopwatch page is opened")
public StopwatchPageSteps checkPageDisplayed() {
stopwatchPage.getStopwatchBox();
assertThat("App's main page is not displayed", stopwatchPage.getStopwatchBox().isDisplayed());
return this;
}
@Step("Tap stopwatch box")
public StopwatchPageSteps tapMainButton() {
stopwatchPage.getStopwatchBox().click();
return this;
}
@Step("Hold on stopwatch box")
public StopwatchPageSteps longPressMainButton() {
MobileElement longpress = (MobileElement) new WebDriverWait(driver, 10).
until(ExpectedConditions.elementToBeClickable(stopwatchPage.getStopwatchBox()));
LongPressOptions longPressOptions = new LongPressOptions();
longPressOptions.withDuration(Duration.ofSeconds(3)).withElement(ElementOption.element(longpress));
new TouchAction(driver).longPress(longPressOptions).perform();
return this;
}
@Step("Get time from a stopwatch box")
public String getTime() {
return stopwatchPage.getStopwatchBox().getText();
}
@Step("Run and stop stopwatch")
public String runStopwatch() {
this.checkPageDisplayed().tapMainButton();
this.tapMainButton();
return this.getTime();
}
@Step("Open settings")
public StopwatchPageSteps tapSettingsButton() {
stopwatchPage.getSettingsButton().click();
return this;
}
@Step("Change a stopwatch shape to square")
public StopwatchPageSteps tapSquareButton() {
stopwatchPage.getSquareButton().click();
return this;
}
@Step("Change a stopwatch shape to round")
public StopwatchPageSteps tapRoundButton() {
stopwatchPage.getRoundButton().click();
return this;
}
@Step("Change a stopwatch shape to rounded square")
public StopwatchPageSteps tapRoundedSquareButton() {
stopwatchPage.getRoundedSquareButton().click();
return this;
}
@Step("Change a stopwatch shape to full screen")
public StopwatchPageSteps tapFullScreenButton() {
stopwatchPage.getFullScreenButton().click();
return this;
}
@Step("Change background color")
public StopwatchPageSteps tapBackgroundButton() {
stopwatchPage.getBackgroundButton().click();
return this;
}
@Step("Change color of the stopwatch screen")
public StopwatchPageSteps tapColorsPalette() {
stopwatchPage.getStopwatchColor1().click();
return this;
}
@Step("Change color of digits")
public StopwatchPageSteps tapDigitsColorPalette() {
stopwatchPage.getDigitsColorPaletteElement().click();
return this;
}
}
| [
"[email protected]"
] | |
6baa9d4ed9442957543694c2c84492d2cb96d78c | 43b713d9de9ac175485d6618c20381d3473fe6bb | /src/main/java/com/khovaylo/app/Product.java | 427b6a9db458fe42d4ea8931ec51d725bf64d3c5 | [] | no_license | pavliggs/parse-data-from-url | c4e50eacab290b2a69159acace871f255fb4df34 | 084f3e550bc618fd5e1860ff60a04efbd1608a61 | refs/heads/master | 2023-03-19T21:07:58.418159 | 2021-03-12T15:41:01 | 2021-03-12T15:41:01 | 345,653,465 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 5,169 | java | package com.khovaylo.app;
import com.fasterxml.jackson.annotation.JsonFormat;
import java.time.ZonedDateTime;
/**
* Объект, содержащий информацию о товаре
* @author Pavel Khovaylo
*/
public class Product {
/**
* описание товара
*/
private final String title;
/**
* минимальная цена без скидки
*/
private final Double originalMinPrice;
/**
* максимальная цена без скидки
*/
private final Double originalMaxPrice;
/**
* минимальная цена со скидкой
*/
private final Double minPrice;
/**
* максимальная цена со скидкой
*/
private final Double maxPrice;
/**
* размер скидки
*/
private final Double discount;
/**
* остаток товара
*/
private final Integer stock;
/**
* количество заказов от начала проведения акции
*/
private final Integer ordersFromStartPromotion;
/**
* общее количество заказов
*/
private final Integer totalOrders;
/**
* оценка товара по пятизвездочной системе
*/
private final Double productAverageStar;
/**
* количество отзывов о товаре
*/
private final Integer reviewsNumber;
/**
* время и дата добавления товара в онлайн-магазин
*/
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss")
private final ZonedDateTime created;
/**
* время и дата начала акции
*/
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss")
private final ZonedDateTime startPromotion;
/**
* время и дата окончания акции
*/
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd HH:mm:ss")
private final ZonedDateTime endPromotion;
public Product(String title,
Double originalMinPrice,
Double originalMaxPrice,
Double minPrice,
Double maxPrice,
Double discount,
Integer stock,
Integer ordersFromStartPromotion,
Integer totalOrders,
Double productAverageStar,
Integer reviewsNumber,
ZonedDateTime created,
ZonedDateTime startPromotion,
ZonedDateTime endPromotion) {
this.title = title;
this.originalMinPrice = originalMinPrice;
this.originalMaxPrice = originalMaxPrice;
this.minPrice = minPrice;
this.maxPrice = maxPrice;
this.discount = discount;
this.stock = stock;
this.ordersFromStartPromotion = ordersFromStartPromotion;
this.totalOrders = totalOrders;
this.productAverageStar = productAverageStar;
this.reviewsNumber = reviewsNumber;
this.created = created;
this.startPromotion = startPromotion;
this.endPromotion = endPromotion;
}
public String getTitle() {
return title;
}
public Double getOriginalMinPrice() {
return originalMinPrice;
}
public Double getOriginalMaxPrice() {
return originalMaxPrice;
}
public Double getMinPrice() {
return minPrice;
}
public Double getMaxPrice() {
return maxPrice;
}
public Double getDiscount() {
return discount;
}
public Integer getStock() {
return stock;
}
public Integer getOrdersFromStartPromotion() {
return ordersFromStartPromotion;
}
public Integer getTotalOrders() {
return totalOrders;
}
public Double getProductAverageStar() {
return productAverageStar;
}
public Integer getReviewsNumber() {
return reviewsNumber;
}
public ZonedDateTime getCreated() {
return created;
}
public ZonedDateTime getStartPromotion() {
return startPromotion;
}
public ZonedDateTime getEndPromotion() {
return endPromotion;
}
@Override
public String toString() {
return "Product{" +
"title='" + title + '\'' +
", originalMinPrice=" + originalMinPrice +
", originalMaxPrice=" + originalMaxPrice +
", minPrice=" + minPrice +
", maxPrice=" + maxPrice +
", discount=" + discount +
", stock=" + stock +
", ordersFromStartPromotion=" + ordersFromStartPromotion +
", totalOrders=" + totalOrders +
", productAverageStar=" + productAverageStar +
", reviewsNumber=" + reviewsNumber +
", created=" + created +
", startPromotion=" + startPromotion +
", endPromotion=" + endPromotion +
'}';
}
} | [
"[email protected]"
] | |
52b2755081113cbd442482fb3c348000adc52087 | 22fae8441e31c6b09feb84c90707be28a11762b0 | /src/main/java/com/modulo/componentes/ByosBusqueda.java | eed35a2174a45b5a591432521f4231e307a09869 | [] | no_license | rchistian/QuantumV1 | 9817649124f9ef9ab7f1f75026d8a36c72c98970 | 3e6a74e1c9a777f3d787ba3503430a55ce417a9a | refs/heads/master | 2020-03-29T10:42:12.431034 | 2018-09-14T23:33:44 | 2018-09-14T23:33:44 | 149,818,630 | 0 | 0 | null | null | null | null | UTF-8 | Java | false | false | 2,258 | java | package com.modulo.componentes;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import com.byos.sys.filters.LikeFilter;
import com.byos.sys.ui.ByosDatagrid.ByosColumna;
import com.byos.sys.ui.ByosDatagrid.ByosDatagridFiltrableTextbox;
import com.modulo.proveedor.tblProveedor;
import com.vaadin.ui.Button;
import com.vaadin.ui.Grid;
import com.vaadin.ui.VerticalLayout;
import com.vaadin.ui.Window;
import com.vaadin.ui.Button.ClickEvent;
public class ByosBusqueda extends VerticalLayout implements Serializable{
private static final long serialVersionUID = 5474522369804563317L;
public Window subwindow;
public ByosBusqueda(){
subwindow = new Window("Datos del Busqueda");
subwindow.setWidth("1024px");
subwindow.setHeight("768px");
subwindow.setModal(true);
subwindow.setContent(this);
}
public void procesoListarMedidas(){
final ByosDatagridFiltrableTextbox dwb;
dwb = new ByosDatagridFiltrableTextbox(true,800,640);
tblProveedor TblMedidaListar = new tblProveedor();
ByosColumna[] ByosColumnas = new ByosColumna[2];
ByosColumnas[0] = new ByosColumna("codigoproveedor", String.class, "Codigo", "", new LikeFilter("codigoproveedor",""));
ByosColumnas[1] = new ByosColumna("descripcion", String.class, "Descripicon", "", new LikeFilter("descripcion",""));
try{
dwb.getDatagrid().initDatagridByos(TblMedidaListar.BuscarArray(new tblProveedor()), TblMedidaListar, ByosColumnas, false);
dwb.botProcesar.addClickListener(new Button.ClickListener() {
public void buttonClick(ClickEvent event) {
try {
ArrayList AL = dwb.getDatagrid().getFilasSeleccionadas();
if(AL.size()>0){
dwb.cerrarWindow();
}
}catch (Exception e) {
e.printStackTrace();
}
}
});
}catch (Exception e) {
e.printStackTrace();
}
}
}
| [
"[email protected]"
] |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.